Commit 034ec4e3 authored by Caleb Rouleau's avatar Caleb Rouleau Committed by Commit Bot

[perf waterfall] Increase IO_timeout to account for low capacity.

Also increase hard timeout for the same reason.

TBR=jbudorick@chromium.org

Bug: 996464
Change-Id: I194c1cb73fef3422a4b976419d59035943d34b5d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1764673Reviewed-by: default avatarCaleb Rouleau <crouleau@chromium.org>
Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Commit-Queue: Caleb Rouleau <crouleau@chromium.org>
Cr-Commit-Position: refs/heads/master@{#689555}
parent 8ffd6f64
...@@ -31,9 +31,9 @@ ...@@ -31,9 +31,9 @@
} }
], ],
"expiration": 7200, "expiration": 7200,
"hard_timeout": 36000, "hard_timeout": 43200,
"ignore_task_failure": false, "ignore_task_failure": false,
"io_timeout": 14400, "io_timeout": 21600,
"shards": 3 "shards": 3
}, },
"trigger_script": { "trigger_script": {
...@@ -78,9 +78,9 @@ ...@@ -78,9 +78,9 @@
} }
], ],
"expiration": 7200, "expiration": 7200,
"hard_timeout": 36000, "hard_timeout": 43200,
"ignore_task_failure": false, "ignore_task_failure": false,
"io_timeout": 14400, "io_timeout": 21600,
"shards": 4 "shards": 4
}, },
"trigger_script": { "trigger_script": {
...@@ -123,9 +123,9 @@ ...@@ -123,9 +123,9 @@
} }
], ],
"expiration": 7200, "expiration": 7200,
"hard_timeout": 36000, "hard_timeout": 43200,
"ignore_task_failure": false, "ignore_task_failure": false,
"io_timeout": 14400, "io_timeout": 21600,
"shards": 4 "shards": 4
}, },
"trigger_script": { "trigger_script": {
...@@ -167,9 +167,9 @@ ...@@ -167,9 +167,9 @@
} }
], ],
"expiration": 7200, "expiration": 7200,
"hard_timeout": 36000, "hard_timeout": 43200,
"ignore_task_failure": false, "ignore_task_failure": false,
"io_timeout": 14400 "io_timeout": 21600
}, },
"trigger_script": { "trigger_script": {
"args": [ "args": [
...@@ -211,9 +211,9 @@ ...@@ -211,9 +211,9 @@
} }
], ],
"expiration": 7200, "expiration": 7200,
"hard_timeout": 36000, "hard_timeout": 43200,
"ignore_task_failure": false, "ignore_task_failure": false,
"io_timeout": 14400, "io_timeout": 21600,
"shards": 1 "shards": 1
}, },
"trigger_script": { "trigger_script": {
......
This diff is collapsed.
...@@ -1202,13 +1202,13 @@ def generate_performance_test(tester_config, test): ...@@ -1202,13 +1202,13 @@ def generate_performance_test(tester_config, test):
# TODO(crbug.com/865538): once we have plenty of windows hardwares, # TODO(crbug.com/865538): once we have plenty of windows hardwares,
# to shards perf benchmarks on Win builders, reduce this hard timeout limit # to shards perf benchmarks on Win builders, reduce this hard timeout limit
# to ~2 hrs. # to ~2 hrs.
'hard_timeout': 10 * 60 * 60, # 10 hours timeout for full suite 'hard_timeout': 12 * 60 * 60, # 12 hours timeout for full suite
'ignore_task_failure': False, 'ignore_task_failure': False,
# 4 hour timeout. Note that this is effectively the timeout for a # 6 hour timeout. Note that this is effectively the timeout for a
# benchmarking subprocess to run since we intentionally do not stream # benchmarking subprocess to run since we intentionally do not stream
# subprocess output to the task stdout. # subprocess output to the task stdout.
# TODO(crbug.com/865538): Reduce this once we can reduce hard_timeout. # TODO(crbug.com/865538): Reduce this once we can reduce hard_timeout.
'io_timeout': 4 * 60 * 60, 'io_timeout': 6 * 60 * 60,
'dimension_sets': [ 'dimension_sets': [
tester_config['dimension'] tester_config['dimension']
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment