difin commented on code in PR #5621: URL: https://github.com/apache/hive/pull/5621#discussion_r2072244617
########## standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java: ########## @@ -317,16 +317,22 @@ public List<String> findColumnsWithStats(CompactionInfo ci) throws MetaException @Override public void updateCompactorState(CompactionInfo ci, long compactionTxnId) throws MetaException { + boolean runInTxn = compactionTxnId > 0; jdbcResource.execute( "UPDATE \"COMPACTION_QUEUE\" SET \"CQ_HIGHEST_WRITE_ID\" = :highestWriteId, " + - "\"CQ_RUN_AS\" = :runAs, \"CQ_TXN_ID\" = :txnId WHERE \"CQ_ID\" = :id", + "\"CQ_RUN_AS\" = :runAs, \"CQ_TXN_ID\" = :txnId, \"CQ_TYPE\" = :type WHERE \"CQ_ID\" = :id", new MapSqlParameterSource() .addValue("highestWriteId", ci.highestWriteId) Review Comment: Makes sense, but why even with these changes, the output of `SHOW COMPACTIONS `command after running Iceberg compaction shows `Highest WriteId` as null ``` CompactionId Database Table Partition Type State Worker host Worker Enqueue Time Start Time Duration(ms) HadoopJobId Error message Initiator host Initiator Pool name TxnId Next TxnId Commit Time Highest WriteId #Masked# default ice_orc dept_id=2 MAJOR succeeded #Masked# manual default 0 0 0 --- #Masked# default ice_orc dept_id=3 SMART_OPTIMIZE refused #Masked# manual default 0 0 0 --- #Masked# default ice_orc --- SMART_OPTIMIZE refused #Masked# manual default 0 0 0 --- ``` -- 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 --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org