Commit 4decd028 authored by Caleb Rouleau's avatar Caleb Rouleau

[Perf waterfall] Set io_timeout to 4 hours.

TBR=simonhatch@chromium.org

Bug: 969819
Change-Id: I772891cbfacaae9c6d0c233e2934e54826bec69c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1639576Reviewed-by: default avatarCaleb Rouleau <crouleau@chromium.org>
Commit-Queue: Caleb Rouleau <crouleau@chromium.org>
Auto-Submit: Caleb Rouleau <crouleau@chromium.org>
Cr-Commit-Position: refs/heads/master@{#665701}
parent 0ed01da2
......@@ -33,7 +33,7 @@
"expiration": 7200,
"hard_timeout": 36000,
"ignore_task_failure": false,
"io_timeout": 1800,
"io_timeout": 14400,
"shards": 3
},
"trigger_script": {
......@@ -77,7 +77,7 @@
"expiration": 7200,
"hard_timeout": 36000,
"ignore_task_failure": false,
"io_timeout": 1800
"io_timeout": 14400
},
"trigger_script": {
"args": [
......
This diff is collapsed.
......@@ -1084,7 +1084,11 @@ def generate_performance_test(tester_config, test):
# to ~2 hrs.
'hard_timeout': 10 * 60 * 60, # 10 hours timeout for full suite
'ignore_task_failure': False,
'io_timeout': 30 * 60, # 30 minutes
# 4 hour timeout. Note that this is effectively the timeout for a
# benchmarking subprocess to run since we intentionally do not stream
# subprocess output to the task stdout.
# TODO(crbug.com/865538): Reduce this once we can reduce hard_timeout.
'io_timeout': 4 * 60 * 60,
'dimension_sets': [
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