-
Notifications
You must be signed in to change notification settings - Fork 10
v3.4 CLI
Andrey Kurilov edited this page Jun 2, 2017
·
3 revisions
GNU style command line arguments are used instead of passing the configuration values via JVM arguments.
Example for mongoose 2.x.x:
java -Dload.type=read -Ditem.src.file=items.csv -Dload.threads=10 -Dauth.id=user1 -Dauth.secret=ChangeIt -Dstorage.addrs=10.20.30.40,10.20.30.41 -jar mongoose-2.x.x/mongoose.jar
The same using mongoose 3.x.x:
java -jar mongoose-3.4.0/mongoose.jar --read --item-input-file=items.csv --storage-driver-concurrency=10 --storage-auth-uid=user1 --storage-auth-secret=ChangeIt --storage-net-node-addrs=10.20.30.40,10.20.30.41
Note: To find all available CLI options please refer to Configuration section.
- Overview
- Deployment
- User Guide
- Troubleshooting
- Reference