You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2020/12/31 08:11:04 UTC

[phoenix] branch master updated: PHOENIX-6290 Extend IndexRegionSplitPolicy from SteppingSplitPolicy on master

This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ca7a48  PHOENIX-6290 Extend IndexRegionSplitPolicy from SteppingSplitPolicy on master
8ca7a48 is described below

commit 8ca7a48579ba1066c68e7e026fbfd4038d1e9725
Author: Istvan Toth <st...@apache.org>
AuthorDate: Wed Dec 30 16:50:12 2020 +0100

    PHOENIX-6290 Extend IndexRegionSplitPolicy from SteppingSplitPolicy on master
---
 .../java/org/apache/phoenix/hbase/index/IndexRegionSplitPolicy.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/IndexRegionSplitPolicy.java b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/IndexRegionSplitPolicy.java
index 8fd3da5..ee94494 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/IndexRegionSplitPolicy.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/IndexRegionSplitPolicy.java
@@ -21,7 +21,7 @@ import java.util.List;
 import java.util.Optional;
 
 import org.apache.hadoop.hbase.regionserver.HStore;
-import org.apache.hadoop.hbase.regionserver.IncreasingToUpperBoundRegionSplitPolicy;
+import org.apache.hadoop.hbase.regionserver.SteppingSplitPolicy;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.phoenix.query.QueryConstants;
 
@@ -29,7 +29,7 @@ import org.apache.phoenix.query.QueryConstants;
  * Split policy for local indexed tables to select split key from non local index column families
  * always.
  */
-public class IndexRegionSplitPolicy extends IncreasingToUpperBoundRegionSplitPolicy {
+public class IndexRegionSplitPolicy extends SteppingSplitPolicy {
 
     @Override
     protected boolean skipStoreFileRangeCheck(String familyName) {