[ 
https://issues.apache.org/jira/browse/HIVE-24805?focusedWorklogId=711379&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-711379
 ]

ASF GitHub Bot logged work on HIVE-24805:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 19/Jan/22 13:30
            Start Date: 19/Jan/22 13:30
    Worklog Time Spent: 10m 
      Work Description: deniskuzZ commented on a change in pull request #2906:
URL: https://github.com/apache/hive/pull/2906#discussion_r787744784



##########
File path: 
standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
##########
@@ -572,6 +572,9 @@ public static ConfVars getMetaConf(String name) {
             "Set this to true on one instance of the Thrift metastore service 
as part of turning\n" +
             "on Hive transactions. For a complete list of parameters required 
for turning on\n" +
             "transactions, see hive.txn.manager."),
+    
COMPACTOR_INITIATOR_TABLE_CACHE_ON("metastore.compactor.initiator.table.cache.on",

Review comment:
       Could you please change the config value to:
   ````
   COMPACTOR_INITIATOR_TABLE_CACHE_ON(
   “metastore.compactor.initiator.tablecache.on”, 
“hive.compactor.initiator.tablecache.on”, true ..
   ````




-- 
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-unsubscr...@hive.apache.org

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


Issue Time Tracking
-------------------

    Worklog Id:     (was: 711379)
    Time Spent: 3h 50m  (was: 3h 40m)

> Compactor: Initiator shouldn't fetch table details again and again for 
> partitioned tables
> -----------------------------------------------------------------------------------------
>
>                 Key: HIVE-24805
>                 URL: https://issues.apache.org/jira/browse/HIVE-24805
>             Project: Hive
>          Issue Type: Improvement
>          Components: Transactions
>            Reporter: Rajesh Balamohan
>            Assignee: Antal Sinkovits
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 3h 50m
>  Remaining Estimate: 0h
>
> Initiator shouldn't be fetch table details for all its partitions. When there 
> are large number of databases/tables, it takes lot of time for Initiator to 
> complete its initial iteration and load on DB also goes higher.
> https://github.com/apache/hive/blob/master/ql/src/java/org/apache/hadoop/hive/ql/txn/compactor/Initiator.java#L129
> https://github.com/apache/hive/blob/64bb52316f19426ebea0087ee15e282cbde1d852/ql/src/java/org/apache/hadoop/hive/ql/txn/compactor/Initiator.java#L456
> For all the following partitions, table details would be the same. However, 
> it ends up fetching table details from HMS again and again.
> {noformat}
> 2021-02-22 08:13:16,106 INFO  
> org.apache.hadoop.hive.ql.txn.compactor.Initiator: [Thread-11]: Checking to 
> see if we should compact 
> tpcds_bin_partitioned_orc_1000.store_returns_tmp2.sr_returned_date_sk=2451899
> 2021-02-22 08:13:16,124 INFO  
> org.apache.hadoop.hive.ql.txn.compactor.Initiator: [Thread-11]: Checking to 
> see if we should compact 
> tpcds_bin_partitioned_orc_1000.store_returns_tmp2.sr_returned_date_sk=2451830
> 2021-02-22 08:13:16,140 INFO  
> org.apache.hadoop.hive.ql.txn.compactor.Initiator: [Thread-11]: Checking to 
> see if we should compact 
> tpcds_bin_partitioned_orc_1000.store_returns_tmp2.sr_returned_date_sk=2452586
> 2021-02-22 08:13:16,149 INFO  
> org.apache.hadoop.hive.ql.txn.compactor.Initiator: [Thread-11]: Checking to 
> see if we should compact 
> tpcds_bin_partitioned_orc_1000.store_returns_tmp2.sr_returned_date_sk=2452698
> 2021-02-22 08:13:16,158 INFO  
> org.apache.hadoop.hive.ql.txn.compactor.Initiator: [Thread-11]: Checking to 
> see if we should compact 
> tpcds_bin_partitioned_orc_1000.store_returns_tmp2.sr_returned_date_sk=2452063
> {noformat}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to