Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-21.1: roachtest: bump import/tpch/nodes=8 timeout to 10h #70497

Merged
merged 1 commit into from
Sep 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pkg/cmd/roachtest/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ func registerImportTPCH(r *testRegistry) {
// is required to confirm this. Until then, the 4 and 32 node configurations
// are removed (4 is too slow and 32 is pretty expensive) while 8-node is
// given a 50% longer timeout (which running by hand suggests should be OK).
// (10/30/19) The timeout was increased again to 8 hours.
{8, 8 * time.Hour},
// (07/27/21) The timeout was increased again to 10 hours. The test runs in
// ~7 hours which causes it to occasionally exceed the previous timeout of 8
// hours.
{8, 10 * time.Hour},
} {
item := item
r.Add(testSpec{
Expand Down