-
Notifications
You must be signed in to change notification settings - Fork 85
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
Added custom retry with backoff for error not covered in BQ client (4… #1174
base: develop
Are you sure you want to change the base?
Conversation
4e7ef71
to
2a4dcd4
Compare
2a4dcd4
to
7e7298a
Compare
…00, please retry with backoff)
7e7298a
to
de02031
Compare
|
||
// Wait for the query to complete | ||
queryJob.waitFor(); | ||
final String retryableStringPattern = "Retrying the job with back-off"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: make this a constant
List<Function<BigQueryException, Boolean>> retryRules = new ArrayList<>(); | ||
retryRules.add( | ||
(BigQueryException e) -> e.getCode() == 400 | ||
&& (e.getMessage().contains(retryableStringPattern) || e.getReason().contains(retryableStringPattern)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are the methods on BigQueryException like getMessage() and getReason() guaranteed to be non null?
@@ -169,6 +173,46 @@ public void run(ActionContext context) throws Exception { | |||
context.getMetrics().gauge(RECORDS_PROCESSED, rows); | |||
} | |||
|
|||
/** | |||
* Executes Query with added retry rules following: | |||
* https://cloud.google.com/bigquery/sla |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should also apply to BigQuery Sink plugin and may be even replication BQ plugins? Or for the time being it is only done for execute? It would be good to put this in a different class if it is applicable for other plugins.
*/ | ||
private Job executeQueryJobWithCustomRetry(BigQuery bigQuery, QueryJobConfiguration queryConfig, | ||
List<Function<BigQueryException, Boolean>> retryRules) throws Exception { | ||
// The longest amount of time to wait in-between retries. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: mention the timeunit
return queryJob; | ||
} catch (BigQueryException bigQueryException) { | ||
if (retries >= maxRetries) { | ||
LOG.error("Run out of retries while executing query with backoff."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Ran out of...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
|
||
int retries = 0; | ||
|
||
while (true) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a unit test.
…00, please retry with backoff)