File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -195,14 +195,14 @@ jobs:
195195 run : df -h
196196 - name : Run minitest
197197 run : bundle exec rake bench | grep BenchCommand | grep -v 'Envoy#bench_pipeline_echo\|Envoy#bench_single_echo' | sort
198- - name : Run iteration per second
199- run : bundle exec rake ips
200198 - name : Reset qdisc
201199 run : |
202200 for i in {5..9..2}
203201 do
204202 docker compose -f $DOCKER_COMPOSE_FILE exec node$i tc qdisc del dev eth0 root netem || true
205203 done
204+ - name : Run iteration per second
205+ run : bundle exec rake ips
206206 - name : Stop containers
207207 run : docker compose -f $DOCKER_COMPOSE_FILE down || true
208208 profiling :
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ def run
2727 def make_client ( model )
2828 ::RedisClient . cluster (
2929 nodes : TEST_NODE_URIS ,
30+ replica : true ,
31+ replica_affinity : :random ,
3032 fixed_hostname : TEST_FIXED_HOSTNAME ,
3133 concurrent_worker_model : model ,
3234 **TEST_GENERIC_OPTIONS
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ def run
2525 def make_client
2626 ::RedisClient . cluster (
2727 nodes : TEST_NODE_URIS ,
28+ replica : true ,
29+ replica_affinity : :random ,
2830 fixed_hostname : TEST_FIXED_HOSTNAME ,
2931 **TEST_GENERIC_OPTIONS
3032 ) . new_client
You can’t perform that action at this time.
0 commit comments