Skip to content

Commit

Permalink
Increase allowed timeouts for BigQuery service
Browse files Browse the repository at this point in the history
This should help to deal with Flakiness on CI with transient:
'Service is unavailable. Please retry.'
  • Loading branch information
ssheikin authored and kokosing committed Oct 31, 2024
1 parent c65c454 commit 4d7522f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public BigQueryRpcConfig setMaxRpcPerChannel(int maxRpcPerChannel)
}

@Min(0)
@Max(16)
@Max(1024)
public int getRetries()
{
return retries;
Expand All @@ -126,7 +126,7 @@ public BigQueryRpcConfig setRetries(int maxRetries)
}

@MinDuration("0s")
@MaxDuration("1m")
@MaxDuration("30m")
public Duration getTimeout()
{
return timeout;
Expand All @@ -141,7 +141,7 @@ public BigQueryRpcConfig setTimeout(Duration timeout)
}

@MinDuration("0s")
@MaxDuration("30s")
@MaxDuration("1m")
public Duration getRetryDelay()
{
return retryDelay;
Expand Down

0 comments on commit 4d7522f

Please sign in to comment.