mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-25 08:11:06 -06:00
Merge pull request #1583 from nosqlbench/vector_ninjafix
Vector binding ninjafix
This commit is contained in:
commit
68c7fc0483
@ -28,7 +28,7 @@ bindings:
|
||||
seq_value: Hash(); Mod(<<valuecount:1000000000>>); ToString() -> String
|
||||
rw_key: <<keydist:Uniform(0,1000000000)->int>>; ToString() -> String
|
||||
rw_value: Hash(); <<valdist:Uniform(0,1000000000)->int>>; ToString() -> String
|
||||
vector_value: CqlVector(ListSizedHashed(<<dimensions:5>>,HashRange(0.0f,100.0f) -> float)); NormalizeCqlVector();
|
||||
vector_value: CqlVector(ListSized(5,HashRange(0.0f,100.0f))); NormalizeCqlVector();
|
||||
blocks:
|
||||
drop-tables:
|
||||
ops:
|
||||
|
@ -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