-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-18025. Upgrade HBase version to 1.7.1 for hbase1 profile #3722
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
Conversation
|
TimelineService tests will pass after PR #3712 is merged. |
| Scan scan = new Scan(startPrefix, endPrefix); | ||
| Scan scan = new Scan(); | ||
| scan.withStartRow(startPrefix); | ||
| scan.withStopRow(endPrefix); |
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: it would be the best it make it as the following:
scan.withStartRow()
.withStopRow()
.setFilter()
.setSmall()
jojochuang
left a comment
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
|
💔 -1 overall
This message was automatically generated. |
|
💔 -1 overall
This message was automatically generated. |
|
💔 -1 overall
This message was automatically generated. |
|
Thanks for the review @jojochuang. The build has run for the entire project, all modules combined. Test failures are known (irrelevant to this PR) failures. |
|
Merged. Thanks @virajjasani ! |
Description of PR
Upgrade HBase version to 1.7.1 for hbase1 profile. The current version is quite old.
Also, replace old deprecated APIs of Scan with better alternatives.
How was this patch tested?
Verified with some local testing. All CRUD unit tests are tested.
For code changes:
LICENSE,LICENSE-binary,NOTICE-binaryfiles?