https://github.com/arangodb/simple-performance-test
A collection of performance tests that test various aspects of ArangoDB.
https://github.com/arangodb/simple-performance-test
Last synced: 8 months ago
JSON representation
A collection of performance tests that test various aspects of ArangoDB.
- Host: GitHub
- URL: https://github.com/arangodb/simple-performance-test
- Owner: arangodb
- License: apache-2.0
- Created: 2016-12-19T16:53:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T11:21:06.000Z (about 1 year ago)
- Last Synced: 2024-11-07T12:26:50.979Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 15.7 MB
- Stars: 4
- Watchers: 40
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# How to start
## Directly running in a Single Server
arangod \
-c none \
--javascript.app-path /tmp/app \
--javascript.startup-directory /usr/share/arangodb3/js \
--server.rest-server false \
--javascript.module-directory `pwd` \
DATABASE_DIR \
--javascript.script CONFIGURATION.js
## Start from arangosh
If you want to run against a running instance, use
arangosh \
-c none \
--javascript.startup-directory /usr/share/arangodb3/js \
--javascript.module-directory `pwd` \
--javascript.execute CONFIGURATION.js \
--server.endpoint tcp://127.0.0.1:8529 \
--server.username
--server.password
Note: You need to have an ArangoDB running on this endpoint (or change it)
Also Note: the test will create now collections with the _system database on this endpoint.
Also Note: if you do not use authentication you either want to set the --server.password to some
random value or use --server.authentication false otherwise a prompt asking for the
password will halt the execution until responded.
## Configurations
- simple/run-big-all.js
- simple/run-small-all-junit.js
- simple/run-small-all.js
- simple/run-small-crud.js
- simple/run-small-documents.js
- simple/run-small-edges.js