Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
feat: retry failed query jobs in
result()
#837feat: retry failed query jobs in
result()
#837Changes from 28 commits
cc62448
61e1c38
093f9b4
b2ce74b
d930c83
bf7b4c6
0598197
c9644e9
2d0e067
0dcac01
026edba
0e764d2
c96d8b3
5058cb4
3c53172
eb51432
d6d958f
a05f75f
32e7050
3361a82
4c6ef5b
25b44a0
9ab84e4
d2bf840
4c004a5
be49c4b
9e4a011
204641b
bf051b0
b47244f
2377a1b
6b790e8
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Per: #707 (comment) there are certain
InternalServerError
exceptions that are retryable. It even says in the error messageRetrying the job may solve the problem
.I wonder if we should check if that's in the string representation of the exception?
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.
Looking at the internal source code:
backendError
is the "reason" corresponding to this job failure. I think we can add that to the default job retry reasons.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.
Do you mean
InternalServerError
?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.
I think we can disregard the exception type and just look at the
reason
field like you're currently doing.I mean the kind of job failure that customer encountered in #707
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.
done