1
0
Fork 0
arangodb/Documentation/Books/Manual/Programs/Arangobench/Examples.md

713 B

Arangobench Examples

Start Arangobench with the default user and server endpoint:

arangobench

Run the 'version' test case with 1000 requests, without concurrency:

--test-case version --requests 1000 --concurrency 1

Run the 'document' test case with 2000 requests, with two concurrent threads:

--test-case document --requests 1000 --concurrency 2

Run the 'document' test case with 2000 requests, with concurrency 2, with async requests:

--test-case document --requests 1000 --concurrency 2 --async true

Run the 'document' test case with 2000 requests, with concurrency 2, using batch requests:

--test-case document --requests 1000 --concurrency 2 --batch-size 10