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 2023/03/01 14:04:00 UTC

[jira] [Work logged] (HIVE-26735) Ability to sort the data during rebalancing compaction

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

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

                Author: ASF GitHub Bot
            Created on: 01/Mar/23 14:03
            Start Date: 01/Mar/23 14:03
    Worklog Time Spent: 10m 
      Work Description: veghlaci05 commented on code in PR #4077:
URL: https://github.com/apache/hive/pull/4077#discussion_r1121783685


##########
ql/src/java/org/apache/hadoop/hive/ql/txn/compactor/CompactionQueryBuilder.java:
##########
@@ -237,7 +248,11 @@ String build() {
       query.append(" temporary external");
     }
     if (operation == Operation.INSERT) {
-      query.append(" into");
+      if (compactionType.equals(CompactionType.REBALANCE)) {
+        query.append(" overwrite");
+      } else {
+        query.append(" into");
+      }

Review Comment:
   Fixed.





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

    Worklog Id:     (was: 848342)
    Time Spent: 1h 40m  (was: 1.5h)

> Ability to sort the data during rebalancing compaction
> ------------------------------------------------------
>
>                 Key: HIVE-26735
>                 URL: https://issues.apache.org/jira/browse/HIVE-26735
>             Project: Hive
>          Issue Type: Sub-task
>            Reporter: László Végh
>            Assignee: László Végh
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> Ability to sort the data during rebalancing compaction



--
This message was sent by Atlassian Jira
(v8.20.10#820010)