[
https://issues.apache.org/jira/browse/HADOOP-18025?focusedWorklogId=687197&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-687197
]
ASF GitHub Bot logged work on HADOOP-18025:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 29/Nov/21 09:19
Start Date: 29/Nov/21 09:19
Worklog Time Spent: 10m
Work Description: jojochuang commented on a change in pull request #3722:
URL: https://github.com/apache/hadoop/pull/3722#discussion_r758165926
##########
File path:
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-hbase/hadoop-yarn-server-timelineservice-hbase-client/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/reader/EntityTypeReader.java
##########
@@ -158,7 +158,9 @@ protected void validateParams() {
private ResultScanner getResult(Configuration hbaseConf, Connection conn,
FilterList filterList, byte[] startPrefix, byte[] endPrefix)
throws IOException {
- Scan scan = new Scan(startPrefix, endPrefix);
+ Scan scan = new Scan();
+ scan.withStartRow(startPrefix);
+ scan.withStopRow(endPrefix);
Review comment:
nit: it would be the best it make it as the following:
scan.withStartRow()
.withStopRow()
.setFilter()
.setSmall()
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 687197)
Time Spent: 0.5h (was: 20m)
> Upgrade HBase version to 1.7.1 for hbase1 profile
> -------------------------------------------------
>
> Key: HADOOP-18025
> URL: https://issues.apache.org/jira/browse/HADOOP-18025
> Project: Hadoop Common
> Issue Type: Sub-task
> Reporter: Viraj Jasani
> Assignee: Viraj Jasani
> Priority: Major
> Labels: pull-request-available
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.20.1#820001)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]