You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ka...@apache.org on 2020/01/16 04:16:46 UTC

[phoenix] branch 4.14-HBase-1.4 updated: PHOENIX-5674 IndexTool to not write already correct index rows/CFs (addendum)

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

kadir pushed a commit to branch 4.14-HBase-1.4
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.14-HBase-1.4 by this push:
     new d21232f  PHOENIX-5674 IndexTool to not write already correct index rows/CFs (addendum)
d21232f is described below

commit d21232f66da080ab0a90f53aced17b6fbe8720cc
Author: Kadir <ko...@salesforce.com>
AuthorDate: Wed Jan 15 19:42:26 2020 -0800

    PHOENIX-5674 IndexTool to not write already correct index rows/CFs (addendum)
---
 .../java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java
index b62b215..7f85812 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java
@@ -187,6 +187,7 @@ public class IndexRebuildRegionScanner extends BaseRegionScanner {
         innerScanner.close();
         if (verify) {
             this.pool.stop("IndexRebuildRegionScanner is closing");
+            hTableFactory.shutdown();
             indexHTable.close();
             outputHTable.close();
         }