mirror of https://github.com/etcd-io/dbtester.git
test-configs: add 'java' flag fields
This commit is contained in:
parent
c9cf7ec1dd
commit
2db789e677
|
|
@ -9,6 +9,7 @@ test_description: |
|
|||
- javac 1.8.0_121
|
||||
- Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
|
||||
- Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode)
|
||||
- `/usr/bin/java -Djute.maxbuffer=33554432 -Xms50G -Xmx50G`
|
||||
- Consul v0.7.5 (Go 1.8.0)
|
||||
|
||||
# common control options for all client machines
|
||||
|
|
@ -85,6 +86,14 @@ datatbase_id_to_config_client_machine_agent_control:
|
|||
|
||||
# http://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html
|
||||
zookeeper__r3_5_2_alpha:
|
||||
# maximum size, in bytes, of a request or response
|
||||
# set it to 33 MB
|
||||
java_d_jute_max_buffer: 33554432
|
||||
|
||||
# JVM min,max heap size
|
||||
java_xms: 50G
|
||||
java_xmx: 50G
|
||||
|
||||
# tickTime; the length of a single tick, which is the basic time unit used by ZooKeeper,
|
||||
# as measured in milliseconds.
|
||||
tick_time: 2000
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ test_description: |
|
|||
- javac 1.8.0_121
|
||||
- Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
|
||||
- Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode)
|
||||
- `/usr/bin/java -Djute.maxbuffer=33554432 -Xms50G -Xmx50G`
|
||||
- Consul v0.7.5 (Go 1.8.0)
|
||||
|
||||
# common control options for all client machines
|
||||
|
|
@ -85,6 +86,14 @@ datatbase_id_to_config_client_machine_agent_control:
|
|||
|
||||
# http://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html
|
||||
zookeeper__r3_5_2_alpha:
|
||||
# maximum size, in bytes, of a request or response
|
||||
# set it to 33 MB
|
||||
java_d_jute_max_buffer: 33554432
|
||||
|
||||
# JVM min,max heap size
|
||||
java_xms: 50G
|
||||
java_xmx: 50G
|
||||
|
||||
# tickTime; the length of a single tick, which is the basic time unit used by ZooKeeper,
|
||||
# as measured in milliseconds.
|
||||
tick_time: 2000
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ test_description: |
|
|||
- javac 1.8.0_121
|
||||
- Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
|
||||
- Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode)
|
||||
- `/usr/bin/java -Djute.maxbuffer=33554432 -Xms50G -Xmx50G`
|
||||
- Consul v0.7.5 (Go 1.8.0)
|
||||
|
||||
# common control options for all client machines
|
||||
|
|
@ -85,6 +86,14 @@ datatbase_id_to_config_client_machine_agent_control:
|
|||
|
||||
# http://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html
|
||||
zookeeper__r3_5_2_alpha:
|
||||
# maximum size, in bytes, of a request or response
|
||||
# set it to 33 MB
|
||||
java_d_jute_max_buffer: 33554432
|
||||
|
||||
# JVM min,max heap size
|
||||
java_xms: 50G
|
||||
java_xmx: 50G
|
||||
|
||||
# tickTime; the length of a single tick, which is the basic time unit used by ZooKeeper,
|
||||
# as measured in milliseconds.
|
||||
tick_time: 2000
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@ nohup dbtester agent --network-interface ens4 --disk-device sda --agent-port :
|
|||
|
||||
# control; specify 'control' configuration file (client number, key number, key-value size),
|
||||
# this starts database stressing, and shuts down the database when done
|
||||
nohup dbtester control --database-id etcdv3 --config config.yaml > $HOME/control.log 2>&1 &
|
||||
nohup dbtester control --database-id zookeeper --config config.yaml > $HOME/control.log 2>&1 &
|
||||
nohup dbtester control --database-id consul --config config.yaml > $HOME/control.log 2>&1 &
|
||||
nohup dbtester control --database-id etcd__tip --config config.yaml > $HOME/control.log 2>&1 &
|
||||
nohup dbtester control --database-id zookeeper__r3_5_2_alpha --config config.yaml > $HOME/control.log 2>&1 &
|
||||
nohup dbtester control --database-id consul__v0_7_5 --config config.yaml > $HOME/control.log 2>&1 &
|
||||
|
||||
# analyze; get all data from remote machines
|
||||
# and specify 'analyze' configuration file,
|
||||
|
|
|
|||
Loading…
Reference in New Issue