ArangoDB v3.4 reached End of Life (EOL) and is no longer supported.

This documentation is outdated. Please see the most recent version here: Latest Docs

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