diff --git a/browbeat.sh b/browbeat.sh index 7d54129ca..afae9c534 100755 --- a/browbeat.sh +++ b/browbeat.sh @@ -13,7 +13,7 @@ TIMES["keystone"]=5000 TIMES["nova"]=128 declare -A CONCURRENCY -CONCURRENCY["keystone"]="128 256 384" +CONCURRENCY["keystone"]="64 96 128 256" CONCURRENCY["nova"]="32 64 128" check_controllers() @@ -116,7 +116,8 @@ run_rally() do times=${TIMES[${osp_service}]} task_dir=$osp_service - test_name="${test_prefix}-${task_file}-${concur}" + concur_padded="$(printf "%04d" ${concur})" + test_name="${test_prefix}-${task_file}-${concur_padded}" echo "${test_name}" sed -i "s/\"concurrency\": 1,/\"concurrency\": ${concur},/g" ${task_dir}/${task_file} sed -i "s/\"times\": 1,/\"times\": ${times},/g" ${task_dir}/${task_file} diff --git a/keystone/keystone-cc b/keystone/keystone-cc index b517e7c33..7d32c97ea 100644 --- a/keystone/keystone-cc +++ b/keystone/keystone-cc @@ -13,7 +13,7 @@ }, "runner": { "concurrency": 1, - "times": 5000, + "times": 1, "type": "constant" } }