This is an automated email from the ASF dual-hosted git repository.

jcamacho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b37b20  HIVE-23191: Prevent redundant output descriptor config 
serialization (Mustafa Iman, reviewed by Jesus Camacho Rodriguez)
5b37b20 is described below

commit 5b37b208ea035f04ce25d6efb0bbd77f3533a84f
Author: Mustafa Iman <mustafai...@gmail.com>
AuthorDate: Tue Apr 14 08:22:12 2020 -0700

    HIVE-23191: Prevent redundant output descriptor config serialization 
(Mustafa Iman, reviewed by Jesus Camacho Rodriguez)
---
 ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java 
b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java
index 6f5830d..c5b7171 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java
@@ -1504,7 +1504,7 @@ public class DagUtils {
     if (endVertex) {
       vertex.addDataSink("out_"+workUnit.getName(), new DataSinkDescriptor(
           OutputDescriptor.create(outputKlass.getName())
-          .setUserPayload(TezUtils.createUserPayloadFromConf(conf)), null, 
null));
+          .setUserPayload(vertex.getProcessorDescriptor().getUserPayload()), 
null, null));
     }
 
     return vertex;

Reply via email to