You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2020/11/26 02:04:00 UTC

[jira] [Work logged] (HIVE-24433) AutoCompaction is not getting triggered for CamelCase Partition Values

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

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

                Author: ASF GitHub Bot
            Created on: 26/Nov/20 02:03
            Start Date: 26/Nov/20 02:03
    Worklog Time Spent: 10m 
      Work Description: nareshpr opened a new pull request #1712:
URL: https://github.com/apache/hive/pull/1712


   


----------------------------------------------------------------
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


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

            Worklog Id:     (was: 516894)
    Remaining Estimate: 0h
            Time Spent: 10m

> AutoCompaction is not getting triggered for CamelCase Partition Values
> ----------------------------------------------------------------------
>
>                 Key: HIVE-24433
>                 URL: https://issues.apache.org/jira/browse/HIVE-24433
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Naresh P R
>            Assignee: Naresh P R
>            Priority: Major
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> PartionKeyValue is getting converted into lowerCase in below 2 places.
> [https://github.com/apache/hive/blob/master/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java#L2728]
> [https://github.com/apache/hive/blob/master/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java#L2851]
> Because of which TXN_COMPONENTS & HIVE_LOCKS tables are not having entries from proper partition values.
> When query completes, the entry moves from TXN_COMPONENTS to COMPLETED_TXN_COMPONENTS. Hive AutoCompaction will not recognize the partition & considers it as invalid partition
> {code:java}
> create table abc(name string) partitioned by(city string) stored as orc tblproperties('transactional'='true');
> insert into abc partition(city='Bangalore') values('aaa');
> {code}
> Example entry in COMPLETED_TXN_COMPONENTS
> {noformat}
> +-----------+--------------+--------------------+-------------------+---------------------+-------------+-------------------+
> | CTC_TXNID | CTC_DATABASE | CTC_TABLE          | CTC_PARTITION     | CTC_TIMESTAMP       | CTC_WRITEID | CTC_UPDATE_DELETE |
> +-----------+--------------+--------------------+-------------------+---------------------+-------------+-------------------+
> |         2 | default      | abc    | city=bangalore    | 2020-11-25 09:26:59 |           1 | N                 |
> +-----------+--------------+--------------------+-------------------+---------------------+-------------+-------------------+
> {noformat}
>  
> AutoCompaction fails to get triggered with below error
> {code:java}
> 2020-11-25T09:35:10,364 INFO [Thread-9]: compactor.Initiator (Initiator.java:run(98)) - Checking to see if we should compact default.abc.city=bangalore
> 2020-11-25T09:35:10,380 INFO [Thread-9]: compactor.Initiator (Initiator.java:run(155)) - Can't find partition default.compaction_test.city=bhubaneshwar, assuming it has been dropped and moving on{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)