[
https://issues.apache.org/jira/browse/HBASE-24821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Guanghao Zhang updated HBASE-24821:
-----------------------------------
Fix Version/s: (was: 2.2.7)
2.2.6
> Simplify the logic of getRegionInfo in TestFlushFromClient to reduce
> redundancy code
> ------------------------------------------------------------------------------------
>
> Key: HBASE-24821
> URL: https://issues.apache.org/jira/browse/HBASE-24821
> Project: HBase
> Issue Type: Improvement
> Components: test
> Reporter: Zheng Wang
> Assignee: Zheng Wang
> Priority: Minor
> Fix For: 3.0.0-alpha-1, 2.3.1, 2.4.0, 2.2.6
>
>
> Current logic:
> {code:java}
> private List<HRegion> getRegionInfo() {
> return TEST_UTIL.getHBaseCluster().getLiveRegionServerThreads().stream()
> .map(JVMClusterUtil.RegionServerThread::getRegionServer)
> .flatMap(r -> r.getRegions().stream())
> .filter(r -> r.getTableDescriptor().getTableName().equals(tableName))
> .collect(Collectors.toList());
> }
> {code}
> The MiniHBaseCluster has similar method to do same thing.
> So it could just directly call:
> {code:java}
> private List<HRegion> getRegionInfo() {
> return TEST_UTIL.getHBaseCluster().getRegions(tableName);
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)