<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Hive - tez , vertex failed during map phase - HDP 3.1.4 in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/309973#M223977</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running hive with HDP 3.1.4, and with kerberos enabled.&lt;/P&gt;&lt;P&gt;Currently there is a strange issue. Some sql could be success only if we run it with the system user `hive`, otherwise it fails with map error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A simple case is as below:&lt;/P&gt;&lt;P&gt;1. Create a table named `test` with columns (id int, val string), and data [(1, '1'), (2, '2')].&lt;/P&gt;&lt;P&gt;2. Run sql with user hive: `select * from test t join test t1 on t.id=t1.id;`, it succeeds as below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrightLiao_0-1611042112169.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/30157i1807494994083660/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrightLiao_0-1611042112169.png" alt="BrightLiao_0-1611042112169.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;Run the same sql with some other user (e.g. test): `select * from test t join test t1 on t.id=t1.id;`, it fails with a vertex issue:&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;INFO : Compiling command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81): select * from test t join test t1 on t.id=t1.id&lt;BR /&gt;INFO : Concurrency mode is disabled, not creating a lock manager&lt;BR /&gt;INFO : Semantic Analysis Completed (retrial = false)&lt;BR /&gt;INFO : Returning Hive schema: Schema(fieldSchemas:[FieldSchema(name:t.id, type:int, comment:null), FieldSchema(name:t.val, type:string, comment:null), FieldSchema(name:t1.id, type:int, comment:null), FieldSchema(name:t1.val, type:string, comment:null)], properties:null)&lt;BR /&gt;INFO : Completed compiling command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81); Time taken: 0.211 seconds&lt;BR /&gt;INFO : Concurrency mode is disabled, not creating a lock manager&lt;BR /&gt;INFO : Executing command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81): select * from test t join test t1 on t.id=t1.id&lt;BR /&gt;INFO : Query ID = hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81&lt;BR /&gt;INFO : Total jobs = 1&lt;BR /&gt;INFO : Launching Job 1 out of 1&lt;BR /&gt;INFO : Starting task [Stage-1:MAPRED] in serial mode&lt;BR /&gt;INFO : Subscribed to counters: [] for queryId: hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81&lt;BR /&gt;INFO : Session is already open&lt;BR /&gt;INFO : Dag name: select * from test t join test ...t.id=t1.id (Stage-1)&lt;BR /&gt;INFO : Setting tez.task.scale.memory.reserve-fraction to 0.30000001192092896&lt;BR /&gt;INFO : Tez session was closed. Reopening...&lt;BR /&gt;INFO : Session re-established.&lt;BR /&gt;INFO : Session re-established.&lt;BR /&gt;INFO : Status: Running (Executing on YARN cluster with App id application_1610695610027_0489)&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;VERTICES MODE STATUS TOTAL COMPLETED RUNNING PENDING FAILED KILLED&lt;BR /&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;&lt;STRONG&gt;Map 2 .......... container SUCCEEDED 1 1 0 0 4 0&lt;/STRONG&gt;&lt;BR /&gt;Map 1 container RUNNING 1 0 1 0 0 0&lt;BR /&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;VERTICES: 01/02 [=============&amp;gt;&amp;gt;-------------] 50% ELAPSED TIME: 5.98 s&lt;BR /&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;ERROR : Status: Failed&lt;BR /&gt;ERROR : Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00&lt;BR /&gt;ERROR : Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00&lt;BR /&gt;ERROR : Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00&lt;BR /&gt;ERROR : Vertex failed, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00, diagnostics=[Vertex vertex_1610695610027_0489_1_00 [Map 2] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_1610695610027_0489_1_00 [Map 2] failed as task task_1610695610027_0489_1_00_000000 failed after vertex succeeded.]&lt;BR /&gt;ERROR : DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0&lt;BR /&gt;INFO : org.apache.tez.common.counters.DAGCounter:&lt;BR /&gt;INFO : NUM_FAILED_TASKS: 4&lt;BR /&gt;INFO : NUM_KILLED_TASKS: 1&lt;BR /&gt;INFO : NUM_SUCCEEDED_TASKS: 4&lt;BR /&gt;INFO : TOTAL_LAUNCHED_TASKS: 5&lt;BR /&gt;INFO : AM_CPU_MILLISECONDS: 3300&lt;BR /&gt;INFO : AM_GC_TIME_MILLIS: 0&lt;BR /&gt;INFO : org.apache.hadoop.hive.ql.exec.tez.HiveInputCounters:&lt;BR /&gt;INFO : GROUPED_INPUT_SPLITS_Map_1: 1&lt;BR /&gt;INFO : GROUPED_INPUT_SPLITS_Map_2: 1&lt;BR /&gt;INFO : INPUT_DIRECTORIES_Map_1: 1&lt;BR /&gt;INFO : INPUT_DIRECTORIES_Map_2: 1&lt;BR /&gt;INFO : INPUT_FILES_Map_1: 1&lt;BR /&gt;INFO : INPUT_FILES_Map_2: 1&lt;BR /&gt;INFO : RAW_INPUT_SPLITS_Map_1: 1&lt;BR /&gt;INFO : RAW_INPUT_SPLITS_Map_2: 1&lt;BR /&gt;ERROR : FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex failed, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00, diagnostics=[Vertex vertex_1610695610027_0489_1_00 [Map 2] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_1610695610027_0489_1_00 [Map 2] failed as task task_1610695610027_0489_1_00_000000 failed after vertex succeeded.]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0&lt;BR /&gt;INFO : Completed executing command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81); Time taken: 12.207 seconds&lt;BR /&gt;INFO : Concurrency mode is disabled, not creating a lock manager&lt;BR /&gt;Error: Error while processing statement: FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex failed, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00, diagnostics=[Vertex vertex_1610695610027_0489_1_00 [Map 2] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_1610695610027_0489_1_00 [Map 2] failed as task task_1610695610027_0489_1_00_000000 failed after vertex succeeded.]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0 (state=08S01,code=2)&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the above log, we can see the first Map task failed 4 times, and thus failed the query. Since I cannot upload file, so I didnt attach the full applicaiton log.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will be really appreciated if anyone could help have a look. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jan 2021 08:04:26 GMT</pubDate>
    <dc:creator>BrightLiao</dc:creator>
    <dc:date>2021-01-19T08:04:26Z</dc:date>
    <item>
      <title>Hive - tez , vertex failed during map phase - HDP 3.1.4</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/309973#M223977</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running hive with HDP 3.1.4, and with kerberos enabled.&lt;/P&gt;&lt;P&gt;Currently there is a strange issue. Some sql could be success only if we run it with the system user `hive`, otherwise it fails with map error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A simple case is as below:&lt;/P&gt;&lt;P&gt;1. Create a table named `test` with columns (id int, val string), and data [(1, '1'), (2, '2')].&lt;/P&gt;&lt;P&gt;2. Run sql with user hive: `select * from test t join test t1 on t.id=t1.id;`, it succeeds as below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrightLiao_0-1611042112169.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/30157i1807494994083660/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrightLiao_0-1611042112169.png" alt="BrightLiao_0-1611042112169.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;Run the same sql with some other user (e.g. test): `select * from test t join test t1 on t.id=t1.id;`, it fails with a vertex issue:&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;INFO : Compiling command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81): select * from test t join test t1 on t.id=t1.id&lt;BR /&gt;INFO : Concurrency mode is disabled, not creating a lock manager&lt;BR /&gt;INFO : Semantic Analysis Completed (retrial = false)&lt;BR /&gt;INFO : Returning Hive schema: Schema(fieldSchemas:[FieldSchema(name:t.id, type:int, comment:null), FieldSchema(name:t.val, type:string, comment:null), FieldSchema(name:t1.id, type:int, comment:null), FieldSchema(name:t1.val, type:string, comment:null)], properties:null)&lt;BR /&gt;INFO : Completed compiling command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81); Time taken: 0.211 seconds&lt;BR /&gt;INFO : Concurrency mode is disabled, not creating a lock manager&lt;BR /&gt;INFO : Executing command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81): select * from test t join test t1 on t.id=t1.id&lt;BR /&gt;INFO : Query ID = hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81&lt;BR /&gt;INFO : Total jobs = 1&lt;BR /&gt;INFO : Launching Job 1 out of 1&lt;BR /&gt;INFO : Starting task [Stage-1:MAPRED] in serial mode&lt;BR /&gt;INFO : Subscribed to counters: [] for queryId: hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81&lt;BR /&gt;INFO : Session is already open&lt;BR /&gt;INFO : Dag name: select * from test t join test ...t.id=t1.id (Stage-1)&lt;BR /&gt;INFO : Setting tez.task.scale.memory.reserve-fraction to 0.30000001192092896&lt;BR /&gt;INFO : Tez session was closed. Reopening...&lt;BR /&gt;INFO : Session re-established.&lt;BR /&gt;INFO : Session re-established.&lt;BR /&gt;INFO : Status: Running (Executing on YARN cluster with App id application_1610695610027_0489)&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;VERTICES MODE STATUS TOTAL COMPLETED RUNNING PENDING FAILED KILLED&lt;BR /&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;&lt;STRONG&gt;Map 2 .......... container SUCCEEDED 1 1 0 0 4 0&lt;/STRONG&gt;&lt;BR /&gt;Map 1 container RUNNING 1 0 1 0 0 0&lt;BR /&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;VERTICES: 01/02 [=============&amp;gt;&amp;gt;-------------] 50% ELAPSED TIME: 5.98 s&lt;BR /&gt;----------------------------------------------------------------------------------------------&lt;BR /&gt;ERROR : Status: Failed&lt;BR /&gt;ERROR : Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00&lt;BR /&gt;ERROR : Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00&lt;BR /&gt;ERROR : Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00&lt;BR /&gt;ERROR : Vertex failed, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00, diagnostics=[Vertex vertex_1610695610027_0489_1_00 [Map 2] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_1610695610027_0489_1_00 [Map 2] failed as task task_1610695610027_0489_1_00_000000 failed after vertex succeeded.]&lt;BR /&gt;ERROR : DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0&lt;BR /&gt;INFO : org.apache.tez.common.counters.DAGCounter:&lt;BR /&gt;INFO : NUM_FAILED_TASKS: 4&lt;BR /&gt;INFO : NUM_KILLED_TASKS: 1&lt;BR /&gt;INFO : NUM_SUCCEEDED_TASKS: 4&lt;BR /&gt;INFO : TOTAL_LAUNCHED_TASKS: 5&lt;BR /&gt;INFO : AM_CPU_MILLISECONDS: 3300&lt;BR /&gt;INFO : AM_GC_TIME_MILLIS: 0&lt;BR /&gt;INFO : org.apache.hadoop.hive.ql.exec.tez.HiveInputCounters:&lt;BR /&gt;INFO : GROUPED_INPUT_SPLITS_Map_1: 1&lt;BR /&gt;INFO : GROUPED_INPUT_SPLITS_Map_2: 1&lt;BR /&gt;INFO : INPUT_DIRECTORIES_Map_1: 1&lt;BR /&gt;INFO : INPUT_DIRECTORIES_Map_2: 1&lt;BR /&gt;INFO : INPUT_FILES_Map_1: 1&lt;BR /&gt;INFO : INPUT_FILES_Map_2: 1&lt;BR /&gt;INFO : RAW_INPUT_SPLITS_Map_1: 1&lt;BR /&gt;INFO : RAW_INPUT_SPLITS_Map_2: 1&lt;BR /&gt;ERROR : FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex failed, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00, diagnostics=[Vertex vertex_1610695610027_0489_1_00 [Map 2] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_1610695610027_0489_1_00 [Map 2] failed as task task_1610695610027_0489_1_00_000000 failed after vertex succeeded.]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0&lt;BR /&gt;INFO : Completed executing command(queryId=hive_20210119153558_48453ef9-4b06-48ed-b9f6-f64f82992d81); Time taken: 12.207 seconds&lt;BR /&gt;INFO : Concurrency mode is disabled, not creating a lock manager&lt;BR /&gt;Error: Error while processing statement: FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex re-running, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00Vertex failed, vertexName=Map 2, vertexId=vertex_1610695610027_0489_1_00, diagnostics=[Vertex vertex_1610695610027_0489_1_00 [Map 2] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_1610695610027_0489_1_00 [Map 2] failed as task task_1610695610027_0489_1_00_000000 failed after vertex succeeded.]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0 (state=08S01,code=2)&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the above log, we can see the first Map task failed 4 times, and thus failed the query. Since I cannot upload file, so I didnt attach the full applicaiton log.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will be really appreciated if anyone could help have a look. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 08:04:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/309973#M223977</guid>
      <dc:creator>BrightLiao</dc:creator>
      <dc:date>2021-01-19T08:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Hive - tez , vertex failed during map phase - HDP 3.1.4</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/309980#M223982</link>
      <description>&lt;P&gt;I'd like to add more information after some dig into the logs. I found some debug log below with INPUT_READ_ERROR_EVENT triggered (from log file: syslog_dag_1610695610027_0484_1):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrightLiao_0-1611045650316.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/30158iDC9C09EAE5E603EE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrightLiao_0-1611045650316.png" alt="BrightLiao_0-1611045650316.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It's from a similar sql with some aggregation, but raised the same error from hive shell.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks when the Reducer was trying to read from the result of the Mapper, some error occurred and the data cannot be passed from Mapper to Reducer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The question still remains: why the sql (in tez) succeeds for hive user, but failed for other users?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 08:46:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/309980#M223982</guid>
      <dc:creator>BrightLiao</dc:creator>
      <dc:date>2021-01-19T08:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hive - tez , vertex failed during map phase - HDP 3.1.4</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/310055#M224010</link>
      <description>&lt;P&gt;Finally, I managed to solve this issue. I'd like to add some details for others might be lost in the same trap.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The root cause is that the user UIDs in our LDAP clashes with the UIDs of hdp internal user UIDs(e.g. hive, spark, infra-solr, hbase...).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To be more specific in the above case, the user test has UID 1002 in our LDAP configuration, while the hdp internal user 'infra-solr' has the same UID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the log, we can see some INPUT_READ_ERROR, the error is raised by some downstream task complaining that it cannot get data from the upstream task.&lt;/P&gt;&lt;P&gt;The reason behind it is that when the downstream task try to get upstream task data from shuffle service (which runs on yarn node manager as an aux-service), a lot of HTTP 500 error raised.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why&amp;nbsp;shuffle service raises 500? It's because it checks the permission (owner) of data file sent out by upstream task and found the user name does not match, so it raised an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When we look at the logs from node manager, we can see bunch of errors like below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;Caused by: java.io.IOException: Owner 'infra-solr' for path /xxx/hadoop/yarn/local/usercache/xxx/appcache/application_1610695610027_0576/output/attempt_1610695610027_0576_2_00_000017_0_10002/file.out.index did not match expected owner 'test'&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The related source code:&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;A href="https://github.com/apache/hadoop/blob/master/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/src/main/java/org/apache/hadoop/mapred/ShuffleHandler.java" target="_blank"&gt;https://github.com/apache/hadoop/blob/master/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/src/main/java/org/apache/hadoop/mapred/ShuffleHandler.java&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;A href="https://github.com/apache/tez/blob/master/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java" target="_blank"&gt;https://github.com/apache/tez/blob/master/tez-plugins/tez-aux-services/src/main/java/org/apache/tez/auxservices/ShuffleHandler.java&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The lesson here is: when we configure uid/gid in LDAP, we should be more careful about the potential conflicts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 03:08:08 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Hive-tez-vertex-failed-during-map-phase-HDP-3-1-4/m-p/310055#M224010</guid>
      <dc:creator>BrightLiao</dc:creator>
      <dc:date>2021-01-20T03:08:08Z</dc:date>
    </item>
  </channel>
</rss>

