mirror of https://github.com/etcd-io/dbtester.git
Merge pull request #355 from gyuho/configs
test-configs: use only 100 TCP connections for etcd
This commit is contained in:
commit
1e77047c5b
|
|
@ -1,4 +1,4 @@
|
||||||
test_title: Read 3M same keys, 256-byte key, 1KB value, Best Throughput (etcd 1,000, Zookeeper 700, Consul 500 clients)
|
test_title: Read 3M same keys, 256-byte key, 1KB value, Best Throughput (etcd 1K clients with 100 conns, Zookeeper 700, Consul 500 clients)
|
||||||
test_description: |
|
test_description: |
|
||||||
- Google Cloud Compute Engine
|
- Google Cloud Compute Engine
|
||||||
- 4 machines of 16 vCPUs + 60 GB Memory + 300 GB SSD (1 for client)
|
- 4 machines of 16 vCPUs + 60 GB Memory + 300 GB SSD (1 for client)
|
||||||
|
|
@ -55,7 +55,8 @@ datatbase_id_to_config_client_machine_agent_control:
|
||||||
benchmark_options:
|
benchmark_options:
|
||||||
type: read
|
type: read
|
||||||
request_number: 3000000
|
request_number: 3000000
|
||||||
connection_number: 1000 # for best throughput
|
# connection_number: 1000 # for best throughput
|
||||||
|
connection_number: 100 # for best throughput
|
||||||
client_number: 1000 # for best throughput
|
client_number: 1000 # for best throughput
|
||||||
# if specified, overwrite 'connection_number', 'connection_number'
|
# if specified, overwrite 'connection_number', 'connection_number'
|
||||||
connection_client_numbers: []
|
connection_client_numbers: []
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue