You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@phoenix.apache.org by GitBox <gi...@apache.org> on 2019/05/01 22:29:40 UTC

[GitHub] [phoenix] swaroopak commented on a change in pull request #495: PHOENIX-4703 Make indextool changes to drop before rebuild

swaroopak commented on a change in pull request #495: PHOENIX-4703 Make indextool changes to drop before rebuild
URL: https://github.com/apache/phoenix/pull/495#discussion_r280238972
 
 

 ##########
 File path: phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexTool.java
 ##########
 @@ -743,6 +764,32 @@ public int run(String[] args) throws Exception {
         }
     }
 
+    private void deleteBeforeRebuild(Connection conn) throws SQLException, IOException {
+        if (MetaDataUtil.isViewIndex(pIndexTable.getPhysicalName().getString())) {
+            throw new IllegalArgumentException(String.format(
+                    " %s is a view index table. Delete all before rebuild is not supported for view indexes",
+                    indexTable));
+        }
+
+        if (isLocalIndexBuild) {
+            throw new IllegalArgumentException(String.format(
+                    " %s is a local index.  Delete all before rebuild is not supported for local indexes", indexTable));
+        } else {
+            Admin admin = null;
+            ConnectionQueryServices queryServices = conn.unwrap(PhoenixConnection.class).getQueryServices();
+            try {
+                admin = queryServices.getAdmin();
+                TableName tableName = TableName.valueOf(qIndexTable);
+                admin.disableTable(tableName);
+                admin.truncateTable(tableName, false);
+            } finally {
+                if (admin != null) {
+                    admin.close();
 
 Review comment:
   Good catch! Yes, it is a good practice to use try-with-resources in java as well. 

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services