[ https://issues.apache.org/jira/browse/HIVE-24828?focusedWorklogId=570937&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-570937 ]
ASF GitHub Bot logged work on HIVE-24828: ----------------------------------------- Author: ASF GitHub Bot Created on: 24/Mar/21 04:55 Start Date: 24/Mar/21 04:55 Worklog Time Spent: 10m Work Description: hsnusonic commented on a change in pull request #2073: URL: https://github.com/apache/hive/pull/2073#discussion_r600171856 ########## File path: standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java ########## @@ -3587,6 +3590,81 @@ public ShowCompactResponse showCompact(ShowCompactRequest rqst) throws MetaExcep } } + @RetrySemantics.ReadOnly + public GetLatestCompactionInfoResponse getLatestCompactionInfo(GetLatestCompactionInfoRequest rqst) + throws MetaException { + GetLatestCompactionInfoResponse response = new GetLatestCompactionInfoResponse(); + response.setDbname(rqst.getDbname()); + response.setTablename(rqst.getTablename()); + Connection dbConn = null; + PreparedStatement pst = null; + ResultSet rs = null; + try { + try { + dbConn = getDbConn(Connection.TRANSACTION_READ_COMMITTED); + + List<String> params = new ArrayList<>(); + // This query combines the result sets of succeeded compactions and readyToClean compactions + StringBuilder sb = new StringBuilder() + .append("SELECT * FROM (") + .append(" SELECT") + .append(" \"CC_ID\", \"CC_DATABASE\", \"CC_TABLE\", \"CC_PARTITION\", \"CC_TYPE\"") + .append(" FROM \"COMPLETED_COMPACTIONS\"") + .append(" WHERE \"CC_STATE\" = " + quoteChar(SUCCEEDED_STATE)) Review comment: Added to the description of the method. -- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 570937) Time Spent: 3h 50m (was: 3h 40m) > [HMS] Provide new HMS API to return latest committed compaction record for a > given table > ---------------------------------------------------------------------------------------- > > Key: HIVE-24828 > URL: https://issues.apache.org/jira/browse/HIVE-24828 > Project: Hive > Issue Type: Sub-task > Components: HiveServer2 > Reporter: Kishen Das > Assignee: Yu-Wen Lai > Priority: Major > Labels: pull-request-available > Time Spent: 3h 50m > Remaining Estimate: 0h > > We need a new HMS API to return the latest committed compaction record for a > given table. This can be used by a remote cache to decide whether a given > table's file metadata has been compacted or not, in order to decide whether > file metadata has to be refreshed from the file system before serving or it > can serve the current data from the cache. -- This message was sent by Atlassian Jira (v8.3.4#803005)