This is an automated email from the ASF dual-hosted git repository.
abstractdog 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 b3c107c365b HIVE-29656: KilledVertex regex masking, stack duplication
removal in query tests (#6547)
b3c107c365b is described below
commit b3c107c365bf248d75a0b7989779f93a06779d16
Author: illiabarbashov-sketch <[email protected]>
AuthorDate: Thu Jun 25 09:46:57 2026 +0200
HIVE-29656: KilledVertex regex masking, stack duplication removal in query
tests (#6547)
---
.../org/apache/hadoop/hive/ql/QOutProcessor.java | 25 +++-
.../apache/hadoop/hive/ql/TestQOutProcessor.java | 160 +++++++++++++++++++++
.../alter_notnull_constraint_violation.q.out | 4 +-
.../clientnegative/avro_non_nullable_union.q.out | 4 +-
.../test/results/clientnegative/broken_pipe.q.out | 4 +-
.../clientnegative/cachingprintstream.q.out | 6 +-
.../check_constraint_tbl_level.q.out | 4 +-
.../check_constraint_violation.q.out | 4 +-
.../compute_bit_vector_fm_limit.q.out | 4 +-
.../clientnegative/constraint_invalid_cast.q.out | 4 +-
.../constraint_invalid_cast_partition.q.out | 4 +-
.../clientnegative/dyn_part_max_per_node.q.out | 4 +-
.../dynamic_partitions_with_whitelist.q.out | 4 +-
.../clientnegative/insert_into_acid_notnull.q.out | 5 +-
.../insert_into_notnull_constraint.q.out | 4 +-
.../insert_overwrite_notnull_constraint.q.out | 4 +-
.../clientnegative/merge_constraint_notnull.q.out | 8 +-
.../clientnegative/script_broken_pipe3.q.out | 4 +-
.../test/results/clientnegative/script_error.q.out | 4 +-
.../test/results/clientnegative/serde_regex2.q.out | 4 +-
.../test/results/clientnegative/stack_trace.q.out | 4 +-
.../clientnegative/stats_aggregator_error_2.q.out | 4 +-
.../clientnegative/stats_publisher_error_1.q.out | 4 +-
.../clientnegative/stats_publisher_error_2.q.out | 4 +-
.../clientnegative/subquery_corr_in_agg.q.out | 4 +-
.../clientnegative/subquery_in_implicit_gby.q.out | 4 +-
.../subquery_notin_implicit_gby.q.out | 5 +-
.../subquery_scalar_corr_multi_rows.q.out | 5 +-
.../subquery_scalar_multi_rows.q.out | 5 +-
.../clientnegative/udf_test_error_reduce.q.out | 4 +-
.../clientnegative/update_notnull_constraint.q.out | 5 +-
.../clientpositive/llap/retry_failure.q.out | 8 +-
.../clientpositive/llap/retry_failure_oom.q.out | 4 +-
.../llap/retry_failure_reorder.q.out | 4 +-
.../llap/retry_failure_stat_changes.q.out | 4 +-
.../clientpositive/llap/vector_retry_failure.q.out | 4 +-
36 files changed, 255 insertions(+), 81 deletions(-)
diff --git
a/itests/util/src/main/java/org/apache/hadoop/hive/ql/QOutProcessor.java
b/itests/util/src/main/java/org/apache/hadoop/hive/ql/QOutProcessor.java
index b418c70538c..6198f3ea0bb 100644
--- a/itests/util/src/main/java/org/apache/hadoop/hive/ql/QOutProcessor.java
+++ b/itests/util/src/main/java/org/apache/hadoop/hive/ql/QOutProcessor.java
@@ -58,6 +58,7 @@ public class QOutProcessor {
public static final String MASK_PATTERN = "#### A masked pattern was here
####";
public static final String PARTIAL_MASK_PATTERN = "#### A PARTIAL masked
pattern was here ####";
+ public static final String MASKED_VERTEX_KILLED_PATTERN = "[Masked Vertex
killed due to OTHER_VERTEX_FAILURE]";
private static final PatternReplacementPair MASK_STATS = new
PatternReplacementPair(
Pattern.compile(" Num rows: [1-9][0-9]* Data size: [1-9][0-9]*"),
" Num rows: ###Masked### Data size: ###Masked###");
@@ -197,6 +198,7 @@ public void maskPatterns(String fname) throws Exception {
out = new BufferedWriter(new OutputStreamWriter(new
FileOutputStream(file), "UTF-8"));
boolean lastWasMasked = false;
+ boolean lastWasVertexKilled = false;
while (null != (line = in.readLine())) {
LineProcessingResult result = processLine(line);
@@ -209,10 +211,22 @@ public void maskPatterns(String fname) throws Exception {
lastWasMasked = true;
result.partialMaskWasMatched = false;
}
+ lastWasVertexKilled = false;
+ } else if (result.line.equals(MASKED_VERTEX_KILLED_PATTERN)) {
+ // Deduplicate consecutive standalone vertex-killed lines — the number
of sibling
+ // vertices still alive when the kill propagates is non-deterministic.
+ if (!lastWasVertexKilled) {
+ out.write(result.line);
+ out.write("\n");
+ lastWasVertexKilled = true;
+ }
+ lastWasMasked = false;
+ result.partialMaskWasMatched = false;
} else {
out.write(result.line);
out.write("\n");
lastWasMasked = false;
+ lastWasVertexKilled = false;
result.partialMaskWasMatched = false;
}
}
@@ -350,7 +364,16 @@ private final static class PatternReplacementPair {
// We do not want the test to fail because of this.
ppm.add(new PatternReplacementPair(
Pattern.compile("Vertex killed, vertexName=(.*?),.*\\[\\1\\]
killed\\/failed due to:OTHER_VERTEX_FAILURE\\]"),
- "[Masked Vertex killed due to OTHER_VERTEX_FAILURE]"));
+ MASKED_VERTEX_KILLED_PATTERN));
+
+ // Collapse multiple consecutive embedded [Masked Vertex killed] tokens on
the same line
+ // (the long FAILED: summary line repeats one token per killed vertex).
+ ppm.add(new PatternReplacementPair(Pattern.compile("(\\Q" +
MASKED_VERTEX_KILLED_PATTERN + "\\E){2,}"),
+ MASKED_VERTEX_KILLED_PATTERN));
+
+ // The number of vertices killed when a DAG fails is a scheduling race
condition —
+ // depends on how many sibling vertices are still running at the moment
the kill propagates.
+ ppm.add(new PatternReplacementPair(Pattern.compile("killedVertices:\\d+"),
"killedVertices:#Masked#"));
partialPlanMask = ppm.toArray(new PatternReplacementPair[ppm.size()]);
}
diff --git
a/itests/util/src/test/java/org/apache/hadoop/hive/ql/TestQOutProcessor.java
b/itests/util/src/test/java/org/apache/hadoop/hive/ql/TestQOutProcessor.java
index 17fde37f36a..7bf4d5715cb 100644
--- a/itests/util/src/test/java/org/apache/hadoop/hive/ql/TestQOutProcessor.java
+++ b/itests/util/src/test/java/org/apache/hadoop/hive/ql/TestQOutProcessor.java
@@ -17,10 +17,19 @@
*/
package org.apache.hadoop.hive.ql;
+import java.io.File;
+import java.io.PrintWriter;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Files;
+import java.util.Arrays;
+import java.util.List;
+
import org.apache.hadoop.hive.ql.QTestMiniClusters.FsType;
import org.apache.hadoop.hive.ql.qoption.QTestReplaceHandler;
import org.junit.Assert;
+import org.junit.Rule;
import org.junit.Test;
+import org.junit.rules.TemporaryFolder;
/**
* This class contains unit tests for QTestUtil
@@ -28,6 +37,138 @@
public class TestQOutProcessor {
QOutProcessor qOutProcessor = new QOutProcessor(FsType.LOCAL, new
QTestReplaceHandler());
+ @Rule
+ public TemporaryFolder tmpFolder = new TemporaryFolder();
+
+ /**
+ * A raw vertex-killed log line must be replaced with
MASKED_VERTEX_KILLED_PATTERN.
+ */
+ @Test
+ public void testVertexKilledLineIsReplaced() {
+ String raw = "Vertex killed, vertexName=Map 2, "
+ + "diagnostics=[Task failed, taskAttemptId=attempt_1 "
+ + "[Map 2] killed/failed due to:OTHER_VERTEX_FAILURE]";
+ Assert.assertEquals(QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
processLine(raw));
+ }
+
+ /**
+ * A line containing multiple embedded MASKED_VERTEX_KILLED_PATTERN tokens
+ * (produced after the first regex pass) must be collapsed to a single token.
+ */
+ @Test
+ public void testMultipleEmbeddedVertexKilledTokensCollapsedOnSameLine() {
+ String twoTokens = QOutProcessor.MASKED_VERTEX_KILLED_PATTERN
+ + QOutProcessor.MASKED_VERTEX_KILLED_PATTERN;
+ Assert.assertEquals(QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
processLine(twoTokens));
+
+ String threeTokens = QOutProcessor.MASKED_VERTEX_KILLED_PATTERN
+ + QOutProcessor.MASKED_VERTEX_KILLED_PATTERN
+ + QOutProcessor.MASKED_VERTEX_KILLED_PATTERN;
+ Assert.assertEquals(QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
processLine(threeTokens));
+ }
+
+ /**
+ * A single MASKED_VERTEX_KILLED_PATTERN token must be left unchanged by
processLine.
+ */
+ @Test
+ public void testSingleEmbeddedVertexKilledTokenUnchanged() {
+ Assert.assertEquals(
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ processLine(QOutProcessor.MASKED_VERTEX_KILLED_PATTERN));
+ }
+
+ /**
+ * killedVertices:<number> must be masked regardless of the numeric value.
+ */
+ @Test
+ public void testKilledVerticesCountIsMasked() {
+ Assert.assertEquals("killedVertices:#Masked#",
processLine("killedVertices:3"));
+ Assert.assertEquals("killedVertices:#Masked#",
processLine("killedVertices:0"));
+ Assert.assertEquals("killedVertices:#Masked#",
processLine("killedVertices:100"));
+ }
+
+ /**
+ * killedVertices masking should work when embedded in a longer line (e.g.
FAILED: summary).
+ */
+ @Test
+ public void testKilledVerticesCountIsMaskedInLongerLine() {
+ String input = "FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez."
+ + "TezTask. killedVertices:2 Vertex re-run not supported in current
execution mode.";
+ String output = processLine(input);
+ Assert.assertTrue("killedVertices:#Masked# must appear in output",
+ output.contains("killedVertices:#Masked#"));
+ Assert.assertFalse("raw killedVertices:2 must not appear in output",
+ output.contains("killedVertices:2"));
+ }
+
+ /**
+ * Multiple consecutive standalone MASKED_VERTEX_KILLED_PATTERN lines must be
+ * collapsed to a single line by maskPatterns().
+ */
+ @Test
+ public void testConsecutiveVertexKilledLinesDeduplicatedInFile() throws
Exception {
+ File f = tmpFile(
+ "line before",
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ "line after");
+
+ qOutProcessor.maskPatterns(f.getAbsolutePath());
+
+ List<String> lines = readLines(f);
+ Assert.assertEquals(
+ Arrays.asList("line before",
QOutProcessor.MASKED_VERTEX_KILLED_PATTERN, "line after"),
+ lines);
+ }
+
+ /**
+ * Two separate (non-consecutive) vertex-killed blocks must each produce one
line.
+ */
+ @Test
+ public void testNonConsecutiveVertexKilledLinesKeptSeparately() throws
Exception {
+ File f = tmpFile(
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ "some other line",
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN);
+
+ qOutProcessor.maskPatterns(f.getAbsolutePath());
+
+ List<String> lines = readLines(f);
+ Assert.assertEquals(
+ Arrays.asList(
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ "some other line",
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN),
+ lines);
+ }
+
+ /**
+ * Vertex-killed deduplication must reset when a normal (masked) line
interrupts
+ * the run of vertex-killed lines.
+ */
+ @Test
+ public void testVertexKilledRunResetByMaskedLine() throws Exception {
+ // "Deleted something" starts with "Deleted" → gets replaced by
MASK_PATTERN
+ File f = tmpFile(
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ "Deleted /tmp/something", // will be masked → MASK_PATTERN
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN);
+
+ qOutProcessor.maskPatterns(f.getAbsolutePath());
+
+ List<String> lines = readLines(f);
+ // MASK_PATTERN lines fold duplicates; but here there is only one
occurrence
+ Assert.assertEquals(
+ Arrays.asList(
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN,
+ QOutProcessor.MASK_PATTERN,
+ QOutProcessor.MASKED_VERTEX_KILLED_PATTERN),
+ lines);
+ }
+
@Test
public void testSelectiveHdfsPatternMaskOnlyHdfsPath() {
Assert.assertEquals("nothing to be masked", processLine("nothing to be
masked"));
@@ -77,4 +218,23 @@ public void testSelectiveHdfsPatternMaskOnlyHdfsPath() {
private String processLine(String line) {
return qOutProcessor.processLine(line).get();
}
+
+ private File tmpFile(String... lines) throws Exception {
+ File f = tmpFolder.newFile();
+ try (PrintWriter pw = new PrintWriter(Files.newBufferedWriter(f.toPath(),
StandardCharsets.UTF_8))) {
+ for (String l : lines) {
+ pw.println(l);
+ }
+ }
+ return f;
+ }
+
+ private List<String> readLines(File f) throws Exception {
+ List<String> all = Files.readAllLines(f.toPath(), StandardCharsets.UTF_8);
+ while (!all.isEmpty() && all.get(all.size() - 1).isEmpty()) {
+ all.remove(all.size() - 1);
+ }
+ return all;
+ }
+
}
\ No newline at end of file
diff --git
a/ql/src/test/results/clientnegative/alter_notnull_constraint_violation.q.out
b/ql/src/test/results/clientnegative/alter_notnull_constraint_violation.q.out
index 9a2bb338b1e..10c16c993b5 100644
---
a/ql/src/test/results/clientnegative/alter_notnull_constraint_violation.q.out
+++
b/ql/src/test/results/clientnegative/alter_notnull_constraint_violation.q.out
@@ -39,7 +39,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -48,4 +48,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/avro_non_nullable_union.q.out
b/ql/src/test/results/clientnegative/avro_non_nullable_union.q.out
index 9ba4fced9f7..0b18d3f892a 100644
--- a/ql/src/test/results/clientnegative/avro_non_nullable_union.q.out
+++ b/ql/src/test/results/clientnegative/avro_non_nullable_union.q.out
@@ -57,7 +57,7 @@ Caused by: Avro could not validate record against schema
(record = {"id": 3, "va
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -74,4 +74,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Avro could not vali
#### A masked pattern was here ####
Caused by: Avro could not validate record against schema (record = {"id": 3,
"value": null}) (schema =
{"type":"record","name":"nullable","fields":[{"name":"id","type":"int"},{"name":"value","type":["int","double"]}]})
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/broken_pipe.q.out
b/ql/src/test/results/clientnegative/broken_pipe.q.out
index 6eaf02a9213..50345b90019 100644
--- a/ql/src/test/results/clientnegative/broken_pipe.q.out
+++ b/ql/src/test/results/clientnegative/broken_pipe.q.out
@@ -17,7 +17,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
[Error 20003]: An e
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Node: #NODE# : Error while
running task ( failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -30,4 +30,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 20003]: An
error occurred when trying to close the Operator running your custom script.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/cachingprintstream.q.out
b/ql/src/test/results/clientnegative/cachingprintstream.q.out
index 062139fc710..08f25b63baa 100644
--- a/ql/src/test/results/clientnegative/cachingprintstream.q.out
+++ b/ql/src/test/results/clientnegative/cachingprintstream.q.out
@@ -34,7 +34,7 @@ Caused by: java.io.IOException: Cannot run program
"FAKE_SCRIPT_SHOULD_NOT_EXIST
Caused by: java.io.IOException: error=2, No such file or directory
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
Begin cached logs.
PREHOOK: query: FROM src SELECT TRANSFORM (key, value) USING
'FAKE_SCRIPT_SHOULD_NOT_EXIST' AS key, value
PREHOOK: type: QUERY
@@ -66,7 +66,7 @@ Caused by: java.io.IOException: Cannot run program
"FAKE_SCRIPT_SHOULD_NOT_EXIST
Caused by: java.io.IOException: error=2, No such file or directory
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
End cached logs.
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Node: #NODE# : Error while
running task ( failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
@@ -92,4 +92,4 @@ Caused by: java.io.IOException: Cannot run program
"FAKE_SCRIPT_SHOULD_NOT_EXIST
#### A masked pattern was here ####
Caused by: java.io.IOException: error=2, No such file or directory
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/check_constraint_tbl_level.q.out
b/ql/src/test/results/clientnegative/check_constraint_tbl_level.q.out
index 3b59664ce1b..5c890e03382 100644
--- a/ql/src/test/results/clientnegative/check_constraint_tbl_level.q.out
+++ b/ql/src/test/results/clientnegative/check_constraint_tbl_level.q.out
@@ -21,7 +21,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -30,4 +30,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/check_constraint_violation.q.out
b/ql/src/test/results/clientnegative/check_constraint_violation.q.out
index 76f5a4d1bae..a2fee20910c 100644
--- a/ql/src/test/results/clientnegative/check_constraint_violation.q.out
+++ b/ql/src/test/results/clientnegative/check_constraint_violation.q.out
@@ -21,7 +21,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -30,4 +30,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/compute_bit_vector_fm_limit.q.out
b/ql/src/test/results/clientnegative/compute_bit_vector_fm_limit.q.out
index 4b71956aa4a..90352a53ad7 100644
--- a/ql/src/test/results/clientnegative/compute_bit_vector_fm_limit.q.out
+++ b/ql/src/test/results/clientnegative/compute_bit_vector_fm_limit.q.out
@@ -37,7 +37,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
The maximum allowed
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -54,4 +54,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: The maximum
allowed value for number of bit vectors is 1024, but was passed 10000 bit
vectors
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/constraint_invalid_cast.q.out
b/ql/src/test/results/clientnegative/constraint_invalid_cast.q.out
index 662005406c6..3c89f2220a3 100644
--- a/ql/src/test/results/clientnegative/constraint_invalid_cast.q.out
+++ b/ql/src/test/results/clientnegative/constraint_invalid_cast.q.out
@@ -25,7 +25,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -34,4 +34,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/constraint_invalid_cast_partition.q.out
b/ql/src/test/results/clientnegative/constraint_invalid_cast_partition.q.out
index 739061a9b3c..d67e8391048 100644
--- a/ql/src/test/results/clientnegative/constraint_invalid_cast_partition.q.out
+++ b/ql/src/test/results/clientnegative/constraint_invalid_cast_partition.q.out
@@ -34,7 +34,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -43,4 +43,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/dyn_part_max_per_node.q.out
b/ql/src/test/results/clientnegative/dyn_part_max_per_node.q.out
index 09319b67cd0..7094cc1aef6 100644
--- a/ql/src/test/results/clientnegative/dyn_part_max_per_node.q.out
+++ b/ql/src/test/results/clientnegative/dyn_part_max_per_node.q.out
@@ -37,7 +37,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
Caused by: org.apache.hadoop.hive.ql.metadata.HiveFatalException: [Error
20004]: Fatal error occurred when node tried to create too many dynamic
partitions. The maximum number of dynamic partitions is controlled by
hive.exec.max.dynamic.partitions and hive.exec.max.dynamic.partitions.pernode.
Maximum was set to 10 partitions per node, number of dynamic partitions on this
node: 11
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 3] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
3, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing vector batch (tag=0) (vectorizedVertexNum 2)
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing vector batch (tag=0) (vectorizedVertexNum 2)
@@ -54,4 +54,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveFatalException: [Error
20004]: Fatal error occurred when node tried to create too many dynamic
partitions. The maximum number of dynamic partitions is controlled by
hive.exec.max.dynamic.partitions and hive.exec.max.dynamic.partitions.pernode.
Maximum was set to 10 partitions per node, number of dynamic partitions on this
node: 11
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 3] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 3] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/dynamic_partitions_with_whitelist.q.out
b/ql/src/test/results/clientnegative/dynamic_partitions_with_whitelist.q.out
index e2d004e4e2a..f428ddead4c 100644
--- a/ql/src/test/results/clientnegative/dynamic_partitions_with_whitelist.q.out
+++ b/ql/src/test/results/clientnegative/dynamic_partitions_with_whitelist.q.out
@@ -43,7 +43,7 @@ Caused by:
org.apache.hadoop.hive.ql.metadata.HiveFatalException: Partition valu
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -56,4 +56,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveFatalException: Partition
value 'val_129' contains a character not matched by whitelist pattern '[^9]*'.
Configure with metastore.partition.name.whitelist.pattern
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/insert_into_acid_notnull.q.out
b/ql/src/test/results/clientnegative/insert_into_acid_notnull.q.out
index 9894796823c..268a09bd527 100644
--- a/ql/src/test/results/clientnegative/insert_into_acid_notnull.q.out
+++ b/ql/src/test/results/clientnegative/insert_into_acid_notnull.q.out
@@ -25,8 +25,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:2
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -35,4 +34,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:2
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/insert_into_notnull_constraint.q.out
b/ql/src/test/results/clientnegative/insert_into_notnull_constraint.q.out
index 5a56e9974f9..cfe2afe2224 100644
--- a/ql/src/test/results/clientnegative/insert_into_notnull_constraint.q.out
+++ b/ql/src/test/results/clientnegative/insert_into_notnull_constraint.q.out
@@ -21,7 +21,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -30,4 +30,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/insert_overwrite_notnull_constraint.q.out
b/ql/src/test/results/clientnegative/insert_overwrite_notnull_constraint.q.out
index 6818f8f175b..102017cc8af 100644
---
a/ql/src/test/results/clientnegative/insert_overwrite_notnull_constraint.q.out
+++
b/ql/src/test/results/clientnegative/insert_overwrite_notnull_constraint.q.out
@@ -21,7 +21,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -30,4 +30,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/merge_constraint_notnull.q.out
b/ql/src/test/results/clientnegative/merge_constraint_notnull.q.out
index 86aed6ba0e7..b1358b47016 100644
--- a/ql/src/test/results/clientnegative/merge_constraint_notnull.q.out
+++ b/ql/src/test/results/clientnegative/merge_constraint_notnull.q.out
@@ -61,11 +61,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:5
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -74,4 +70,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE][Masked Vertex killed due to
OTHER_VERTEX_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:5
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/script_broken_pipe3.q.out
b/ql/src/test/results/clientnegative/script_broken_pipe3.q.out
index cfe51bcfa22..c54782d269c 100644
--- a/ql/src/test/results/clientnegative/script_broken_pipe3.q.out
+++ b/ql/src/test/results/clientnegative/script_broken_pipe3.q.out
@@ -16,7 +16,7 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 20003]: An
error occurred when trying to close the Operator running your custom script.
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Node: #NODE# : Error while
running task ( failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators: [Error
20003]: An error occurred when trying to close the Operator running your custom
[...]
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators: [Error 20003]: An error occurred when trying to close the Operator
running your custom script.
@@ -29,4 +29,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 20003]: An
error occurred when trying to close the Operator running your custom script.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/script_error.q.out
b/ql/src/test/results/clientnegative/script_error.q.out
index 9c184f60a69..388882858d7 100644
--- a/ql/src/test/results/clientnegative/script_error.q.out
+++ b/ql/src/test/results/clientnegative/script_error.q.out
@@ -68,7 +68,7 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 20003]: An
error occurred when trying to close the Operator running your custom script.
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Node: #NODE# : Error while
running task ( failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -81,4 +81,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 20003]: An
error occurred when trying to close the Operator running your custom script.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/serde_regex2.q.out
b/ql/src/test/results/clientnegative/serde_regex2.q.out
index 32574c39806..18d4800aac7 100644
--- a/ql/src/test/results/clientnegative/serde_regex2.q.out
+++ b/ql/src/test/results/clientnegative/serde_regex2.q.out
@@ -79,7 +79,7 @@ Caused by: org.apache.hadoop.hive.serde2.SerDeException:
Number of matching grou
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: java.io.IOException:
org.apache.hadoop.hive.serde2.SerDeException: Number of matching groups doesn't
match the number of columns
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
java.io.IOException: org.apache.hadoop.hive.serde2.SerDeException: Number of
matching groups doesn't match the number of columns
@@ -96,4 +96,4 @@ Caused by: java.io.IOException:
org.apache.hadoop.hive.serde2.SerDeException: Nu
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.serde2.SerDeException: Number of matching
groups doesn't match the number of columns
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/stack_trace.q.out
b/ql/src/test/results/clientnegative/stack_trace.q.out
index 6d4331cdefe..a592c4a7614 100644
--- a/ql/src/test/results/clientnegative/stack_trace.q.out
+++ b/ql/src/test/results/clientnegative/stack_trace.q.out
@@ -28,7 +28,7 @@ Caused by: java.io.IOException: Cannot run program
"script_does_not_exist": erro
Caused by: java.io.IOException: error=2, No such file or directory
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Node: #NODE# : Error while
running task ( failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -53,4 +53,4 @@ Caused by: java.io.IOException: Cannot run program
"script_does_not_exist": erro
#### A masked pattern was here ####
Caused by: java.io.IOException: error=2, No such file or directory
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/stats_aggregator_error_2.q.out
b/ql/src/test/results/clientnegative/stats_aggregator_error_2.q.out
index 938c6ac278a..93b11c7561f 100644
--- a/ql/src/test/results/clientnegative/stats_aggregator_error_2.q.out
+++ b/ql/src/test/results/clientnegative/stats_aggregator_error_2.q.out
@@ -36,7 +36,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
[Error 30000]: Stat
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -49,4 +49,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 30000]:
StatsPublisher cannot be obtained. There was a error to retrieve the
StatsPublisher, and retrying might help. If you don't want the query to fail
because accurate statistics could not be collected, set
hive.stats.reliable=false
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/stats_publisher_error_1.q.out
b/ql/src/test/results/clientnegative/stats_publisher_error_1.q.out
index 0597add5302..36441c0826b 100644
--- a/ql/src/test/results/clientnegative/stats_publisher_error_1.q.out
+++ b/ql/src/test/results/clientnegative/stats_publisher_error_1.q.out
@@ -35,7 +35,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
[Error 30002]: Stat
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -48,4 +48,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 30002]:
StatsPublisher cannot be connected to.There was a error while connecting to the
StatsPublisher, and retrying might help. If you don't want the query to fail
because accurate statistics could not be collected, set
hive.stats.reliable=false
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/stats_publisher_error_2.q.out
b/ql/src/test/results/clientnegative/stats_publisher_error_2.q.out
index 938c6ac278a..93b11c7561f 100644
--- a/ql/src/test/results/clientnegative/stats_publisher_error_2.q.out
+++ b/ql/src/test/results/clientnegative/stats_publisher_error_2.q.out
@@ -36,7 +36,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
[Error 30000]: Stat
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators
@@ -49,4 +49,4 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [Error 30000]:
StatsPublisher cannot be obtained. There was a error to retrieve the
StatsPublisher, and retrying might help. If you don't want the query to fail
because accurate statistics could not be collected, set
hive.stats.reliable=false
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/subquery_corr_in_agg.q.out
b/ql/src/test/results/clientnegative/subquery_corr_in_agg.q.out
index 2649b8f60ff..beb702a12e5 100644
--- a/ql/src/test/results/clientnegative/subquery_corr_in_agg.q.out
+++ b/ql/src/test/results/clientnegative/subquery_corr_in_agg.q.out
@@ -59,7 +59,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.UDFArgumentException: IN/NOT IN subqu
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -76,4 +76,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.UDFArgumentException: IN/NOT IN
subquery with aggregate returning zero result. Currently this is not supported.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/subquery_in_implicit_gby.q.out
b/ql/src/test/results/clientnegative/subquery_in_implicit_gby.q.out
index 07cbae45a0b..932fad781c5 100644
--- a/ql/src/test/results/clientnegative/subquery_in_implicit_gby.q.out
+++ b/ql/src/test/results/clientnegative/subquery_in_implicit_gby.q.out
@@ -58,7 +58,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.UDFArgumentException: IN/NOT IN subqu
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -75,4 +75,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.UDFArgumentException: IN/NOT IN
subquery with aggregate returning zero result. Currently this is not supported.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:1
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/subquery_notin_implicit_gby.q.out
b/ql/src/test/results/clientnegative/subquery_notin_implicit_gby.q.out
index 2cc9f4c337b..96dce4da5e8 100644
--- a/ql/src/test/results/clientnegative/subquery_notin_implicit_gby.q.out
+++ b/ql/src/test/results/clientnegative/subquery_notin_implicit_gby.q.out
@@ -58,8 +58,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.UDFArgumentException: IN/NOT IN subqu
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:2
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -76,4 +75,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.UDFArgumentException: IN/NOT IN
subquery with aggregate returning zero result. Currently this is not supported.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:2
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/subquery_scalar_corr_multi_rows.q.out
b/ql/src/test/results/clientnegative/subquery_scalar_corr_multi_rows.q.out
index 842e6a59cc9..362d3e70224 100644
--- a/ql/src/test/results/clientnegative/subquery_scalar_corr_multi_rows.q.out
+++ b/ql/src/test/results/clientnegative/subquery_scalar_corr_multi_rows.q.out
@@ -22,8 +22,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.UDFArgumentException: Scalar subquery
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 4] killed/failed due
to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:2
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
4, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -40,4 +39,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.UDFArgumentException: Scalar
subquery expression returns more than one row.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 4] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:2
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 4] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git
a/ql/src/test/results/clientnegative/subquery_scalar_multi_rows.q.out
b/ql/src/test/results/clientnegative/subquery_scalar_multi_rows.q.out
index e576bec712f..defb51fd0c5 100644
--- a/ql/src/test/results/clientnegative/subquery_scalar_multi_rows.q.out
+++ b/ql/src/test/results/clientnegative/subquery_scalar_multi_rows.q.out
@@ -27,8 +27,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.UDFArgumentException: Scalar subquery
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:2
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators:
org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.hive.ql.exec.UDFArgumentException [...]
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators: org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.hive.ql.exec.UDFArgumentException: Scalar subquery
expression returns more than one row.
@@ -49,4 +48,4 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.h
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.UDFArgumentException: Scalar
subquery expression returns more than one row.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:2
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/udf_test_error_reduce.q.out
b/ql/src/test/results/clientnegative/udf_test_error_reduce.q.out
index 97187c61fe8..7dee35781f7 100644
--- a/ql/src/test/results/clientnegative/udf_test_error_reduce.q.out
+++ b/ql/src/test/results/clientnegative/udf_test_error_reduce.q.out
@@ -16,5 +16,5 @@ PREHOOK: Input: default@src
Status: Failed
Vertex re-running, vertexName=Map 1, vertexId=vertex_#ID#
Vertex failed, vertexName=Map 1, vertexId=vertex_#ID#, diagnostics=[Vertex
vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE, Vertex vertex_#ID#
[Map 1] failed as task task_#ID# failed after vertex succeeded.]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
-FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex re-running, vertexName=Map
1, vertexId=vertex_#ID#Vertex failed, vertexName=Map 1, vertexId=vertex_#ID#,
diagnostics=[Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE,
Vertex vertex_#ID# [Map 1] failed as task task_#ID# failed after vertex
succeeded.]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
+FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex re-running, vertexName=Map
1, vertexId=vertex_#ID#Vertex failed, vertexName=Map 1, vertexId=vertex_#ID#,
diagnostics=[Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE,
Vertex vertex_#ID# [Map 1] failed as task task_#ID# failed after vertex
succeeded.]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
diff --git a/ql/src/test/results/clientnegative/update_notnull_constraint.q.out
b/ql/src/test/results/clientnegative/update_notnull_constraint.q.out
index f554da6e624..6771a568f62 100644
--- a/ql/src/test/results/clientnegative/update_notnull_constraint.q.out
+++ b/ql/src/test/results/clientnegative/update_notnull_constraint.q.out
@@ -37,8 +37,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-[Masked Vertex killed due to OTHER_VERTEX_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:2
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: Either
CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
@@ -47,4 +46,4 @@ Caused by:
org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError: E
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.exec.errors.DataConstraintViolationError:
Either CHECK or NOT NULL constraint violated!
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE][Masked
Vertex killed due to OTHER_VERTEX_FAILURE]DAG did not succeed due to
VERTEX_FAILURE. failedVertices:1 killedVertices:2
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE][Masked Vertex killed due to OTHER_VERTEX_FAILURE]DAG did
not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:#Masked#
diff --git a/ql/src/test/results/clientpositive/llap/retry_failure.q.out
b/ql/src/test/results/clientpositive/llap/retry_failure.q.out
index 6edcb06b9a6..be45d6697e0 100644
--- a/ql/src/test/results/clientpositive/llap/retry_failure.q.out
+++ b/ql/src/test/results/clientpositive/llap/retry_failure.q.out
@@ -42,7 +42,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.h
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE():
assertion failed.
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators:
org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.hive.ql.metadata.HiveException: A [...]
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators: org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE(): assertion
failed.
@@ -63,7 +63,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
org.apache.hadoop.h
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE():
assertion failed.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
PREHOOK: query: select assert_true(2 > a) from tx_n1 group by a
PREHOOK: type: QUERY
PREHOOK: Input: default@tx_n1
@@ -95,7 +95,7 @@ Caused by: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE():
assertion failed.
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Map 1,
vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException:
Hive Runtime Error while processing row
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while
processing row
@@ -112,7 +112,7 @@ Caused by:
org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE():
assertion failed.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Map 1] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
PREHOOK: query: select assert_true(2 > a), assert_true("default" = "default")
from tx_n1
PREHOOK: type: QUERY
PREHOOK: Input: default@tx_n1
diff --git a/ql/src/test/results/clientpositive/llap/retry_failure_oom.q.out
b/ql/src/test/results/clientpositive/llap/retry_failure_oom.q.out
index 8427f6ecaf9..b0cac86e448 100644
--- a/ql/src/test/results/clientpositive/llap/retry_failure_oom.q.out
+++ b/ql/src/test/results/clientpositive/llap/retry_failure_oom.q.out
@@ -30,7 +30,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
@@ -39,7 +39,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
#### A masked pattern was here ####
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
PREHOOK: query: select assert_true_oom(2 > a) from tx group by a
PREHOOK: type: QUERY
PREHOOK: Input: default@tx
diff --git
a/ql/src/test/results/clientpositive/llap/retry_failure_reorder.q.out
b/ql/src/test/results/clientpositive/llap/retry_failure_reorder.q.out
index 5622db6b710..1fa66d1ecbc 100644
--- a/ql/src/test/results/clientpositive/llap/retry_failure_reorder.q.out
+++ b/ql/src/test/results/clientpositive/llap/retry_failure_reorder.q.out
@@ -333,7 +333,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 4] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
4, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
@@ -342,7 +342,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
#### A masked pattern was here ####
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 4] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 4] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
PREHOOK: query: select assert_true_oom(200000 > sum(u*v*w)) from tu
join tv on (tu.id_uv=tv.id_uv)
join tw on (tu.id_uw=tw.id_uw)
diff --git
a/ql/src/test/results/clientpositive/llap/retry_failure_stat_changes.q.out
b/ql/src/test/results/clientpositive/llap/retry_failure_stat_changes.q.out
index 1b6b4bf2d59..4e42d8bccaa 100644
--- a/ql/src/test/results/clientpositive/llap/retry_failure_stat_changes.q.out
+++ b/ql/src/test/results/clientpositive/llap/retry_failure_stat_changes.q.out
@@ -289,7 +289,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
@@ -298,7 +298,7 @@ Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
#### A masked pattern was here ####
Caused by:
org.apache.hadoop.hive.ql.exec.mapjoin.MapJoinMemoryExhaustionError:
assert_true_oom: assertion failed; Simulated OOM
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
PREHOOK: query: select assert_true_oom(2000 > sum(u*p)) from tx_n2 join px on
(tx_n2.a=px.a) where u<10 and p>2
PREHOOK: type: QUERY
PREHOOK: Input: default@px
diff --git a/ql/src/test/results/clientpositive/llap/vector_retry_failure.q.out
b/ql/src/test/results/clientpositive/llap/vector_retry_failure.q.out
index dff85fcf803..d364964481f 100644
--- a/ql/src/test/results/clientpositive/llap/vector_retry_failure.q.out
+++ b/ql/src/test/results/clientpositive/llap/vector_retry_failure.q.out
@@ -156,7 +156,7 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE():
assertion failed.
#### A masked pattern was here ####
]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]
-DAG did not succeed due to VERTEX_FAILURE. failedVertices:1 killedVertices:0
+DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
FAILED: Execution Error, return code 2 from
org.apache.hadoop.hive.ql.exec.tez.TezTask. Vertex failed, vertexName=Reducer
2, vertexId=vertex_#ID#, diagnostics=[Task failed, taskId=task_#ID#,
diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task (
failure ) : attempt_#ID#:java.lang.RuntimeException:
java.lang.RuntimeException: Hive Runtime Error while closing operators:
ASSERT_TRUE(): assertion failed.
#### A masked pattern was here ####
Caused by: java.lang.RuntimeException: Hive Runtime Error while closing
operators: ASSERT_TRUE(): assertion failed.
@@ -169,7 +169,7 @@ Caused by: java.lang.RuntimeException: Hive Runtime Error
while closing operator
#### A masked pattern was here ####
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: ASSERT_TRUE():
assertion failed.
#### A masked pattern was here ####
-]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:0
+]], Vertex did not succeed due to OWN_TASK_FAILURE, failedTasks:1
killedTasks:0, Vertex vertex_#ID# [Reducer 2] killed/failed due
to:OWN_TASK_FAILURE]DAG did not succeed due to VERTEX_FAILURE. failedVertices:1
killedVertices:#Masked#
PREHOOK: query: select assert_true(2 > a) from tx_n0 group by a
PREHOOK: type: QUERY
PREHOOK: Input: default@tx_n0