-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-26630 TableSnapshotInputFormat terminates in the middle #4215
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
base: master
Are you sure you want to change the base?
Conversation
…ormat, there was a problem that the job was terminated in the middle
moreValues = scanner.nextRaw(values); | ||
} while (values.isEmpty() && moreValues); | ||
|
||
if (!moreValues) { |
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.
We will see empty result (values) but still more rows when the scan met RPC timeout value? Will it be possible to have UT here?
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.
Scan is not an RPC timeout situation. After scannerContext.returnImmediately() is called in storeScanner, it is returned as true by scannerContext.checkTimeLimit(limitScope) in RegionScannerImpl.
🎊 +1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
https://issues.apache.org/jira/browse/HBASE-26630
When using SingleColumnValueFilter in TableSnapshotInputFormat, there was a problem that the job was terminated in the middle