mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
Merge branch 'main' into snyk-fix-77c237f281fd7c49feb6d3ebec3cd74a
This commit is contained in:
commit
bd819f2d3f
@ -7,6 +7,8 @@ scenarios:
|
|||||||
read: run driver=dynamodb tags=block:read region=us-east-1
|
read: run driver=dynamodb tags=block:read region=us-east-1
|
||||||
main: run driver=dynamodb tags=block:main region=us-east-1
|
main: run driver=dynamodb tags=block:main region=us-east-1
|
||||||
read01: run driver=dynamodb tags='name:.*main-read-01' region=us-east-1
|
read01: run driver=dynamodb tags='name:.*main-read-01' region=us-east-1
|
||||||
|
delete:
|
||||||
|
table: run driver=dynamodb tags==block:delete threads==1 cycles==UNDEF
|
||||||
|
|
||||||
bindings:
|
bindings:
|
||||||
# for ramp-up and verify phases
|
# for ramp-up and verify phases
|
||||||
@ -173,3 +175,10 @@ blocks:
|
|||||||
ConsistentRead: true
|
ConsistentRead: true
|
||||||
projection: data0, data1, data2, data3, data4, data5, data6, data7
|
projection: data0, data1, data2, data3, data4, data5, data6, data7
|
||||||
Limit: "{limit}"
|
Limit: "{limit}"
|
||||||
|
|
||||||
|
- name: delete
|
||||||
|
tags:
|
||||||
|
phase: delete
|
||||||
|
ops:
|
||||||
|
delete-table:
|
||||||
|
DeleteTable: TEMPLATE(table,tabular)
|
@ -13,6 +13,8 @@ scenarios:
|
|||||||
schema: run driver=dynamodb tags==block:schema threads==1 cycles==UNDEF
|
schema: run driver=dynamodb tags==block:schema threads==1 cycles==UNDEF
|
||||||
rampup: run driver=dynamodb tags==block:rampup cycles===TEMPLATE(rampup-cycles,10000000) threads=auto
|
rampup: run driver=dynamodb tags==block:rampup cycles===TEMPLATE(rampup-cycles,10000000) threads=auto
|
||||||
main: run driver=dynamodb tags==block:main cycles===TEMPLATE(main-cycles,10000000) threads=auto
|
main: run driver=dynamodb tags==block:main cycles===TEMPLATE(main-cycles,10000000) threads=auto
|
||||||
|
delete:
|
||||||
|
table: run driver=dynamodb tags==block:delete threads==1 cycles==UNDEF
|
||||||
|
|
||||||
params:
|
params:
|
||||||
instrument: TEMPLATE(instrument,true)
|
instrument: TEMPLATE(instrument,true)
|
||||||
@ -82,3 +84,7 @@ blocks:
|
|||||||
order: reverse
|
order: reverse
|
||||||
limit: 10
|
limit: 10
|
||||||
|
|
||||||
|
delete:
|
||||||
|
ops:
|
||||||
|
delete-table:
|
||||||
|
DeleteTable: TEMPLATE(table,timeseries)
|
@ -38,6 +38,7 @@ Specifically, the following commands are supported as of this release:
|
|||||||
* GetItem
|
* GetItem
|
||||||
* PutItem
|
* PutItem
|
||||||
* Query
|
* Query
|
||||||
|
* DeleteTable
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
@ -103,4 +104,8 @@ ops:
|
|||||||
## optionally, set an exclusive start key
|
## optionally, set an exclusive start key
|
||||||
# ExclusiveStartKey: key-spec
|
# ExclusiveStartKey: key-spec
|
||||||
|
|
||||||
|
example-DeleteTable:
|
||||||
|
# the type and target of the command
|
||||||
|
# the table identifier/name (string) to delete
|
||||||
|
DeleteTable: TEMPLATE(table,timeseries)
|
||||||
```
|
```
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-server</artifactId>
|
<artifactId>jetty-server</artifactId>
|
||||||
<version>11.0.3</version>
|
<version>11.0.8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
@ -122,7 +122,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dropwizard.metrics</groupId>
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
<artifactId>metrics-graphite</artifactId>
|
<artifactId>metrics-graphite</artifactId>
|
||||||
<version>4.1.9</version>
|
<version>4.2.8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -69,7 +69,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.amazonaws</groupId>
|
<groupId>com.amazonaws</groupId>
|
||||||
<artifactId>aws-java-sdk-s3</artifactId>
|
<artifactId>aws-java-sdk-s3</artifactId>
|
||||||
<version>1.12.187</version>
|
<version>1.12.190</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
Loading…
Reference in New Issue
Block a user