mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-01-26 15:36:33 -06:00
Minor updated JDBC workloads
This commit is contained in:
parent
ba42ed8685
commit
5639b04b73
@ -1,5 +1,5 @@
|
||||
# run driver=jdbc workload="/path/to/postgresql-keyvalue.yaml" tags="block:schema" threads=AUTO cycles=4 url="jdbc:postgresql://host:port/database" databaseName="defaultdb" portNumber=5432 user="newuser" password="CHANGE_ME" sslmode="prefer" serverName=insectdb sslrootcert="/path/to/postgresql_certs/root.crt" -vv --show-stacktraces
|
||||
min_version: "5.17.1"
|
||||
min_version: "5.17.2"
|
||||
|
||||
description: |
|
||||
A workload with only text keys and text values. This is based on the CQL keyvalue workloads as found
|
||||
|
@ -1,4 +1,4 @@
|
||||
min_version: "5.17.1"
|
||||
min_version: "5.17.2"
|
||||
|
||||
description: |
|
||||
A tabular workload with partitions, clusters, and data fields
|
||||
|
@ -1,5 +1,5 @@
|
||||
# jara -jar nb5.jar cockroachdb-timeseries default -vv --show-stacktraces
|
||||
min_version: "5.17.1"
|
||||
min_version: "5.17.2"
|
||||
|
||||
description: |
|
||||
This workload emulates a time-series data model and access patterns.
|
||||
@ -44,7 +44,8 @@ blocks:
|
||||
sensor_value FLOAT,
|
||||
station_id UUID,
|
||||
data STRING,
|
||||
PRIMARY KEY (machine_id, sensor_name, time)
|
||||
PRIMARY KEY (machine_id ASC, sensor_name ASC),
|
||||
INDEX TEMPLATE(table,iot)_time_desc_idx (time DESC)
|
||||
);
|
||||
|
||||
rampup:
|
||||
|
Loading…
Reference in New Issue
Block a user