[ https://issues.apache.org/jira/browse/HIVE-26217?focusedWorklogId=773321&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-773321 ]
ASF GitHub Bot logged work on HIVE-26217: ----------------------------------------- Author: ASF GitHub Bot Created on: 23/May/22 07:29 Start Date: 23/May/22 07:29 Worklog Time Spent: 10m Work Description: deniskuzZ commented on code in PR #3281: URL: https://github.com/apache/hive/pull/3281#discussion_r879107738 ########## ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java: ########## @@ -7592,6 +7594,22 @@ protected Operator genFileSinkPlan(String dest, QB qb, Operator input) destTableIsTransactional = tblProps != null && AcidUtils.isTablePropertyTransactional(tblProps); if (destTableIsTransactional) { + isNonNativeTable = MetaStoreUtils.isNonNativeTable(tblProps); + boolean isCtas = tblDesc != null && tblDesc.isCTAS(); + isMmTable = isMmCreate = AcidUtils.isInsertOnlyTable(tblProps); + if (!isNonNativeTable && !destTableIsTemporary && isCtas) { + destTableIsFullAcid = AcidUtils.isFullAcidTable(tblProps); + acidOperation = getAcidType(dest); + isDirectInsert = isDirectInsert(destTableIsFullAcid, acidOperation); + boolean enableSuffixing = conf.getBoolVar(ConfVars.HIVE_ACID_CREATE_TABLE_USE_SUFFIX) + || conf.getBoolVar(ConfVars.HIVE_ACID_LOCKLESS_READS_ENABLED); + if (isDirectInsert || isMmTable) { + destinationPath = getCTASDestinationTableLocation(tblDesc, enableSuffixing); + // Setting the location so that metadata transformers + // does not change the location later while creating the table. + tblDesc.setLocation(destinationPath.toString()); Review Comment: please check that during create SOFT_DELETE_TABLE prop is set, there is an if that skips this setter in case of manually set location ```` if (createTableUseSuffix) { tbl.setProperty(SOFT_DELETE_TABLE, Boolean.TRUE.toString()); } ```` Issue Time Tracking ------------------- Worklog Id: (was: 773321) Time Spent: 2h 50m (was: 2h 40m) > Make CTAS use Direct Insert Semantics > ------------------------------------- > > Key: HIVE-26217 > URL: https://issues.apache.org/jira/browse/HIVE-26217 > Project: Hive > Issue Type: Improvement > Reporter: Sourabh Badhya > Assignee: Sourabh Badhya > Priority: Major > Labels: pull-request-available > Time Spent: 2h 50m > Remaining Estimate: 0h > > CTAS on transactional tables currently does a copy from staging location to > table location. This can be avoided by using Direct Insert semantics. Added > support for suffixed table locations as well. -- This message was sent by Atlassian Jira (v8.20.7#820007)