You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@hive.apache.org by "dengzhhu653 (via GitHub)" <gi...@apache.org> on 2023/05/22 08:14:05 UTC

[GitHub] [hive] dengzhhu653 commented on a diff in pull request #4348: HIVE-27355: Iceberg: Create table can be slow due to file listing for…

dengzhhu653 commented on code in PR #4348:
URL: https://github.com/apache/hive/pull/4348#discussion_r1200127270


##########
standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java:
##########
@@ -546,9 +548,17 @@ public static void updateTableStatsForCreateTable(Warehouse wh, Database db, Tab
       }
     }
 
-    if (MetastoreConf.getBoolVar(conf, MetastoreConf.ConfVars.STATS_AUTO_GATHER)) {
+    boolean isIcebergTable = Optional.ofNullable(tbl.getParameters())
+            .orElse(Collections.emptyMap())
+            .getOrDefault(TABLE_TYPE_PROP, "undefined")
+            .equals(ICEBERG_TABLE_TYPE_VALUE);
+
+    if (MetastoreConf.getBoolVar(conf, MetastoreConf.ConfVars.STATS_AUTO_GATHER) && !isIcebergTable) {

Review Comment:
   I think we can put `StatsSetupConst.DO_NOT_UPDATE_STATS=true` into table's parameters at `HiveIcebergMetaHook#preCreateTable`



-- 
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: gitbox-unsubscribe@hive.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: gitbox-unsubscribe@hive.apache.org
For additional commands, e-mail: gitbox-help@hive.apache.org