diff --git a/core/trino-main/src/test/java/io/trino/type/TestArrayOperators.java b/core/trino-main/src/test/java/io/trino/type/TestArrayOperators.java index c6f3bd6ac1f1..8fbfef77a2a7 100644 --- a/core/trino-main/src/test/java/io/trino/type/TestArrayOperators.java +++ b/core/trino-main/src/test/java/io/trino/type/TestArrayOperators.java @@ -13,19 +13,13 @@ */ package io.trino.type; -import com.fasterxml.jackson.core.JsonParser; -import com.fasterxml.jackson.databind.json.JsonMapper; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.primitives.Ints; -import io.airlift.json.JsonMapperProvider; import io.airlift.slice.DynamicSliceOutput; import io.airlift.slice.Slice; -import io.airlift.slice.SliceOutput; import io.trino.metadata.InternalFunctionBundle; -import io.trino.plugin.base.util.JsonTypeUtil; -import io.trino.spi.TrinoException; import io.trino.spi.block.ArrayBlockBuilder; import io.trino.spi.block.Block; import io.trino.spi.function.LiteralParameters; @@ -42,14 +36,8 @@ import org.junit.jupiter.api.TestInstance; import org.junit.jupiter.api.parallel.Execution; -import java.io.IOException; -import java.io.InputStreamReader; -import java.io.OutputStream; import java.util.Collections; -import static com.fasterxml.jackson.databind.DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS; -import static com.fasterxml.jackson.databind.SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS; -import static com.google.common.base.Preconditions.checkState; import static io.trino.block.BlockSerdeUtil.writeBlock; import static io.trino.operator.scalar.BlockSet.MAX_FUNCTION_MEMORY; import static io.trino.spi.StandardErrorCode.AMBIGUOUS_FUNCTION_CALL; @@ -90,7 +78,6 @@ import static java.lang.Double.POSITIVE_INFINITY; import static java.lang.Math.toIntExact; import static java.lang.String.format; -import static java.nio.charset.StandardCharsets.UTF_8; import static java.util.Arrays.asList; import static java.util.Collections.emptyList; import static java.util.Collections.singletonList; @@ -129,35 +116,6 @@ public static Slice uncheckedToJson(@SqlType("varchar(x)") Slice slice) return slice; } - // TODO (https://github.com/trinodb/trino/issues/28867) remove when json_parse and JSON literals are no longer lossy. - @ScalarFunction("json_literal_fixed") - @LiteralParameters("x") - @SqlType(StandardTypes.JSON) - public static Slice workaroundBrokenJsonLiteralParsing(@SqlType("varchar(x)") Slice slice) - { - // This is copy of JsonTypeUtil.jsonParse with addition of USE_BIG_DECIMAL_FOR_FLOATS to prevent numeric precision loss during JSON parsing. - JsonMapper sortingMapper = new JsonMapperProvider().get() - .rebuild() - .configure(ORDER_MAP_ENTRIES_BY_KEYS, true) - .configure(USE_BIG_DECIMAL_FOR_FLOATS, true) - .build(); - - Slice json; - try (JsonParser parser = sortingMapper.createParser(new InputStreamReader(slice.getInput(), UTF_8))) { - SliceOutput output = new DynamicSliceOutput(slice.length()); - sortingMapper.writeValue((OutputStream) output, sortingMapper.readValue(parser, Object.class)); - checkState(parser.nextToken() == null, "Found characters after the expected end of input"); - json = output.slice(); - } - catch (IOException | RuntimeException e) { - throw new TrinoException(INVALID_FUNCTION_ARGUMENT, format("Cannot convert value to JSON: '%s'", slice.toStringUtf8()), e); - } - - Slice lossyJson = JsonTypeUtil.jsonParse(slice); - checkState(!json.equals(lossyJson), "json_literal_fixed is used unnecessarily here, or jsonParse has been fixed"); - return json; - } - @Test public void testStackRepresentation() { @@ -634,7 +592,7 @@ public void testJsonToArraySmoke() assertTrinoExceptionThrownBy(() -> assertions.expression("CAST(a AS array(INTEGER))") .binding("a", "JSON '[1234567890123.456]'").evaluate()) - .hasMessage("Cannot cast to array(integer). Out of range for integer: 1.234567890123456E12\n[1.234567890123456E12]") + .hasMessage("Cannot cast to array(integer). Out of range for integer: 1.234567890123456E12\n[1234567890123.456]") .hasErrorCode(INVALID_CAST_ARGUMENT); assertThat(assertions.expression("CAST(a AS array(DECIMAL(10,5)))") @@ -1133,11 +1091,10 @@ public void testCastJsonToArrayDecimal() .matches("CAST(ARRAY[DECIMAL '12345.88'] AS ARRAY(DECIMAL(7,2)))"); // array with large decimal - // TODO precision loss! assertThat(assertions.expression("cast(a as ARRAY(DECIMAL(38,8)))") .binding("a", "JSON '[123456789012345678901234567890.12345678]'")) .hasType(new ArrayType(createDecimalType(38, 8))) - .matches("CAST(ARRAY[DECIMAL '123456789012345680000000000000.00000000'] AS ARRAY(DECIMAL(38,8)))"); + .matches("CAST(ARRAY[DECIMAL '123456789012345678901234567890.12345678'] AS ARRAY(DECIMAL(38,8)))"); // non-array JSON should fail assertTrinoExceptionThrownBy(() -> assertions.expression("cast(a as ARRAY(DECIMAL(10,3)))") @@ -1186,7 +1143,7 @@ public void testCastJsonToArrayNumber() .matches("ARRAY[NUMBER '1', NUMBER '2.5', NUMBER '3.14159']"); assertThat(assertions.expression("CAST(a AS ARRAY(NUMBER))") - .binding("a", "json_literal_fixed('[12345678901234567890.123456789012345678, 123456789012345678901234567890.123456789012345678901234567890]')")) + .binding("a", "JSON '[12345678901234567890.123456789012345678, 123456789012345678901234567890.123456789012345678901234567890]'")) .hasType(new ArrayType(NUMBER)) .matches("ARRAY[NUMBER '12345678901234567890.123456789012345678', NUMBER '123456789012345678901234567890.123456789012345678901234567890']"); diff --git a/core/trino-main/src/test/java/io/trino/type/TestJsonOperators.java b/core/trino-main/src/test/java/io/trino/type/TestJsonOperators.java index 8ce916a9814f..465d6854f5a2 100644 --- a/core/trino-main/src/test/java/io/trino/type/TestJsonOperators.java +++ b/core/trino-main/src/test/java/io/trino/type/TestJsonOperators.java @@ -13,23 +13,10 @@ */ package io.trino.type; -import com.fasterxml.jackson.core.JsonParser; -import com.fasterxml.jackson.databind.json.JsonMapper; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; -import io.airlift.json.JsonMapperProvider; -import io.airlift.slice.DynamicSliceOutput; -import io.airlift.slice.Slice; -import io.airlift.slice.SliceOutput; -import io.trino.metadata.InternalFunctionBundle; -import io.trino.plugin.base.util.JsonTypeUtil; -import io.trino.spi.TrinoException; -import io.trino.spi.function.LiteralParameters; -import io.trino.spi.function.ScalarFunction; -import io.trino.spi.function.SqlType; import io.trino.spi.type.ArrayType; import io.trino.spi.type.RowType; -import io.trino.spi.type.StandardTypes; import io.trino.sql.query.QueryAssertions; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; @@ -37,13 +24,6 @@ import org.junit.jupiter.api.TestInstance; import org.junit.jupiter.api.parallel.Execution; -import java.io.IOException; -import java.io.InputStreamReader; -import java.io.OutputStream; - -import static com.fasterxml.jackson.databind.DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS; -import static com.fasterxml.jackson.databind.SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS; -import static com.google.common.base.Preconditions.checkState; import static io.trino.spi.StandardErrorCode.INVALID_CAST_ARGUMENT; import static io.trino.spi.StandardErrorCode.INVALID_FUNCTION_ARGUMENT; import static io.trino.spi.StandardErrorCode.INVALID_LITERAL; @@ -69,7 +49,6 @@ import static java.lang.Double.NEGATIVE_INFINITY; import static java.lang.Double.POSITIVE_INFINITY; import static java.lang.String.format; -import static java.nio.charset.StandardCharsets.UTF_8; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.jupiter.api.TestInstance.Lifecycle.PER_CLASS; import static org.junit.jupiter.api.parallel.ExecutionMode.CONCURRENT; @@ -78,17 +57,12 @@ @Execution(CONCURRENT) public class TestJsonOperators { - // Some of the tests in this class are expected to fail when coercion between primitive Trino types changes behavior - private QueryAssertions assertions; @BeforeAll public void init() { assertions = new QueryAssertions(); - assertions.addFunctions(InternalFunctionBundle.builder() - .scalars(TestJsonOperators.class) - .build()); } @AfterAll @@ -98,35 +72,6 @@ public void teardown() assertions = null; } - // TODO (https://github.com/trinodb/trino/issues/28867) remove when json_parse and JSON literals are no longer lossy. - @ScalarFunction("json_literal_fixed") - @LiteralParameters("x") - @SqlType(StandardTypes.JSON) - public static Slice workaroundBrokenJsonLiteralParsing(@SqlType("varchar(x)") Slice slice) - { - // This is copy of JsonTypeUtil.jsonParse with addition of USE_BIG_DECIMAL_FOR_FLOATS to prevent numeric precision loss during JSON parsing. - JsonMapper sortingMapper = new JsonMapperProvider().get() - .rebuild() - .configure(ORDER_MAP_ENTRIES_BY_KEYS, true) - .configure(USE_BIG_DECIMAL_FOR_FLOATS, true) - .build(); - - Slice json; - try (JsonParser parser = sortingMapper.createParser(new InputStreamReader(slice.getInput(), UTF_8))) { - SliceOutput output = new DynamicSliceOutput(slice.length()); - sortingMapper.writeValue((OutputStream) output, sortingMapper.readValue(parser, Object.class)); - checkState(parser.nextToken() == null, "Found characters after the expected end of input"); - json = output.slice(); - } - catch (IOException | RuntimeException e) { - throw new TrinoException(INVALID_FUNCTION_ARGUMENT, format("Cannot convert value to JSON: '%s'", slice.toStringUtf8()), e); - } - - Slice lossyJson = JsonTypeUtil.jsonParse(slice); - checkState(!json.equals(lossyJson), "json_literal_fixed is used unnecessarily here, or jsonParse has been fixed"); - return json; - } - @Test public void testCastToBigint() { @@ -759,11 +704,10 @@ public void testCastToDecimal() .hasType(createDecimalType(10, 3)) .isEqualTo(decimal("128.000", createDecimalType(10, 3))); - // TODO precision loss! assertThat(assertions.expression("cast(a as DECIMAL(38,8))") .binding("a", "JSON '123456789012345678901234567890.12345678'")) .hasType(createDecimalType(38, 8)) - .isEqualTo(decimal("123456789012345680000000000000.00000000", createDecimalType(38, 8))); + .isEqualTo(decimal("123456789012345678901234567890.12345678", createDecimalType(38, 8))); assertThat(assertions.expression("cast(a as DECIMAL(38,8))") .binding("a", "cast(DECIMAL '123456789012345678901234567890.12345678' as JSON)")) @@ -850,10 +794,10 @@ public void testCastToBoolean() .binding("a", "JSON '1e-324'")) .isEqualTo(false); - // overflow - assertTrinoExceptionThrownBy(() -> assertions.expression("cast(a as BOOLEAN)") - .binding("a", "JSON '1e309'").evaluate()) - .hasErrorCode(INVALID_CAST_ARGUMENT); + // overflow if parsed as double + assertThat(assertions.expression("cast(a as BOOLEAN)") + .binding("a", "JSON '1e309'")) + .isEqualTo(true); assertThat(assertions.expression("cast(a as BOOLEAN)") .binding("a", "JSON 'true'")) @@ -1311,7 +1255,7 @@ public void testCastToNumber() .matches("NUMBER '12345678901234567890123456789012345678'"); assertThat(assertions.expression("cast(a as NUMBER)") - .binding("a", "json_literal_fixed('123456789012345678901234567890.123456789012345678901234567890')")) + .binding("a", "JSON '123456789012345678901234567890.123456789012345678901234567890'")) .matches("NUMBER '123456789012345678901234567890.123456789012345678901234567890'"); assertThat(assertions.expression("cast(a as NUMBER)") @@ -1319,11 +1263,11 @@ public void testCastToNumber() .matches("NUMBER '128.9'"); assertThat(assertions.expression("cast(a as NUMBER)") - .binding("a", "json_literal_fixed('1e-324')")) + .binding("a", "JSON '1e-324'")) .matches("NUMBER '1E-324'"); assertThat(assertions.expression("cast(a as NUMBER)") - .binding("a", "json_literal_fixed('1e308')")) + .binding("a", "JSON '1e308'")) .matches("NUMBER '1e308'"); assertThat(assertions.expression("cast(a as NUMBER)") diff --git a/core/trino-main/src/test/java/io/trino/type/TestMapOperators.java b/core/trino-main/src/test/java/io/trino/type/TestMapOperators.java index 7280ff1a3d7e..a252be513f26 100644 --- a/core/trino-main/src/test/java/io/trino/type/TestMapOperators.java +++ b/core/trino-main/src/test/java/io/trino/type/TestMapOperators.java @@ -691,7 +691,7 @@ public void testJsonToMap() assertTrinoExceptionThrownBy(() -> assertions.expression("cast(a as MAP(VARCHAR, INTEGER))") .binding("a", "JSON '{\"a\": 1234567890123.456}'").evaluate()) - .hasMessage("Cannot cast to map(varchar, integer). Out of range for integer: 1.234567890123456E12\n{\"a\":1.234567890123456E12}") + .hasMessage("Cannot cast to map(varchar, integer). Out of range for integer: 1.234567890123456E12\n{\"a\":1234567890123.456}") .hasErrorCode(INVALID_CAST_ARGUMENT); assertTrinoExceptionThrownBy(() -> assertions.expression("cast(a as MAP(BIGINT, BIGINT))") diff --git a/lib/trino-plugin-toolkit/pom.xml b/lib/trino-plugin-toolkit/pom.xml index 451bbd467eb5..dc08e628eb0e 100644 --- a/lib/trino-plugin-toolkit/pom.xml +++ b/lib/trino-plugin-toolkit/pom.xml @@ -202,6 +202,19 @@ junit-jupiter-engine test + + + org.openjdk.jmh + jmh-core + test + + + + org.openjdk.jmh + jmh-generator-annprocess + test + + diff --git a/lib/trino-plugin-toolkit/src/main/java/io/trino/plugin/base/util/JsonTypeUtil.java b/lib/trino-plugin-toolkit/src/main/java/io/trino/plugin/base/util/JsonTypeUtil.java index 40a6ab1c5ee9..a6c199e5001f 100644 --- a/lib/trino-plugin-toolkit/src/main/java/io/trino/plugin/base/util/JsonTypeUtil.java +++ b/lib/trino-plugin-toolkit/src/main/java/io/trino/plugin/base/util/JsonTypeUtil.java @@ -36,6 +36,7 @@ import java.util.StringJoiner; import static com.fasterxml.jackson.core.JsonFactory.Feature.CANONICALIZE_FIELD_NAMES; +import static com.fasterxml.jackson.databind.DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS; import static com.fasterxml.jackson.databind.SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS; import static com.google.common.base.Preconditions.checkState; import static io.trino.plugin.base.util.JsonUtils.jsonFactoryBuilder; @@ -52,6 +53,7 @@ public final class JsonTypeUtil private static final JsonMapper SORTED_MAPPER = new JsonMapperProvider().get() .rebuild() .configure(ORDER_MAP_ENTRIES_BY_KEYS, true) + .configure(USE_BIG_DECIMAL_FOR_FLOATS, true) .build(); private JsonTypeUtil() {} diff --git a/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/BenchmarkJsonTypeUtil.java b/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/BenchmarkJsonTypeUtil.java new file mode 100644 index 000000000000..c20adaa237b4 --- /dev/null +++ b/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/BenchmarkJsonTypeUtil.java @@ -0,0 +1,214 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package io.trino.plugin.base.util; + +import io.airlift.slice.DynamicSliceOutput; +import io.airlift.slice.Slice; +import io.airlift.slice.SliceOutput; +import org.junit.jupiter.api.Test; +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.OutputTimeUnit; +import org.openjdk.jmh.annotations.Param; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.Setup; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.Warmup; +import org.openjdk.jmh.runner.RunnerException; + +import java.io.IOException; +import java.io.InputStream; +import java.util.concurrent.ThreadLocalRandom; + +import static io.airlift.slice.Slices.utf8Slice; +import static io.trino.jmh.Benchmarks.benchmark; +import static io.trino.plugin.base.util.JsonTypeUtil.jsonParse; +import static java.lang.String.format; +import static java.nio.charset.StandardCharsets.UTF_8; +import static java.util.concurrent.TimeUnit.MILLISECONDS; +import static java.util.concurrent.TimeUnit.NANOSECONDS; +import static org.openjdk.jmh.annotations.Mode.AverageTime; + +@State(Scope.Thread) +@OutputTimeUnit(NANOSECONDS) +@BenchmarkMode(AverageTime) +@Fork(3) +@Warmup(iterations = 5, time = 500, timeUnit = MILLISECONDS) +@Measurement(iterations = 10, time = 500, timeUnit = MILLISECONDS) +public class BenchmarkJsonTypeUtil +{ + @Benchmark + public Slice benchmarkJsonParse(BenchmarkData data) + { + return jsonParse(data.getJsonSlice()); + } + + @State(Scope.Thread) + public static class BenchmarkData + { + @Param + private JsonType jsonType; + + private Slice jsonSlice; + + @Setup + public void setup() + { + jsonSlice = utf8Slice(switch (jsonType) { + case SCALAR_STRING -> "\"test string value\""; + case SCALAR_NUMBER -> "123456.789"; + case ARRAY_SMALL -> generateArray(10); + case ARRAY_LARGE -> generateArray(100); + case OBJECT_SMALL -> generateObject(10); + case OBJECT_LARGE -> generateObject(100); + case NESTED_SHALLOW -> generateNested(3, 5); + case NESTED_DEEP -> generateNested(10, 3); + case HIGHLY_NESTED_REAL_WORLD -> loadResourceFile("io/trino/plugin/base/util/highly-nested.json"); + }); + } + + private static String loadResourceFile(String resourcePath) + { + try (InputStream inputStream = BenchmarkJsonTypeUtil.class.getClassLoader().getResourceAsStream(resourcePath)) { + if (inputStream == null) { + throw new IllegalArgumentException(format("Resource not found: %s", resourcePath)); + } + return new String(inputStream.readAllBytes(), UTF_8); + } + catch (IOException e) { + throw new RuntimeException(format("Failed to load resource: %s", resourcePath), e); + } + } + + private static String generateArray(int size) + { + try (SliceOutput output = new DynamicSliceOutput(size * 20)) { + output.appendByte('['); + for (int i = 0; i < size; i++) { + if (i > 0) { + output.appendByte(','); + } + output.appendBytes(generateRandomValue().getBytes(UTF_8)); + } + output.appendByte(']'); + return output.slice().toStringUtf8(); + } + catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static String generateObject(int size) + { + try (SliceOutput output = new DynamicSliceOutput(size * 30)) { + output.appendByte('{'); + for (int i = 0; i < size; i++) { + if (i > 0) { + output.appendByte(','); + } + output.appendBytes(("\"key" + i + "\":").getBytes(UTF_8)); + output.appendBytes(generateRandomValue().getBytes(UTF_8)); + } + output.appendByte('}'); + return output.slice().toStringUtf8(); + } + catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static String generateNested(int depth, int width) + { + if (depth == 0) { + return generateRandomValue(); + } + try (SliceOutput output = new DynamicSliceOutput(200)) { + output.appendByte('{'); + for (int i = 0; i < width; i++) { + if (i > 0) { + output.appendByte(','); + } + output.appendBytes(("\"field" + i + "\":").getBytes(UTF_8)); + if (i == 0) { + output.appendBytes(generateNested(depth - 1, width).getBytes(UTF_8)); + } + else { + output.appendBytes(generateRandomValue().getBytes(UTF_8)); + } + } + output.appendByte('}'); + return output.slice().toStringUtf8(); + } + catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static String generateRandomValue() + { + return switch (ThreadLocalRandom.current().nextInt(3)) { + case 0 -> String.valueOf(ThreadLocalRandom.current().nextLong()); + case 1 -> String.valueOf(ThreadLocalRandom.current().nextDouble()); + default -> "\"" + randomString(10) + "\""; + }; + } + + private static String randomString(int length) + { + String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; + StringBuilder builder = new StringBuilder(length); + for (int i = 0; i < length; i++) { + builder.append(characters.charAt(ThreadLocalRandom.current().nextInt(characters.length()))); + } + return builder.toString(); + } + + public Slice getJsonSlice() + { + return jsonSlice; + } + } + + public enum JsonType + { + SCALAR_STRING, + SCALAR_NUMBER, + ARRAY_SMALL, + ARRAY_LARGE, + OBJECT_SMALL, + OBJECT_LARGE, + NESTED_SHALLOW, + NESTED_DEEP, + HIGHLY_NESTED_REAL_WORLD + } + + @Test + public void verify() + { + BenchmarkData data = new BenchmarkData(); + for (JsonType type : JsonType.values()) { + data.jsonType = type; + data.setup(); + new BenchmarkJsonTypeUtil().benchmarkJsonParse(data); + } + } + + static void main() + throws RunnerException + { + benchmark(BenchmarkJsonTypeUtil.class).run(); + } +} diff --git a/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/TestJsonTypeUtil.java b/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/TestJsonTypeUtil.java index 0a00561caf3f..29d614188c0a 100644 --- a/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/TestJsonTypeUtil.java +++ b/lib/trino-plugin-toolkit/src/test/java/io/trino/plugin/base/util/TestJsonTypeUtil.java @@ -70,11 +70,11 @@ void testJsonParseDecimal() assertThat(jsonParse(utf8Slice("1.0")).toStringUtf8()) .isEqualTo("1.0"); assertThat(jsonParse(utf8Slice("100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e-106")).toStringUtf8()) - .isEqualTo("10.0"); + .isEqualTo("10.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"); assertThat(jsonParse(utf8Slice("100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e-107")).toStringUtf8()) - .isEqualTo("1.0"); + .isEqualTo("1.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"); assertThat(jsonParse(utf8Slice("100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e-108")).toStringUtf8()) - .isEqualTo("0.1"); + .isEqualTo("0.100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"); } @Test @@ -83,8 +83,7 @@ void testJsonParseLargeNumber() assertThat(jsonParse(utf8Slice("12345678901234567890123456789012345678")).toStringUtf8()) .isEqualTo("12345678901234567890123456789012345678"); assertThat(jsonParse(utf8Slice("123456789012345678901234567890.12345678")).toStringUtf8()) - // TODO precision loss! Numbers are converted through floating-point instead of being preserved as strings - .isEqualTo("1.2345678901234568E29"); + .isEqualTo("123456789012345678901234567890.12345678"); } @Test @@ -104,13 +103,13 @@ void testJsonParseNumberWithTrailingZeros() assertThat(jsonParse(utf8Slice("7000000100000000")).toStringUtf8()) .isEqualTo("7000000100000000"); assertThat(jsonParse(utf8Slice("7010.00")).toStringUtf8()) - .isEqualTo("7010.0"); + .isEqualTo("7010.00"); assertThat(jsonParse(utf8Slice("7000000100000000.000000000000")).toStringUtf8()) - .isEqualTo("7.0000001E15"); + .isEqualTo("7000000100000000.000000000000"); assertThat(jsonParse(utf8Slice("7010.030")).toStringUtf8()) - .isEqualTo("7010.03"); + .isEqualTo("7010.030"); assertThat(jsonParse(utf8Slice("7000000100000000.0000030000000")).toStringUtf8()) - .isEqualTo("7.0000001E15"); + .isEqualTo("7000000100000000.0000030000000"); } @Test diff --git a/lib/trino-plugin-toolkit/src/test/resources/io/trino/plugin/base/util/highly-nested.json b/lib/trino-plugin-toolkit/src/test/resources/io/trino/plugin/base/util/highly-nested.json new file mode 100644 index 000000000000..a7c42c44a254 --- /dev/null +++ b/lib/trino-plugin-toolkit/src/test/resources/io/trino/plugin/base/util/highly-nested.json @@ -0,0 +1,73357 @@ +{ + "queryId" : "20260330_075902_00004_iggau", + "session" : { + "queryId" : "20260330_075902_00004_iggau", + "querySpan" : { + "traceparent" : "00-beb5bfefb43379eb31a72c689b0eb7d5-07e474fa3560ec54-03" + }, + "transactionId" : "162d1ee8-e739-45c4-a6a4-05b1b15a79ba", + "clientTransactionSupport" : true, + "user" : "piotr", + "originalUser" : "piotr", + "setOriginalRoles" : [ ], + "groups" : [ ], + "originalUserGroups" : [ ], + "principal" : "piotr", + "enabledRoles" : [ ], + "source" : "trino-cli", + "catalog" : "tpch", + "schema" : "tiny", + "path" : { + "path" : [ { + "catalogName" : "system", + "schemaName" : "$query" + }, { + "catalogName" : "system", + "schemaName" : "builtin" + } ], + "rawPath" : "" + }, + "timeZoneKey" : 2103, + "locale" : "en_US", + "remoteUserAddress" : "127.0.0.1", + "userAgent" : "trino-cli", + "clientTags" : [ ], + "clientCapabilities" : [ "PATH", "PARAMETRIC_DATETIME", "SESSION_AUTHORIZATION" ], + "resourceEstimates" : { }, + "start" : "2026-03-30T07:59:02.874540Z", + "systemProperties" : { }, + "catalogProperties" : { }, + "catalogRoles" : { }, + "preparedStatements" : { }, + "protocolName" : "Trino", + "queryDataEncoding" : "json+zstd", + "timeZone" : "Europe/Warsaw" + }, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/query/20260330_075902_00004_iggau", + "fieldNames" : [ "acctbal", "name", "name", "partkey", "mfgr", "address", "phone", "comment" ], + "query" : "SELECT\n s.acctbal,\n s.name,\n n.name,\n p.partkey,\n p.mfgr,\n s.address,\n s.phone,\n s.comment\nFROM\n \"part\" p,\n \"supplier\" s,\n \"partsupp\" ps,\n \"nation\" n,\n \"region\" r\nWHERE\n p.partkey = ps.partkey\n AND s.suppkey = ps.suppkey\n AND p.size = 15\n AND p.type like '%BRASS'\n AND s.nationkey = n.nationkey\n AND n.regionkey = r.regionkey\n AND r.name = 'EUROPE'\n AND ps.supplycost = (\n SELECT\n min(ps.supplycost)\n FROM\n \"partsupp\" ps,\n \"supplier\" s,\n \"nation\" n,\n \"region\" r\n WHERE\n p.partkey = ps.partkey\n AND s.suppkey = ps.suppkey\n AND s.nationkey = n.nationkey\n AND n.regionkey = r.regionkey\n AND r.name = 'EUROPE'\n )\nORDER BY\n s.acctbal desc,\n n.name,\n s.name,\n p.partkey", + "queryStats" : { + "createTime" : "2026-03-30T07:59:02.882428Z", + "executionStartTime" : "2026-03-30T07:59:02.893004583Z", + "lastHeartbeat" : "2026-03-30T07:59:04.199067125Z", + "endTime" : "2026-03-30T07:59:04.199091875Z", + "elapsedTime" : "1.32s", + "queuedTime" : "218.17us", + "resourceWaitingTime" : "10.33ms", + "dispatchingTime" : "31.83us", + "executionTime" : "1.31s", + "analysisTime" : "10.29ms", + "planningTime" : "240.25ms", + "planningCpuTime" : "212.85ms", + "startingTime" : "5.32ms", + "finishingTime" : "117.77ms", + "totalTasks" : 56, + "runningTasks" : 0, + "completedTasks" : 56, + "failedTasks" : 0, + "totalDrivers" : 725, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 725, + "cumulativeUserMemory" : 6.5529259358651996E7, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "3.06MB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "3.06MB", + "peakTaskUserMemory" : "533.09kB", + "peakTaskRevocableMemory" : "0B", + "peakTaskTotalMemory" : "533.09kB", + "spilledDataSize" : "0B", + "scheduled" : true, + "progressPercentage" : 100.0, + "runningPercentage" : 0.0, + "totalScheduledTime" : "8.95s", + "failedScheduledTime" : "0.00ns", + "totalCpuTime" : "1.04s", + "failedCpuTime" : "0.00ns", + "totalBlockedTime" : "1.27m", + "fullyBlocked" : true, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 16636, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "failedPhysicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "435.27kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 17808, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "445.15kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 16636, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "53.21s", + "failedInputBlockedTime" : "0.00ns", + "outputDataSize" : "355B", + "failedOutputDataSize" : "0B", + "outputPositions" : 1, + "failedOutputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "failedOutputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "stageGcStatistics" : [ { + "stageId" : 0, + "tasks" : 1, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 1, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 2, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 3, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 12, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 19, + "tasks" : 1, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 4, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 7, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 13, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 14, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 5, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 6, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 8, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 9, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 15, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 16, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 10, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 11, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 17, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, { + "stageId" : 18, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + } ], + "dynamicFiltersStats" : { + "dynamicFilterDomainStats" : [ { + "dynamicFilterId" : "df_2206", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=20, {[7], ..., [95]}] ]", + "collectionDuration" : "897.66ms" + }, { + "dynamicFilterId" : "df_2207", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=4, {[249], ..., [1634]}] ]", + "collectionDuration" : "858.27ms" + }, { + "dynamicFilterId" : "df_2213", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=5, {[6], ..., [23]}] ]", + "collectionDuration" : "882.95ms" + }, { + "dynamicFilterId" : "df_2215", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=1, {[3]}] ]", + "collectionDuration" : "861.84ms" + }, { + "dynamicFilterId" : "df_2227", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=20, {[7], ..., [95]}] ]", + "collectionDuration" : "904.62ms" + }, { + "dynamicFilterId" : "df_2229", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=5, {[6], ..., [23]}] ]", + "collectionDuration" : "885.71ms" + }, { + "dynamicFilterId" : "df_2231", + "simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=1, {[3]}] ]", + "collectionDuration" : "803.84ms" + } ], + "lazyDynamicFilters" : 7, + "replicatedDynamicFilters" : 0, + "totalDynamicFilters" : 7, + "dynamicFiltersCompleted" : 7 + }, + "catalogMetadataMetrics" : { }, + "exchangeMetrics" : { }, + "operatorSummaries" : [ { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2000", + "operatorType" : "MergeOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.15kB", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 5, + "getOutputWall" : "382.71us", + "getOutputCpu" : "301.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0099999999999994E-4, + "max" : 3.0099999999999994E-4, + "p01" : 3.0099999999999994E-4, + "p05" : 3.0099999999999994E-4, + "p10" : 3.0099999999999994E-4, + "p25" : 3.0099999999999994E-4, + "p50" : 3.0099999999999994E-4, + "p75" : 3.0099999999999994E-4, + "p90" : 3.0099999999999994E-4, + "p95" : 3.0099999999999994E-4, + "p99" : 3.0099999999999994E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 4.0, + "max" : 4.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 4.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.19579916799999997, + "max" : 0.19579916799999997, + "p01" : 0.19579916799999997, + "p05" : 0.19579916799999997, + "p10" : 0.19579916799999997, + "p25" : 0.19579916799999997, + "p50" : 0.19579916799999997, + "p75" : 0.19579916799999997, + "p90" : 0.19579916799999997, + "p95" : 0.19579916799999997, + "p99" : 0.19579916799999997, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.827069999999999E-4, + "max" : 3.827069999999999E-4, + "p01" : 3.827069999999999E-4, + "p05" : 3.827069999999999E-4, + "p10" : 3.827069999999999E-4, + "p25" : 3.827069999999999E-4, + "p50" : 3.827069999999999E-4, + "p75" : 3.827069999999999E-4, + "p90" : 3.827069999999999E-4, + "p95" : 3.827069999999999E-4, + "p99" : 3.827069999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "195.80ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.59kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.59kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "34", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "91.79us", + "addInputCpu" : "92.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "355B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "355B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 498 + }, + "Scheduled time distribution (s)" : { + "min" : 9.349999999999998E-5, + "max" : 9.349999999999998E-5, + "p01" : 9.349999999999998E-5, + "p05" : 9.349999999999998E-5, + "p10" : 9.349999999999998E-5, + "p25" : 9.349999999999998E-5, + "p50" : 9.349999999999998E-5, + "p75" : 9.349999999999998E-5, + "p90" : 9.349999999999998E-5, + "p95" : 9.349999999999998E-5, + "p99" : 9.349999999999998E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 9.399999999999998E-5, + "max" : 9.399999999999998E-5, + "p01" : 9.399999999999998E-5, + "p05" : 9.399999999999998E-5, + "p10" : 9.399999999999998E-5, + "p25" : 9.399999999999998E-5, + "p50" : 9.399999999999998E-5, + "p75" : 9.399999999999998E-5, + "p90" : 9.399999999999998E-5, + "p95" : 9.399999999999998E-5, + "p99" : 9.399999999999998E-5, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 498 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.71us", + "finishCpu" : "2.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "34", + "operatorType" : "OutputSpoolingOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "32.63us", + "addInputCpu" : "31.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 8, + "getOutputWall" : "37.46us", + "getOutputCpu" : "47.00us", + "outputDataSize" : "355B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.159999999999999E-4, + "max" : 8.159999999999999E-4, + "p01" : 8.159999999999999E-4, + "p05" : 8.159999999999999E-4, + "p10" : 8.159999999999999E-4, + "p25" : 8.159999999999999E-4, + "p50" : 8.159999999999999E-4, + "p75" : 8.159999999999999E-4, + "p90" : 8.159999999999999E-4, + "p95" : 8.159999999999999E-4, + "p99" : 8.159999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 4.0, + "max" : 4.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 4.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 8.103329999999999E-4, + "max" : 8.103329999999999E-4, + "p01" : 8.103329999999999E-4, + "p05" : 8.103329999999999E-4, + "p10" : 8.103329999999999E-4, + "p25" : 8.103329999999999E-4, + "p50" : 8.103329999999999E-4, + "p75" : 8.103329999999999E-4, + "p90" : 8.103329999999999E-4, + "p95" : 8.103329999999999E-4, + "p99" : 8.103329999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "740.25us", + "finishCpu" : "738.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "773B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "773B", + "spilledDataSize" : "0B", + "info" : { + "spoolingWallTime" : "602.96us", + "spoolingCpuTime" : "0.00s", + "inlinedPages" : 0, + "inlinedSegments" : 0, + "inlinedPositions" : 0, + "inlinedRawBytes" : 0, + "inlinedEncodedBytes" : 0, + "spooledPages" : 1, + "spooledSegments" : 1, + "spooledPositions" : 4, + "spooledRawBytes" : 773, + "spooledEncodedBytes" : 711, + "encodedToRawBytesRatio" : 0.9197930142302717 + } + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1999", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.57kB", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 4, + "getOutputWall" : "236.30us", + "getOutputCpu" : "231.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.299999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.2999999999999994E-5, + "p90" : 6.4E-5, + "p95" : 7.299999999999999E-5, + "p99" : 7.299999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.18348320799999998, + "max" : 0.8806606249999999, + "p01" : 0.18348320799999998, + "p05" : 0.18348320799999998, + "p10" : 0.18717620799999998, + "p25" : 0.8773518749999999, + "p50" : 0.8795812499999999, + "p75" : 0.8800381249999999, + "p90" : 0.8800957909999999, + "p95" : 0.8806606249999999, + "p99" : 0.8806606249999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.45E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.462499999999999E-5, + "p90" : 6.524999999999999E-5, + "p95" : 7.45E-5, + "p99" : 7.45E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "9.16s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1416, + "averageBytesPerRequest" : 120, + "successfulRequestsCount" : 52, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 875.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 870.0, + "p75" : 875.0, + "p90" : 875.0, + "p95" : 875.0, + "p99" : 875.0, + "total" : 9 + } + } + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2572", + "operatorType" : "LocalMergeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 10.0, + "getOutputCalls" : 8, + "getOutputWall" : "779.71us", + "getOutputCpu" : "522.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.4999999999999995E-5, + "max" : 3.6499999999999993E-4, + "p01" : 5.4999999999999995E-5, + "p05" : 5.4999999999999995E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 5.4999999999999995E-5, + "p50" : 1.0199999999999999E-4, + "p75" : 3.6499999999999993E-4, + "p90" : 3.6499999999999993E-4, + "p95" : 3.6499999999999993E-4, + "p99" : 3.6499999999999993E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.180773375, + "max" : 0.8802491669999999, + "p01" : 0.180773375, + "p05" : 0.180773375, + "p10" : 0.180773375, + "p25" : 0.180773375, + "p50" : 0.8801394999999999, + "p75" : 0.8802491669999999, + "p90" : 0.8802491669999999, + "p95" : 0.8802491669999999, + "p99" : 0.8802491669999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 5.9291999999999994E-5, + "max" : 6.141669999999999E-4, + "p01" : 5.9291999999999994E-5, + "p05" : 5.9291999999999994E-5, + "p10" : 5.9291999999999994E-5, + "p25" : 5.9291999999999994E-5, + "p50" : 1.0624999999999998E-4, + "p75" : 6.141669999999999E-4, + "p90" : 6.141669999999999E-4, + "p95" : 6.141669999999999E-4, + "p99" : 6.141669999999999E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.94s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "11.32kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "11.32kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "2572", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "98.84us", + "addInputCpu" : "98.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 6.599999999999999E-5, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 4.0E-6, + "p50" : 6.999999999999999E-6, + "p75" : 3.0999999999999995E-5, + "p90" : 3.5E-5, + "p95" : 6.599999999999999E-5, + "p99" : 6.599999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4579999999999993E-6, + "max" : 6.6707E-5, + "p01" : 3.4579999999999993E-6, + "p05" : 3.4579999999999993E-6, + "p10" : 4.708999999999999E-6, + "p25" : 5.666999999999999E-6, + "p50" : 6.4589999999999995E-6, + "p75" : 3.191699999999999E-5, + "p90" : 3.3707999999999996E-5, + "p95" : 6.6707E-5, + "p99" : 6.6707E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "108.79us", + "finishCpu" : "107.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2001", + "operatorType" : "OrderByOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "493.83us", + "addInputCpu" : "152.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 45, + "getOutputWall" : "1.52ms", + "getOutputCpu" : "738.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.2999999999999995E-5, + "max" : 2.1999999999999998E-4, + "p01" : 4.2999999999999995E-5, + "p05" : 4.2999999999999995E-5, + "p10" : 5.099999999999999E-5, + "p25" : 5.7999999999999994E-5, + "p50" : 7.699999999999999E-5, + "p75" : 1.4499999999999997E-4, + "p90" : 1.5E-4, + "p95" : 2.1999999999999998E-4, + "p99" : 2.1999999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 4.4958999999999994E-5, + "max" : 8.074159999999999E-4, + "p01" : 4.4958999999999994E-5, + "p05" : 4.4958999999999994E-5, + "p10" : 5.924999999999999E-5, + "p25" : 7.279199999999999E-5, + "p50" : 1.42708E-4, + "p75" : 2.2574999999999996E-4, + "p90" : 4.552489999999999E-4, + "p95" : 8.074159999999999E-4, + "p99" : 8.074159999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 20, + "finishWall" : "311.00us", + "finishCpu" : "292.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "115.42kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "115.42kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "2572", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 3, + "addInputCalls" : 2, + "addInputWall" : "178.46us", + "addInputCpu" : "180.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 10.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 1149 + }, + "Scheduled time distribution (s)" : { + "min" : 2.7499999999999995E-6, + "max" : 1.0912499999999998E-4, + "p01" : 2.7499999999999995E-6, + "p05" : 2.7499999999999995E-6, + "p10" : 2.7499999999999995E-6, + "p25" : 2.7499999999999995E-6, + "p50" : 7.249999999999999E-5, + "p75" : 1.0912499999999998E-4, + "p90" : 1.0912499999999998E-4, + "p95" : 1.0912499999999998E-4, + "p99" : 1.0912499999999998E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 3 + }, + "CPU time distribution (s)" : { + "min" : 2.9999999999999997E-6, + "max" : 1.0899999999999998E-4, + "p01" : 2.9999999999999997E-6, + "p05" : 2.9999999999999997E-6, + "p10" : 2.9999999999999997E-6, + "p25" : 2.9999999999999997E-6, + "p50" : 7.5E-5, + "p75" : 1.0899999999999998E-4, + "p90" : 1.0899999999999998E-4, + "p95" : 1.0899999999999998E-4, + "p99" : 1.0899999999999998E-4, + "total" : 3 + }, + "exchangeSerializerInputBytes" : { + "total" : 1149 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "5.92us", + "finishCpu" : "7.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2725", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "24.39kB", + "internalNetworkInputPositions" : 1470, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 316240.0, + "getOutputCalls" : 27, + "getOutputWall" : "4.52ms", + "getOutputCpu" : "1.06ms", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.1599999999999996E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0099999999999999E-4, + "p75" : 2.0299999999999997E-4, + "p90" : 2.0999999999999998E-4, + "p95" : 2.1599999999999996E-4, + "p99" : 2.1599999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 343.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 144.0, + "p75" : 191.0, + "p90" : 251.0, + "p95" : 343.0, + "p99" : 343.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.16337891699999998, + "max" : 0.18318779199999996, + "p01" : 0.16337891699999998, + "p05" : 0.16337891699999998, + "p10" : 0.16460912399999997, + "p25" : 0.16759108199999997, + "p50" : 0.17079924999999999, + "p75" : 0.17521183299999998, + "p90" : 0.18010537399999998, + "p95" : 0.18318779199999996, + "p99" : 0.18318779199999996, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0016008759999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0491699999999998E-4, + "p75" : 8.802919999999999E-4, + "p90" : 9.684999999999999E-4, + "p95" : 0.0016008759999999998, + "p99" : 0.0016008759999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.05s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 6000, + "averageBytesPerRequest" : 921, + "successfulRequestsCount" : 108, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 178.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 169.0, + "p90" : 178.0, + "p95" : 178.0, + "p99" : 178.0, + "total" : 18 + } + } + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 181146.0, + "getOutputCalls" : 108, + "getOutputWall" : "2.16ms", + "getOutputCpu" : "881.00us", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 2.1499999999999997E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.9999999999999996E-5, + "p25" : 5.199999999999999E-5, + "p50" : 6.199999999999999E-5, + "p75" : 7.399999999999998E-5, + "p90" : 9.899999999999998E-5, + "p95" : 2.1499999999999997E-4, + "p99" : 2.1499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 109.0, + "max" : 138.0, + "p01" : 109.0, + "p05" : 109.0, + "p10" : 112.0, + "p25" : 116.0, + "p50" : 120.0, + "p75" : 136.0, + "p90" : 137.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.15045154099999997, + "max" : 0.16682604199999998, + "p01" : 0.15045154099999997, + "p05" : 0.15045154099999997, + "p10" : 0.152428458, + "p25" : 0.15679516599999999, + "p50" : 0.16072708299999997, + "p75" : 0.16287875, + "p90" : 0.16526154099999998, + "p95" : 0.16682604199999998, + "p99" : 0.16682604199999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4457999999999994E-5, + "max" : 9.209179999999998E-4, + "p01" : 3.4457999999999994E-5, + "p05" : 3.4457999999999994E-5, + "p10" : 4.037499999999999E-5, + "p25" : 5.591799999999999E-5, + "p50" : 7.020799999999999E-5, + "p75" : 2.9012699999999994E-4, + "p90" : 3.737929999999999E-4, + "p95" : 9.209179999999998E-4, + "p99" : 9.209179999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.91s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1998", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "120B", + "internalNetworkInputPositions" : 3, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 3, + "getOutputWall" : "188.29us", + "getOutputCpu" : "173.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.599999999999999E-5, + "p90" : 5.2999999999999994E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.013879999999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0016689579999999997, + "p50" : 0.003926915999999999, + "p75" : 0.010142583999999998, + "p90" : 0.013825415999999998, + "p95" : 0.013879999999999998, + "p99" : 0.013879999999999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.645799999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.7582999999999995E-5, + "p90" : 5.424999999999999E-5, + "p95" : 8.645799999999999E-5, + "p99" : 8.645799999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "59.63ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 96, + "averageBytesPerRequest" : 18, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 0, + "planNodeId" : "1997", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.85kB", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "1001B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 4, + "getOutputWall" : "204.17us", + "getOutputCpu" : "196.00us", + "outputDataSize" : "1001B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.899999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.2999999999999995E-5, + "p90" : 5.2999999999999994E-5, + "p95" : 5.899999999999999E-5, + "p99" : 5.899999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.08071483299999999, + "max" : 0.11020291599999998, + "p01" : 0.08071483299999999, + "p05" : 0.08071483299999999, + "p10" : 0.08396170799999998, + "p25" : 0.09991345799999998, + "p50" : 0.10027374999999998, + "p75" : 0.10716233399999998, + "p90" : 0.10994774999999998, + "p95" : 0.11020291599999998, + "p99" : 0.11020291599999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 6.062499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.545799999999999E-5, + "p90" : 5.574999999999999E-5, + "p95" : 6.062499999999999E-5, + "p99" : 6.062499999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.19s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1136, + "averageBytesPerRequest" : 142, + "successfulRequestsCount" : 52, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 112.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 104.0, + "p75" : 107.0, + "p90" : 112.0, + "p95" : 112.0, + "p99" : 112.0, + "total" : 9 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 3, + "planNodeId" : "758", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "9.33us", + "addInputCpu" : "12.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.07kB", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 59, + "getOutputWall" : "2.31ms", + "getOutputCpu" : "1.51ms", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4666999999999996E-5, + "max" : 0.0010032079999999998, + "p01" : 2.4666999999999996E-5, + "p05" : 2.4666999999999996E-5, + "p10" : 2.7000999999999994E-5, + "p25" : 2.9415999999999994E-5, + "p50" : 6.4543E-5, + "p75" : 5.326659999999999E-4, + "p90" : 5.40376E-4, + "p95" : 0.0010032079999999998, + "p99" : 0.0010032079999999998, + "total" : 12 + }, + "Filter CPU time" : { + "duration" : "961084.00ns" + }, + "Projection CPU time" : { + "duration" : "69874.00ns" + }, + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 5.049999999999999E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.5999999999999995E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 4.199999999999999E-5, + "p75" : 3.5999999999999997E-4, + "p90" : 3.7799999999999997E-4, + "p95" : 5.049999999999999E-4, + "p99" : 5.049999999999999E-4, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 20, + "finishWall" : "537.62us", + "finishCpu" : "283.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.41kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 1, + "planNodeId" : "517", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "8.46us", + "addInputCpu" : "13.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1001B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 32, + "getOutputWall" : "902.71us", + "getOutputCpu" : "795.00us", + "outputDataSize" : "1.02kB", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 3.4599999999999995E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.6999999999999996E-5, + "p25" : 2.8999999999999997E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 1.7299999999999998E-4, + "p90" : 1.7399999999999997E-4, + "p95" : 3.4599999999999995E-4, + "p99" : 3.4599999999999995E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.030099082999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.028892290999999997, + "p90" : 0.029907916999999996, + "p95" : 0.030099082999999995, + "p99" : 0.030099082999999995, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6707999999999996E-5, + "max" : 6.04876E-4, + "p01" : 2.6707999999999996E-5, + "p05" : 2.6707999999999996E-5, + "p10" : 2.9332999999999995E-5, + "p25" : 3.2124999999999995E-5, + "p50" : 4.483399999999999E-5, + "p75" : 1.7812499999999998E-4, + "p90" : 2.1941699999999996E-4, + "p95" : 6.04876E-4, + "p99" : 6.04876E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "117.75ms", + "finishCalls" : 27, + "finishWall" : "554.75us", + "finishCpu" : "282.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "PROBE_OUTER", + "logHistogramProbes" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1592, + "rleProbes" : 0, + "totalProbes" : 4 + } + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 1, + "planNodeId" : "1020", + "operatorType" : "NestedLoopBuildOperator", + "totalDrivers" : 3, + "addInputCalls" : 3, + "addInputWall" : "58.33us", + "addInputCpu" : "60.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.1899999999999998E-4, + "max" : 2.2899999999999996E-4, + "p01" : 1.1899999999999998E-4, + "p05" : 1.1899999999999998E-4, + "p10" : 1.1899999999999998E-4, + "p25" : 1.1899999999999998E-4, + "p50" : 1.7699999999999997E-4, + "p75" : 2.2899999999999996E-4, + "p90" : 2.2899999999999996E-4, + "p95" : 2.2899999999999996E-4, + "p99" : 2.2899999999999996E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.08528854199999998, + "max" : 0.12733858399999998, + "p01" : 0.08528854199999998, + "p05" : 0.08528854199999998, + "p10" : 0.08528854199999998, + "p25" : 0.08528854199999998, + "p50" : 0.12620712499999998, + "p75" : 0.12733858399999998, + "p90" : 0.12733858399999998, + "p95" : 0.12733858399999998, + "p99" : 0.12733858399999998, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2116699999999999E-4, + "max" : 2.3795799999999997E-4, + "p01" : 1.2116699999999999E-4, + "p05" : 1.2116699999999999E-4, + "p10" : 1.2116699999999999E-4, + "p25" : 1.2116699999999999E-4, + "p50" : 1.7750099999999997E-4, + "p75" : 2.3795799999999997E-4, + "p90" : 2.3795799999999997E-4, + "p95" : 2.3795799999999997E-4, + "p99" : 2.3795799999999997E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "338.84ms", + "finishCalls" : 6, + "finishWall" : "478.30us", + "finishCpu" : "465.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "152B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "152B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "21.33us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 5.4999999999999995E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.6999999999999996E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 3.899999999999999E-5, + "p90" : 4.599999999999999E-5, + "p95" : 5.4999999999999995E-5, + "p99" : 5.4999999999999995E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 9.624999999999998E-6, + "max" : 5.574899999999999E-5, + "p01" : 9.624999999999998E-6, + "p05" : 9.624999999999998E-6, + "p10" : 1.0832999999999998E-5, + "p25" : 1.7624999999999998E-5, + "p50" : 3.475E-5, + "p75" : 4.854199999999999E-5, + "p90" : 5.262499999999999E-5, + "p95" : 5.574899999999999E-5, + "p99" : 5.574899999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "355.01us", + "finishCpu" : "300.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 3, + "planNodeId" : "517", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 12, + "addInputWall" : "324.26us", + "addInputCpu" : "334.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "21.02kB", + "inputPositions" : 1196, + "sumSquaredInputPositions" : 120064.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "21.02kB", + "outputPositions" : 1196, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0099999999999994E-4, + "max" : 0.004376, + "p01" : 3.0099999999999994E-4, + "p05" : 3.0099999999999994E-4, + "p10" : 4.8099999999999993E-4, + "p25" : 5.839999999999999E-4, + "p50" : 6.639999999999999E-4, + "p75" : 0.0038239999999999993, + "p90" : 0.0038759999999999992, + "p95" : 0.004376, + "p99" : 0.004376, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 88.0, + "max" : 116.0, + "p01" : 88.0, + "p05" : 88.0, + "p10" : 89.0, + "p25" : 96.0, + "p50" : 99.0, + "p75" : 105.0, + "p90" : 114.0, + "p95" : 116.0, + "p99" : 116.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0014461669999999997, + "max" : 0.0021287499999999996, + "p01" : 0.0014461669999999997, + "p05" : 0.0014461669999999997, + "p10" : 0.0014584579999999997, + "p25" : 0.0015661669999999998, + "p50" : 0.0018084999999999998, + "p75" : 0.0020767499999999996, + "p90" : 0.0021122499999999995, + "p95" : 0.0021287499999999996, + "p99" : 0.0021287499999999996, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0032368339999999996, + "max" : 0.0056285829999999995, + "p01" : 0.0032368339999999996, + "p05" : 0.0032368339999999996, + "p10" : 0.0038102079999999994, + "p25" : 0.0043879159999999995, + "p50" : 0.004864125999999999, + "p75" : 0.005118332999999999, + "p90" : 0.005404291999999999, + "p95" : 0.0056285829999999995, + "p99" : 0.0056285829999999995, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "21.01ms", + "finishCalls" : 24, + "finishWall" : "55.02ms", + "finishCpu" : "16.90ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 27, + "addInputWall" : "2.29ms", + "addInputCpu" : "1.91ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 316240.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 6.749999999999999E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 1.3999999999999998E-5, + "p25" : 4.699999999999999E-5, + "p50" : 8.799999999999998E-5, + "p75" : 3.2799999999999995E-4, + "p90" : 4.539999999999999E-4, + "p95" : 6.749999999999999E-4, + "p99" : 6.749999999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 343.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 144.0, + "p75" : 191.0, + "p90" : 251.0, + "p95" : 343.0, + "p99" : 343.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.75E-6, + "max" : 0.0010208759999999998, + "p01" : 8.75E-6, + "p05" : 8.75E-6, + "p10" : 1.4749999999999998E-5, + "p25" : 4.7332999999999996E-5, + "p50" : 9.091599999999998E-5, + "p75" : 3.5320899999999994E-4, + "p90" : 4.617909999999999E-4, + "p95" : 0.0010208759999999998, + "p99" : 0.0010208759999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "296.75us", + "finishCpu" : "280.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "20", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 12, + "addInputCalls" : 108, + "addInputWall" : "8.35ms", + "addInputCpu" : "4.62ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 181146.0, + "getOutputCalls" : 183, + "getOutputWall" : "4.21ms", + "getOutputCpu" : "2.48ms", + "outputDataSize" : "21.02kB", + "outputPositions" : 1196, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 109.0, + "max" : 138.0, + "p01" : 109.0, + "p05" : 109.0, + "p10" : 112.0, + "p25" : 116.0, + "p50" : 120.0, + "p75" : 136.0, + "p90" : 137.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 12 + }, + "Group by hash update CPU time" : { + "duration" : "943165.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.5687499999999993E-4, + "max" : 0.002356124, + "p01" : 3.5687499999999993E-4, + "p05" : 3.5687499999999993E-4, + "p10" : 3.8958399999999995E-4, + "p25" : 6.056229999999999E-4, + "p50" : 0.00105654, + "p75" : 0.0014869569999999997, + "p90" : 0.0018755829999999997, + "p95" : 0.002356124, + "p99" : 0.002356124, + "total" : 12 + }, + "Accumulator update CPU time" : { + "duration" : "5687620.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.4999999999999994E-4, + "max" : 0.0012419999999999998, + "p01" : 3.4999999999999994E-4, + "p05" : 3.4999999999999994E-4, + "p10" : 3.8799999999999994E-4, + "p25" : 4.949999999999999E-4, + "p50" : 5.329999999999999E-4, + "p75" : 7.019999999999999E-4, + "p90" : 9.439999999999999E-4, + "p95" : 0.0012419999999999998, + "p99" : 0.0012419999999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "319.37us", + "finishCpu" : "301.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 4, + "planNodeId" : "758", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "1.57ms", + "addInputCpu" : "1.26ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 1557 + }, + "Scheduled time distribution (s)" : { + "min" : 6.249999999999999E-7, + "max" : 5.482499999999999E-4, + "p01" : 6.249999999999999E-7, + "p05" : 6.249999999999999E-7, + "p10" : 7.079999999999999E-7, + "p25" : 7.919999999999999E-7, + "p50" : 1.1249999999999998E-6, + "p75" : 4.148329999999999E-4, + "p90" : 5.051659999999999E-4, + "p95" : 5.482499999999999E-4, + "p99" : 5.482499999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.6599999999999994E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0E-6, + "p50" : 2.0E-6, + "p75" : 3.29E-4, + "p90" : 3.6599999999999995E-4, + "p95" : 4.6599999999999994E-4, + "p99" : 4.6599999999999994E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 1557 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "35.63us", + "finishCpu" : "29.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 2, + "planNodeId" : "1020", + "operatorType" : "NestedLoopJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "172.83us", + "addInputCpu" : "176.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.02kB", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 31, + "getOutputWall" : "1.01ms", + "getOutputCpu" : "362.00us", + "outputDataSize" : "1.07kB", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0E-6, + "max" : 2.49E-4, + "p01" : 2.0E-6, + "p05" : 2.0E-6, + "p10" : 2.9999999999999997E-6, + "p25" : 4.0E-6, + "p50" : 5.999999999999999E-6, + "p75" : 4.399999999999999E-5, + "p90" : 1.7199999999999998E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0030567079999999996, + "max" : 0.04788391599999999, + "p01" : 0.0030567079999999996, + "p05" : 0.0030567079999999996, + "p10" : 0.004034291, + "p25" : 0.0048012919999999995, + "p50" : 0.014931457999999998, + "p75" : 0.030360999999999996, + "p90" : 0.044827124999999995, + "p95" : 0.04788391599999999, + "p99" : 0.04788391599999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.5419999999999995E-6, + "max" : 4.5795799999999995E-4, + "p01" : 2.5419999999999995E-6, + "p05" : 2.5419999999999995E-6, + "p10" : 2.5419999999999995E-6, + "p25" : 3.4999999999999995E-6, + "p50" : 4.917E-6, + "p75" : 1.7150099999999998E-4, + "p90" : 3.53624E-4, + "p95" : 4.5795799999999995E-4, + "p99" : 4.5795799999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "218.18ms", + "finishCalls" : 12, + "finishWall" : "11.54us", + "finishCpu" : "9.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 0, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 3, + "getOutputWall" : "126.42us", + "getOutputCpu" : "121.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.0199999999999999E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.0199999999999999E-4, + "p90" : 1.0199999999999999E-4, + "p95" : 1.0199999999999999E-4, + "p99" : 1.0199999999999999E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.013589499999999997, + "max" : 0.050631290999999995, + "p01" : 0.013589499999999997, + "p05" : 0.013589499999999997, + "p10" : 0.013589499999999997, + "p25" : 0.013589499999999997, + "p50" : 0.025448041999999997, + "p75" : 0.050631290999999995, + "p90" : 0.050631290999999995, + "p95" : 0.050631290999999995, + "p99" : 0.050631290999999995, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0374999999999998E-5, + "max" : 1.0408299999999999E-4, + "p01" : 1.0374999999999998E-5, + "p05" : 1.0374999999999998E-5, + "p10" : 1.0374999999999998E-5, + "p25" : 1.0374999999999998E-5, + "p50" : 1.1957999999999998E-5, + "p75" : 1.0408299999999999E-4, + "p90" : 1.0408299999999999E-4, + "p95" : 1.0408299999999999E-4, + "p99" : 1.0408299999999999E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "89.67ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1989", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "5.57kB", + "internalNetworkInputPositions" : 20, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 114.0, + "getOutputCalls" : 13, + "getOutputWall" : "687.08us", + "getOutputCpu" : "485.00us", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.6699999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0899999999999998E-4, + "p90" : 1.1199999999999998E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 6.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.128471334, + "max" : 0.8006152079999999, + "p01" : 0.128471334, + "p05" : 0.128471334, + "p10" : 0.12999208299999998, + "p25" : 0.13204687499999998, + "p50" : 0.15154574999999998, + "p75" : 0.7998607079999999, + "p90" : 0.8002474579999999, + "p95" : 0.8006152079999999, + "p99" : 0.8006152079999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.9974999999999994E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.1558299999999998E-4, + "p90" : 1.7141599999999997E-4, + "p95" : 2.9974999999999994E-4, + "p99" : 2.9974999999999994E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.93s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 2312, + "averageBytesPerRequest" : 295, + "successfulRequestsCount" : 76, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 796.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 793.0, + "p75" : 796.0, + "p90" : 796.0, + "p95" : 796.0, + "p99" : 796.0, + "total" : 12 + } + } + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 16, + "getOutputWall" : "299.83us", + "getOutputCpu" : "184.00us", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 3.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 1.4999999999999997E-5, + "p75" : 2.5999999999999995E-5, + "p90" : 2.7999999999999996E-5, + "p95" : 3.699999999999999E-5, + "p99" : 3.699999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.11726629099999998, + "max" : 0.7975223749999999, + "p01" : 0.11726629099999998, + "p05" : 0.11726629099999998, + "p10" : 0.11796520799999999, + "p25" : 0.12213608299999998, + "p50" : 0.12655408299999998, + "p75" : 0.7936654989999998, + "p90" : 0.7971340839999999, + "p95" : 0.7975223749999999, + "p99" : 0.7975223749999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 9.462499999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 9.083E-6, + "p50" : 1.6248999999999996E-5, + "p75" : 3.2582999999999996E-5, + "p90" : 6.5835E-5, + "p95" : 9.462499999999998E-5, + "p99" : 9.462499999999998E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.16s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1988", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.63kB", + "internalNetworkInputPositions" : 16, + "inputDataSize" : "736B", + "inputPositions" : 16, + "sumSquaredInputPositions" : 30.0, + "getOutputCalls" : 10, + "getOutputWall" : "1.40ms", + "getOutputCpu" : "740.00us", + "outputDataSize" : "736B", + "outputPositions" : 16, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.2299999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.699999999999999E-5, + "p50" : 5.599999999999999E-5, + "p75" : 9.699999999999999E-5, + "p90" : 1.1899999999999998E-4, + "p95" : 1.2299999999999998E-4, + "p99" : 1.2299999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.08021416599999999, + "max" : 0.7744502089999998, + "p01" : 0.08021416599999999, + "p05" : 0.08021416599999999, + "p10" : 0.08116320899999999, + "p25" : 0.08386887599999998, + "p50" : 0.09693979199999998, + "p75" : 0.7730822499999999, + "p90" : 0.7742327499999999, + "p95" : 0.7744502089999998, + "p99" : 0.7744502089999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.928749999999999E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.829199999999999E-5, + "p50" : 5.9124999999999994E-5, + "p75" : 1.5362499999999998E-4, + "p90" : 2.0358299999999996E-4, + "p95" : 5.928749999999999E-4, + "p99" : 5.928749999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.80s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 288, + "averageBytesPerRequest" : 85, + "successfulRequestsCount" : 76, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 767.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 90.0, + "p90" : 762.0, + "p95" : 767.0, + "p99" : 767.0, + "total" : 13 + } + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "89.75us", + "addInputCpu" : "95.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1001B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1001B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.166999999999998E-6, + "max" : 4.607919999999999E-4, + "p01" : 8.166999999999998E-6, + "p05" : 8.166999999999998E-6, + "p10" : 9.291999999999998E-6, + "p25" : 1.0582999999999998E-5, + "p50" : 1.5457999999999997E-5, + "p75" : 1.4575E-4, + "p90" : 2.9033299999999993E-4, + "p95" : 4.607919999999999E-4, + "p99" : 4.607919999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.8799999999999995E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.6E-5, + "p75" : 1.4699999999999997E-4, + "p90" : 1.7599999999999997E-4, + "p95" : 2.8799999999999995E-4, + "p99" : 2.8799999999999995E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.04ms", + "finishCpu" : "753.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1616 + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 10, + "addInputWall" : "51.54us", + "addInputCpu" : "54.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "736B", + "inputPositions" : 16, + "sumSquaredInputPositions" : 30.0, + "getOutputCalls" : 38, + "getOutputWall" : "1.88ms", + "getOutputCpu" : "1.35ms", + "outputDataSize" : "1001B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 2.9699999999999996E-4, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 5.7999999999999994E-5, + "p25" : 1.1899999999999998E-4, + "p50" : 1.4299999999999998E-4, + "p75" : 1.8599999999999997E-4, + "p90" : 2.2099999999999998E-4, + "p95" : 2.9699999999999996E-4, + "p99" : 2.9699999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.041987791, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.026454832999999997, + "p50" : 0.030589292999999997, + "p75" : 0.038588873999999995, + "p90" : 0.041660332999999994, + "p95" : 0.041987791, + "p99" : 0.041987791, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.8541999999999995E-5, + "max" : 3.8799999999999994E-4, + "p01" : 2.8541999999999995E-5, + "p05" : 2.8541999999999995E-5, + "p10" : 8.149999999999999E-5, + "p25" : 1.2108199999999998E-4, + "p50" : 1.8933199999999998E-4, + "p75" : 2.7458399999999997E-4, + "p90" : 3.0754199999999995E-4, + "p95" : 3.8799999999999994E-4, + "p99" : 3.8799999999999994E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "327.43ms", + "finishCalls" : 36, + "finishWall" : "357.91us", + "finishCpu" : "328.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 11, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 65, + "rleProbes" : 0, + "totalProbes" : 10 + } + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 16, + "addInputWall" : "291.84us", + "addInputCpu" : "248.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.759999999999999E-4, + "max" : 0.0046619999999999995, + "p01" : 4.759999999999999E-4, + "p05" : 4.759999999999999E-4, + "p10" : 4.7699999999999994E-4, + "p25" : 6.559999999999999E-4, + "p50" : 8.329999999999999E-4, + "p75" : 0.0036629999999999996, + "p90" : 0.0038209999999999993, + "p95" : 0.0046619999999999995, + "p99" : 0.0046619999999999995, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 6.447909999999999E-4, + "max" : 0.0022672919999999997, + "p01" : 6.447909999999999E-4, + "p05" : 6.447909999999999E-4, + "p10" : 8.054159999999999E-4, + "p25" : 8.513749999999999E-4, + "p50" : 0.0017069999999999998, + "p75" : 0.0020589589999999995, + "p90" : 0.0022567919999999997, + "p95" : 0.0022672919999999997, + "p99" : 0.0022672919999999997, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.004245998999999999, + "max" : 0.0071693339999999986, + "p01" : 0.004245998999999999, + "p05" : 0.004245998999999999, + "p10" : 0.004357333, + "p25" : 0.004526084, + "p50" : 0.0053637089999999995, + "p75" : 0.006033416999999999, + "p90" : 0.006539374999999999, + "p95" : 0.0071693339999999986, + "p99" : 0.0071693339999999986, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "18.07ms", + "finishCalls" : 24, + "finishWall" : "63.74ms", + "finishCpu" : "18.35ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 13, + "addInputWall" : "615.21us", + "addInputCpu" : "605.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 114.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 2.67E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 5.999999999999999E-6, + "p25" : 8.0E-6, + "p50" : 6.699999999999999E-5, + "p75" : 1.2299999999999998E-4, + "p90" : 2.6599999999999996E-4, + "p95" : 2.67E-4, + "p99" : 2.67E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 6.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.499999999999999E-6, + "max" : 2.8804199999999996E-4, + "p01" : 6.499999999999999E-6, + "p05" : 6.499999999999999E-6, + "p10" : 6.749999999999999E-6, + "p25" : 8.958999999999998E-6, + "p50" : 6.712499999999999E-5, + "p75" : 1.2195899999999999E-4, + "p90" : 2.6683199999999994E-4, + "p95" : 2.8804199999999996E-4, + "p99" : 2.8804199999999996E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "411.34us", + "finishCpu" : "392.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 16, + "addInputWall" : "309.71us", + "addInputCpu" : "203.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 37, + "getOutputWall" : "346.71us", + "getOutputCpu" : "295.00us", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.9999999999999998E-5, + "max" : 2.5199999999999995E-4, + "p01" : 1.9999999999999998E-5, + "p05" : 1.9999999999999998E-5, + "p10" : 4.599999999999999E-5, + "p25" : 7.899999999999998E-5, + "p50" : 9.599999999999999E-5, + "p75" : 1.4799999999999997E-4, + "p90" : 1.79E-4, + "p95" : 2.5199999999999995E-4, + "p99" : 2.5199999999999995E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3373999999999997E-5, + "max" : 3.8970799999999995E-4, + "p01" : 2.3373999999999997E-5, + "p05" : 2.3373999999999997E-5, + "p10" : 4.858299999999999E-5, + "p25" : 8.116599999999999E-5, + "p50" : 9.979299999999998E-5, + "p75" : 1.5729099999999997E-4, + "p90" : 1.8929199999999998E-4, + "p95" : 3.8970799999999995E-4, + "p99" : 3.8970799999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "882.83us", + "finishCpu" : "858.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1995", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "650B", + "internalNetworkInputPositions" : 20, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 68.0, + "getOutputCalls" : 14, + "getOutputWall" : "615.38us", + "getOutputCpu" : "529.00us", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.3599999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.699999999999999E-5, + "p75" : 9.099999999999999E-5, + "p90" : 1.1699999999999998E-4, + "p95" : 1.3599999999999997E-4, + "p99" : 1.3599999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 4.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.11572470899999998, + "max" : 0.8070745839999999, + "p01" : 0.11572470899999998, + "p05" : 0.11572470899999998, + "p10" : 0.131845792, + "p25" : 0.13423195799999998, + "p50" : 0.14066441699999999, + "p75" : 0.8021149989999998, + "p90" : 0.8064129599999998, + "p95" : 0.8070745839999999, + "p99" : 0.8070745839999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.0658299999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.987499999999999E-5, + "p75" : 9.420899999999999E-5, + "p90" : 1.2025099999999998E-4, + "p95" : 2.0658299999999998E-4, + "p99" : 2.0658299999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.29s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 328, + "averageBytesPerRequest" : 28, + "successfulRequestsCount" : 80, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 811.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 5.0, + "p75" : 143.0, + "p90" : 808.0, + "p95" : 811.0, + "p99" : 811.0, + "total" : 14 + } + } + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 17, + "getOutputWall" : "493.83us", + "getOutputCpu" : "415.00us", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4499999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 1.1999999999999999E-5, + "p75" : 7.799999999999999E-5, + "p90" : 1.0099999999999999E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.09948866599999999, + "max" : 0.8146652919999999, + "p01" : 0.09948866599999999, + "p05" : 0.09948866599999999, + "p10" : 0.10812016599999999, + "p25" : 0.12052233299999998, + "p50" : 0.13026149899999998, + "p75" : 0.8123456239999999, + "p90" : 0.8146314159999999, + "p95" : 0.8146652919999999, + "p99" : 0.8146652919999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.0404099999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.541999999999999E-6, + "p50" : 1.3249999999999999E-5, + "p75" : 8.0124E-5, + "p90" : 1.0670899999999998E-4, + "p95" : 2.0404099999999997E-4, + "p99" : 2.0404099999999997E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.21s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1994", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "188.14kB", + "internalNetworkInputPositions" : 8000, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7158922.0, + "getOutputCalls" : 9, + "getOutputWall" : "2.59ms", + "getOutputCpu" : "918.00us", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.8699999999999996E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.099999999999999E-5, + "p50" : 7.399999999999998E-5, + "p75" : 1.0999999999999999E-4, + "p90" : 1.4799999999999997E-4, + "p95" : 1.8699999999999996E-4, + "p99" : 1.8699999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1021.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 813.0, + "p50" : 841.0, + "p75" : 969.0, + "p90" : 970.0, + "p95" : 1021.0, + "p99" : 1021.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.05938216599999999, + "max" : 0.7531150829999999, + "p01" : 0.05938216599999999, + "p05" : 0.05938216599999999, + "p10" : 0.06855529199999999, + "p25" : 0.072638292, + "p50" : 0.08432829099999999, + "p75" : 0.7512770419999999, + "p90" : 0.7516588749999998, + "p95" : 0.7531150829999999, + "p99" : 0.7531150829999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0017153749999999997, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.329199999999999E-5, + "p50" : 8.024999999999999E-5, + "p75" : 1.52584E-4, + "p90" : 1.9649999999999998E-4, + "p95" : 0.0017153749999999997, + "p99" : 0.0017153749999999997, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.60s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 46808, + "averageBytesPerRequest" : 10698, + "successfulRequestsCount" : 72, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 746.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 2.0, + "p25" : 6.0, + "p50" : 24.0, + "p75" : 716.0, + "p90" : 745.0, + "p95" : 746.0, + "p99" : 746.0, + "total" : 12 + } + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 3, + "planNodeId" : "2723", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "88.65ms", + "addInputCpu" : "22.20ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "31.25kB", + "inputPositions" : 1600, + "sumSquaredInputPositions" : 303124.0, + "getOutputCalls" : 85, + "getOutputWall" : "26.58ms", + "getOutputCpu" : "8.70ms", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 249.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 131.0, + "p50" : 156.0, + "p75" : 234.0, + "p90" : 237.0, + "p95" : 249.0, + "p99" : 249.0, + "total" : 12 + }, + "Group by hash update CPU time" : { + "duration" : "2419293.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.000999999999999E-6, + "max" : 0.013733875999999997, + "p01" : 6.000999999999999E-6, + "p05" : 6.000999999999999E-6, + "p10" : 7.249999999999999E-6, + "p25" : 0.011455833999999998, + "p50" : 0.012631415999999998, + "p75" : 0.013467583999999998, + "p90" : 0.013701541999999999, + "p95" : 0.013733875999999997, + "p99" : 0.013733875999999997, + "total" : 12 + }, + "Accumulator update CPU time" : { + "duration" : "16879874.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 0.005127, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 0.0024239999999999995, + "p50" : 0.0028959999999999997, + "p75" : 0.004011, + "p90" : 0.004129999999999999, + "p95" : 0.005127, + "p99" : 0.005127, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 39, + "finishWall" : "136.33us", + "finishCpu" : "154.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 4, + "planNodeId" : "2723", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "560.26us", + "addInputCpu" : "403.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 253648.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.082999999999999E-6, + "max" : 8.299999999999999E-4, + "p01" : 8.082999999999999E-6, + "p05" : 8.082999999999999E-6, + "p10" : 8.125E-6, + "p25" : 1.8587499999999998E-4, + "p50" : 3.14667E-4, + "p75" : 4.395009999999999E-4, + "p90" : 4.905409999999999E-4, + "p95" : 8.299999999999999E-4, + "p99" : 8.299999999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 222.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 118.0, + "p50" : 138.0, + "p75" : 210.0, + "p90" : 215.0, + "p95" : 222.0, + "p99" : 222.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 3.3099999999999997E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 1.8399999999999997E-4, + "p50" : 2.4499999999999994E-4, + "p75" : 3.0E-4, + "p90" : 3.2599999999999996E-4, + "p95" : 3.3099999999999997E-4, + "p99" : 3.3099999999999997E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "2.99ms", + "finishCpu" : "1.98ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 14616 + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "637", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "80.00us", + "addInputCpu" : "96.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "40.63kB", + "inputPositions" : 1600, + "sumSquaredInputPositions" : 303124.0, + "getOutputCalls" : 67, + "getOutputWall" : "4.20ms", + "getOutputCpu" : "2.06ms", + "outputDataSize" : "31.25kB", + "outputPositions" : 1600, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 6.499999999999999E-4, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 1.5699999999999997E-4, + "p50" : 1.8799999999999996E-4, + "p75" : 3.29E-4, + "p90" : 4.6799999999999994E-4, + "p95" : 6.499999999999999E-4, + "p99" : 6.499999999999999E-4, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3540999999999998E-5, + "max" : 0.0012689569999999998, + "p01" : 1.3540999999999998E-5, + "p05" : 1.3540999999999998E-5, + "p10" : 1.5582999999999996E-5, + "p25" : 1.68666E-4, + "p50" : 2.74626E-4, + "p75" : 6.513329999999999E-4, + "p90" : 9.849589999999999E-4, + "p95" : 0.0012689569999999998, + "p99" : 0.0012689569999999998, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 249.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 131.0, + "p50" : 156.0, + "p75" : 234.0, + "p90" : 237.0, + "p95" : 249.0, + "p99" : 249.0, + "total" : 12 + }, + "Projection CPU time" : { + "duration" : "1236755.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 30, + "finishWall" : "526.29us", + "finishCpu" : "534.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "7.67kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "7.67kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "32.54us", + "addInputCpu" : "63.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7158922.0, + "getOutputCalls" : 42, + "getOutputWall" : "21.76ms", + "getOutputCpu" : "12.54ms", + "outputDataSize" : "40.63kB", + "outputPositions" : 1600, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 0.0022709999999999996, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 4.0999999999999994E-5, + "p25" : 7.359999999999999E-4, + "p50" : 0.001308, + "p75" : 0.0018399999999999998, + "p90" : 0.0022089999999999996, + "p95" : 0.0022709999999999996, + "p99" : 0.0022709999999999996, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1021.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 813.0, + "p50" : 841.0, + "p75" : 969.0, + "p90" : 970.0, + "p95" : 1021.0, + "p99" : 1021.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.09428079099999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.043154833, + "p50" : 0.050401749999999995, + "p75" : 0.08016391699999999, + "p90" : 0.08345512499999999, + "p95" : 0.09428079099999999, + "p99" : 0.09428079099999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4832999999999998E-5, + "max" : 0.004159209, + "p01" : 2.4832999999999998E-5, + "p05" : 2.4832999999999998E-5, + "p10" : 4.820899999999999E-5, + "p25" : 8.952919999999999E-4, + "p50" : 0.0018311259999999998, + "p75" : 0.0032656669999999994, + "p90" : 0.0037345829999999997, + "p95" : 0.004159209, + "p99" : 0.004159209, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "555.49ms", + "finishCalls" : 37, + "finishWall" : "530.59us", + "finishCpu" : "421.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 6400, 1600, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 1600, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 60, + "rleProbes" : 0, + "totalProbes" : 9 + } + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1721", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 17, + "addInputWall" : "237.58us", + "addInputCpu" : "225.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.199999999999999E-5, + "max" : 2.0699999999999996E-4, + "p01" : 4.199999999999999E-5, + "p05" : 4.199999999999999E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 5.999999999999999E-5, + "p50" : 8.499999999999999E-5, + "p75" : 1.8999999999999998E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 2.0699999999999996E-4, + "p99" : 2.0699999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.012351291999999998, + "max" : 0.019742041999999998, + "p01" : 0.012351291999999998, + "p05" : 0.012351291999999998, + "p10" : 0.013287874999999998, + "p25" : 0.013856124999999999, + "p50" : 0.014365957999999998, + "p75" : 0.015704874999999997, + "p90" : 0.015810499999999998, + "p95" : 0.019742041999999998, + "p99" : 0.019742041999999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 4.108299999999999E-5, + "max" : 2.1158199999999998E-4, + "p01" : 4.108299999999999E-5, + "p05" : 4.108299999999999E-5, + "p10" : 5.516699999999999E-5, + "p25" : 5.9915999999999994E-5, + "p50" : 8.291499999999999E-5, + "p75" : 1.8849999999999997E-4, + "p90" : 1.9283299999999997E-4, + "p95" : 2.1158199999999998E-4, + "p99" : 2.1158199999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "177.79ms", + "finishCalls" : 24, + "finishWall" : "1.06ms", + "finishCpu" : "1.06ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 14, + "addInputWall" : "788.71us", + "addInputCpu" : "768.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 68.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 2.8E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 2.3999999999999997E-5, + "p50" : 8.699999999999999E-5, + "p75" : 1.9099999999999998E-4, + "p90" : 2.5299999999999997E-4, + "p95" : 2.8E-4, + "p99" : 2.8E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 4.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.499999999999998E-6, + "max" : 2.9254199999999996E-4, + "p01" : 8.499999999999998E-6, + "p05" : 8.499999999999998E-6, + "p10" : 8.999999999999999E-6, + "p25" : 2.7416999999999995E-5, + "p50" : 8.824999999999999E-5, + "p75" : 1.9304099999999997E-4, + "p90" : 2.6229099999999995E-4, + "p95" : 2.9254199999999996E-4, + "p99" : 2.9254199999999996E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "489.83us", + "finishCpu" : "456.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 17, + "addInputWall" : "224.59us", + "addInputCpu" : "200.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 42, + "getOutputWall" : "320.92us", + "getOutputCpu" : "314.00us", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.5999999999999994E-5, + "max" : 2.7199999999999994E-4, + "p01" : 3.5999999999999994E-5, + "p05" : 3.5999999999999994E-5, + "p10" : 6.299999999999999E-5, + "p25" : 7.999999999999999E-5, + "p50" : 1.0499999999999999E-4, + "p75" : 1.7199999999999998E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 2.7199999999999994E-4, + "p99" : 2.7199999999999994E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.862599999999999E-5, + "max" : 5.779599999999999E-4, + "p01" : 3.862599999999999E-5, + "p05" : 3.862599999999999E-5, + "p10" : 6.587399999999999E-5, + "p25" : 8.358299999999999E-5, + "p50" : 1.1025099999999999E-4, + "p75" : 2.8295999999999996E-4, + "p90" : 3.9862499999999995E-4, + "p95" : 5.779599999999999E-4, + "p99" : 5.779599999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.63ms", + "finishCpu" : "905.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1018", + "operatorType" : "ValuesOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.46us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "11B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 9.999999999999999E-6, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1458999999999998E-5, + "max" : 1.1458999999999998E-5, + "p01" : 1.1458999999999998E-5, + "p05" : 1.1458999999999998E-5, + "p10" : 1.1458999999999998E-5, + "p25" : 1.1458999999999998E-5, + "p50" : 1.1458999999999998E-5, + "p75" : 1.1458999999999998E-5, + "p90" : 1.1458999999999998E-5, + "p95" : 1.1458999999999998E-5, + "p99" : 1.1458999999999998E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "1019", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "142.58us", + "addInputCpu" : "142.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 28 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4458399999999998E-4, + "max" : 1.4458399999999998E-4, + "p01" : 1.4458399999999998E-4, + "p05" : 1.4458399999999998E-4, + "p10" : 1.4458399999999998E-4, + "p25" : 1.4458399999999998E-4, + "p50" : 1.4458399999999998E-4, + "p75" : 1.4458399999999998E-4, + "p90" : 1.4458399999999998E-4, + "p95" : 1.4458399999999998E-4, + "p99" : 1.4458399999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 1.4499999999999997E-4, + "max" : 1.4499999999999997E-4, + "p01" : 1.4499999999999997E-4, + "p05" : 1.4499999999999997E-4, + "p10" : 1.4499999999999997E-4, + "p25" : 1.4499999999999997E-4, + "p50" : 1.4499999999999997E-4, + "p75" : 1.4499999999999997E-4, + "p90" : 1.4499999999999997E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 28 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "2.00us", + "finishCpu" : "3.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1019", + "operatorType" : "AggregationOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "130.04us", + "addInputCpu" : "130.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "178.21us", + "getOutputCpu" : "178.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Group by hash update CPU time" : { + "duration" : "0.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.1741599999999994E-4, + "max" : 3.1741599999999994E-4, + "p01" : 3.1741599999999994E-4, + "p05" : 3.1741599999999994E-4, + "p10" : 3.1741599999999994E-4, + "p25" : 3.1741599999999994E-4, + "p50" : 3.1741599999999994E-4, + "p75" : 3.1741599999999994E-4, + "p90" : 3.1741599999999994E-4, + "p95" : 3.1741599999999994E-4, + "p99" : 3.1741599999999994E-4, + "total" : 1 + }, + "Accumulator update CPU time" : { + "duration" : "0.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.18E-4, + "max" : 3.18E-4, + "p01" : 3.18E-4, + "p05" : 3.18E-4, + "p10" : 3.18E-4, + "p25" : 3.18E-4, + "p50" : 3.18E-4, + "p75" : 3.18E-4, + "p90" : 3.18E-4, + "p95" : 3.18E-4, + "p99" : 3.18E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "9.17us", + "finishCpu" : "10.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "24B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "24B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1983", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "352B", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 4, + "getOutputWall" : "238.13us", + "getOutputCpu" : "219.00us", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 6.099999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.199999999999999E-5, + "p90" : 5.899999999999999E-5, + "p95" : 6.099999999999999E-5, + "p99" : 6.099999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.057828624999999995, + "max" : 0.7363123739999999, + "p01" : 0.057828624999999995, + "p05" : 0.057828624999999995, + "p10" : 0.06126708299999999, + "p25" : 0.06173058299999999, + "p50" : 0.06799045899999999, + "p75" : 0.7346089999999998, + "p90" : 0.7348338749999999, + "p95" : 0.7363123739999999, + "p99" : 0.7363123739999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.1125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.416699999999999E-5, + "p90" : 6.358399999999999E-5, + "p95" : 7.1125E-5, + "p99" : 7.1125E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.44s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 144, + "averageBytesPerRequest" : 24, + "successfulRequestsCount" : 52, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 720.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 9.0, + "p50" : 68.0, + "p75" : 700.0, + "p90" : 720.0, + "p95" : 720.0, + "p99" : 720.0, + "total" : 9 + } + } + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 6.0, + "getOutputCalls" : 4, + "getOutputWall" : "123.92us", + "getOutputCpu" : "107.00us", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.7999999999999996E-5, + "max" : 4.7999999999999994E-5, + "p01" : 2.7999999999999996E-5, + "p05" : 2.7999999999999996E-5, + "p10" : 2.7999999999999996E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 4.7999999999999994E-5, + "p90" : 4.7999999999999994E-5, + "p95" : 4.7999999999999994E-5, + "p99" : 4.7999999999999994E-5, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.05484678999999999, + "max" : 0.7392351249999999, + "p01" : 0.05484678999999999, + "p05" : 0.05484678999999999, + "p10" : 0.05484678999999999, + "p25" : 0.05484678999999999, + "p50" : 0.08089366699999999, + "p75" : 0.7392351249999999, + "p90" : 0.7392351249999999, + "p95" : 0.7392351249999999, + "p99" : 0.7392351249999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 3.095899999999999E-5, + "max" : 5.191799999999999E-5, + "p01" : 3.095899999999999E-5, + "p05" : 3.095899999999999E-5, + "p10" : 3.095899999999999E-5, + "p25" : 3.095899999999999E-5, + "p50" : 4.104199999999999E-5, + "p75" : 5.191799999999999E-5, + "p90" : 5.191799999999999E-5, + "p95" : 5.191799999999999E-5, + "p99" : 5.191799999999999E-5, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "874.98ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1982", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "188.14kB", + "internalNetworkInputPositions" : 8000, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7123840.0, + "getOutputCalls" : 9, + "getOutputWall" : "1.17ms", + "getOutputCpu" : "633.00us", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.3499999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.9999999999999996E-5, + "p50" : 5.2999999999999994E-5, + "p75" : 8.199999999999999E-5, + "p90" : 9.099999999999999E-5, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 972.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 832.0, + "p50" : 880.0, + "p75" : 900.0, + "p90" : 908.0, + "p95" : 972.0, + "p99" : 972.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.045249915999999994, + "max" : 0.7435253759999999, + "p01" : 0.045249915999999994, + "p05" : 0.045249915999999994, + "p10" : 0.06371895799999999, + "p25" : 0.07764058299999999, + "p50" : 0.09043091599999999, + "p75" : 0.09416045799999999, + "p90" : 0.7404093319999999, + "p95" : 0.7435253759999999, + "p99" : 0.7435253759999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.87833E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.2083E-5, + "p50" : 5.583299999999999E-5, + "p75" : 8.312499999999999E-5, + "p90" : 1.39167E-4, + "p95" : 5.87833E-4, + "p99" : 5.87833E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.30s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 42416, + "averageBytesPerRequest" : 10698, + "successfulRequestsCount" : 72, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 739.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 6.0, + "p25" : 11.0, + "p50" : 43.0, + "p75" : 709.0, + "p90" : 718.0, + "p95" : 739.0, + "p99" : 739.0, + "total" : 12 + } + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "132.12us", + "addInputCpu" : "138.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "736B", + "inputPositions" : 16, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "736B", + "outputPositions" : 16, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.749999999999998E-6, + "max" : 3.0554199999999996E-4, + "p01" : 9.749999999999998E-6, + "p05" : 9.749999999999998E-6, + "p10" : 9.957999999999999E-6, + "p25" : 1.0791999999999998E-5, + "p50" : 1.7832999999999997E-5, + "p75" : 2.0437499999999997E-4, + "p90" : 2.1337499999999997E-4, + "p95" : 3.0554199999999996E-4, + "p99" : 3.0554199999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 3.09E-4, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.8999999999999998E-5, + "p75" : 2.0499999999999997E-4, + "p90" : 2.1199999999999998E-4, + "p95" : 3.09E-4, + "p99" : 3.09E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "926.67us", + "finishCpu" : "917.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1568 + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "21.71us", + "addInputCpu" : "32.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7123840.0, + "getOutputCalls" : 45, + "getOutputWall" : "10.20ms", + "getOutputCpu" : "4.56ms", + "outputDataSize" : "736B", + "outputPositions" : 16, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0999999999999995E-5, + "max" : 9.289999999999998E-4, + "p01" : 2.0999999999999995E-5, + "p05" : 2.0999999999999995E-5, + "p10" : 3.0999999999999995E-5, + "p25" : 3.0799999999999995E-4, + "p50" : 4.429999999999999E-4, + "p75" : 6.399999999999999E-4, + "p90" : 8.999999999999999E-4, + "p95" : 9.289999999999998E-4, + "p99" : 9.289999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 972.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 832.0, + "p50" : 880.0, + "p75" : 900.0, + "p90" : 908.0, + "p95" : 972.0, + "p99" : 972.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.04249837499999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.018338959, + "p75" : 0.036063624999999995, + "p90" : 0.037008666999999995, + "p95" : 0.04249837499999999, + "p99" : 0.04249837499999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3333999999999997E-5, + "max" : 0.0025425409999999997, + "p01" : 2.3333999999999997E-5, + "p05" : 2.3333999999999997E-5, + "p10" : 3.7625999999999995E-5, + "p25" : 3.4129199999999993E-4, + "p50" : 7.846659999999998E-4, + "p75" : 0.0019749579999999997, + "p90" : 0.0024037509999999995, + "p95" : 0.0025425409999999997, + "p99" : 0.0025425409999999997, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "196.87ms", + "finishCalls" : 22, + "finishWall" : "821.55us", + "finishCpu" : "398.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 7984, 16, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 16, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 12, + "rleProbes" : 0, + "totalProbes" : 9 + } + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 3, + "addInputCalls" : 4, + "addInputWall" : "107.84us", + "addInputCpu" : "110.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 6.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0036009999999999996, + "max" : 0.004325999999999999, + "p01" : 0.0036009999999999996, + "p05" : 0.0036009999999999996, + "p10" : 0.0036009999999999996, + "p25" : 0.0036009999999999996, + "p50" : 0.0038359999999999996, + "p75" : 0.004325999999999999, + "p90" : 0.004325999999999999, + "p95" : 0.004325999999999999, + "p99" : 0.004325999999999999, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.003915375, + "max" : 0.024687583999999995, + "p01" : 0.003915375, + "p05" : 0.003915375, + "p10" : 0.003915375, + "p25" : 0.003915375, + "p50" : 0.0055704579999999995, + "p75" : 0.024687583999999995, + "p90" : 0.024687583999999995, + "p95" : 0.024687583999999995, + "p99" : 0.024687583999999995, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.006241333999999999, + "max" : 0.023815541999999995, + "p01" : 0.006241333999999999, + "p05" : 0.006241333999999999, + "p10" : 0.006241333999999999, + "p25" : 0.006241333999999999, + "p50" : 0.006840166999999999, + "p75" : 0.023815541999999995, + "p90" : 0.023815541999999995, + "p95" : 0.023815541999999995, + "p99" : 0.023815541999999995, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "34.18ms", + "finishCalls" : 7, + "finishWall" : "36.78ms", + "finishCpu" : "11.65ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "110.25us", + "addInputCpu" : "112.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 1.0399999999999998E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 4.2999999999999995E-5, + "p90" : 7.599999999999999E-5, + "p95" : 1.0399999999999998E-4, + "p99" : 1.0399999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.541999999999999E-6, + "max" : 1.2237499999999998E-4, + "p01" : 8.541999999999999E-6, + "p05" : 8.541999999999999E-6, + "p10" : 1.0374999999999998E-5, + "p25" : 1.2999999999999998E-5, + "p50" : 3.691699999999999E-5, + "p75" : 5.895899999999999E-5, + "p90" : 7.762499999999999E-5, + "p95" : 1.2237499999999998E-4, + "p99" : 1.2237499999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "373.42us", + "finishCpu" : "296.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 4, + "addInputWall" : "155.04us", + "addInputCpu" : "115.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 6.0, + "getOutputCalls" : 10, + "getOutputWall" : "105.01us", + "getOutputCpu" : "66.00us", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3399999999999998E-4, + "max" : 2.8199999999999997E-4, + "p01" : 1.3399999999999998E-4, + "p05" : 1.3399999999999998E-4, + "p10" : 1.3399999999999998E-4, + "p25" : 1.3399999999999998E-4, + "p50" : 1.7299999999999998E-4, + "p75" : 2.8199999999999997E-4, + "p90" : 2.8199999999999997E-4, + "p95" : 2.8199999999999997E-4, + "p99" : 2.8199999999999997E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5283299999999998E-4, + "max" : 3.6362299999999993E-4, + "p01" : 1.5283299999999998E-4, + "p05" : 1.5283299999999998E-4, + "p10" : 1.5283299999999998E-4, + "p25" : 1.5283299999999998E-4, + "p50" : 1.7462499999999998E-4, + "p75" : 3.6362299999999993E-4, + "p90" : 3.6362299999999993E-4, + "p95" : 3.6362299999999993E-4, + "p99" : 3.6362299999999993E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "431.04us", + "finishCpu" : "408.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1987", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "224B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 2, + "getOutputWall" : "162.08us", + "getOutputCpu" : "137.00us", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.899999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 3.7999999999999995E-5, + "p95" : 9.899999999999998E-5, + "p99" : 9.899999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.10910979199999998, + "max" : 0.13051212499999998, + "p01" : 0.10910979199999998, + "p05" : 0.10910979199999998, + "p10" : 0.11228929099999999, + "p25" : 0.11549770799999998, + "p50" : 0.11844058299999999, + "p75" : 0.12135904099999999, + "p90" : 0.130073376, + "p95" : 0.13051212499999998, + "p99" : 0.13051212499999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.235E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 3.858299999999999E-5, + "p95" : 1.235E-4, + "p99" : 1.235E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.42s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 176, + "averageBytesPerRequest" : 17, + "successfulRequestsCount" : 44, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 123.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 107.0, + "p50" : 115.0, + "p75" : 123.0, + "p90" : 123.0, + "p95" : 123.0, + "p99" : 123.0, + "total" : 8 + } + } + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 3, + "getOutputWall" : "32.55us", + "getOutputCpu" : "28.00us", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.2999999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 6.999999999999999E-6, + "p90" : 8.0E-6, + "p95" : 1.2999999999999998E-5, + "p99" : 1.2999999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.09667387599999999, + "max" : 0.11375812499999999, + "p01" : 0.09667387599999999, + "p05" : 0.09667387599999999, + "p10" : 0.09973187499999998, + "p25" : 0.10330804199999999, + "p50" : 0.10851516699999998, + "p75" : 0.11119983399999998, + "p90" : 0.11372337499999999, + "p95" : 0.11375812499999999, + "p99" : 0.11375812499999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.5874999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 7.916999999999999E-6, + "p90" : 8.75E-6, + "p95" : 1.5874999999999996E-5, + "p99" : 1.5874999999999996E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.28s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1986", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "17.52kB", + "internalNetworkInputPositions" : 100, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1136.0, + "getOutputCalls" : 11, + "getOutputWall" : "2.21ms", + "getOutputCpu" : "842.00us", + "outputDataSize" : "16.26kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.6699999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 3.899999999999999E-5, + "p25" : 5.199999999999999E-5, + "p50" : 6.099999999999999E-5, + "p75" : 1.0699999999999999E-4, + "p90" : 1.2699999999999997E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 15.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 10.0, + "p75" : 13.0, + "p90" : 15.0, + "p95" : 15.0, + "p99" : 15.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.026571582999999996, + "max" : 0.080979083, + "p01" : 0.026571582999999996, + "p05" : 0.026571582999999996, + "p10" : 0.028654958999999997, + "p25" : 0.038430957999999994, + "p50" : 0.06832358399999999, + "p75" : 0.07869212499999999, + "p90" : 0.07911187499999998, + "p95" : 0.080979083, + "p99" : 0.080979083, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0011964579999999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 4.141699999999999E-5, + "p25" : 6.229099999999999E-5, + "p50" : 7.008399999999999E-5, + "p75" : 1.5445799999999998E-4, + "p90" : 3.3970899999999994E-4, + "p95" : 0.0011964579999999999, + "p99" : 0.0011964579999999999, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "661.67ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 4800, + "averageBytesPerRequest" : 892, + "successfulRequestsCount" : 80, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 75.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 28.0, + "p75" : 44.0, + "p90" : 54.0, + "p95" : 75.0, + "p99" : 75.0, + "total" : 13 + } + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 5, + "addInputWall" : "1.36ms", + "addInputCpu" : "276.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.73kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 96.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.166999999999999E-6, + "max" : 0.0021617499999999996, + "p01" : 5.166999999999999E-6, + "p05" : 5.166999999999999E-6, + "p10" : 7.332999999999999E-6, + "p25" : 7.957999999999999E-6, + "p50" : 1.3124999999999999E-5, + "p75" : 0.0013860419999999999, + "p90" : 0.0017550829999999997, + "p95" : 0.0021617499999999996, + "p99" : 0.0021617499999999996, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.0, + "p90" : 5.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 7.299999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 6.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 1.2999999999999998E-5, + "p75" : 2.8299999999999994E-4, + "p90" : 2.87E-4, + "p95" : 7.299999999999999E-4, + "p99" : 7.299999999999999E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "5.59ms", + "finishCpu" : "1.50ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 6784 + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 11, + "addInputWall" : "27.50us", + "addInputCpu" : "50.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1136.0, + "getOutputCalls" : 40, + "getOutputWall" : "4.31ms", + "getOutputCpu" : "1.61ms", + "outputDataSize" : "3.73kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.7999999999999997E-5, + "max" : 3.0099999999999994E-4, + "p01" : 1.7999999999999997E-5, + "p05" : 1.7999999999999997E-5, + "p10" : 6.099999999999999E-5, + "p25" : 8.699999999999999E-5, + "p50" : 2.0599999999999997E-4, + "p75" : 2.4999999999999995E-4, + "p90" : 2.76E-4, + "p95" : 3.0099999999999994E-4, + "p99" : 3.0099999999999994E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 15.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 10.0, + "p75" : 13.0, + "p90" : 15.0, + "p95" : 15.0, + "p99" : 15.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.05893399999999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.018966458, + "p25" : 0.030120665999999997, + "p50" : 0.05456274999999999, + "p75" : 0.058043374999999994, + "p90" : 0.05890737499999999, + "p95" : 0.05893399999999999, + "p99" : 0.05893399999999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.0332999999999997E-5, + "max" : 9.769979999999998E-4, + "p01" : 2.0332999999999997E-5, + "p05" : 2.0332999999999997E-5, + "p10" : 6.279199999999999E-5, + "p25" : 8.729199999999999E-5, + "p50" : 2.1716699999999996E-4, + "p75" : 9.396669999999998E-4, + "p90" : 9.470419999999998E-4, + "p95" : 9.769979999999998E-4, + "p99" : 9.769979999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "503.15ms", + "finishCalls" : 31, + "finishWall" : "453.67us", + "finishCpu" : "396.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 80, 20, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 20, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 18, + "rleProbes" : 0, + "totalProbes" : 11 + } + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "49.08us", + "addInputCpu" : "48.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 8.199999999999999E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 3.699999999999999E-5, + "p25" : 5.7999999999999994E-5, + "p50" : 8.699999999999999E-5, + "p75" : 4.5199999999999993E-4, + "p90" : 6.919999999999999E-4, + "p95" : 8.199999999999999E-4, + "p99" : 8.199999999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0017292919999999997, + "max" : 0.006771708999999999, + "p01" : 0.0017292919999999997, + "p05" : 0.0017292919999999997, + "p10" : 0.0036897079999999994, + "p25" : 0.004006292, + "p50" : 0.006202957999999999, + "p75" : 0.006617458999999999, + "p90" : 0.006655957999999999, + "p95" : 0.006771708999999999, + "p99" : 0.006771708999999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3415999999999997E-5, + "max" : 0.0024307499999999998, + "p01" : 2.3415999999999997E-5, + "p05" : 2.3415999999999997E-5, + "p10" : 3.649999999999999E-5, + "p25" : 5.779199999999999E-5, + "p50" : 8.683299999999999E-5, + "p75" : 0.0011954589999999998, + "p90" : 0.0015379999999999999, + "p95" : 0.0024307499999999998, + "p99" : 0.0024307499999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "61.36ms", + "finishCalls" : 24, + "finishWall" : "6.81ms", + "finishCpu" : "2.61ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 2, + "addInputWall" : "229.37us", + "addInputCpu" : "210.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 2.8799999999999995E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 2.6999999999999996E-5, + "p75" : 1.4099999999999998E-4, + "p90" : 1.5299999999999998E-4, + "p95" : 2.8799999999999995E-4, + "p99" : 2.8799999999999995E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 7.124999999999999E-6, + "max" : 9.507089999999999E-4, + "p01" : 7.124999999999999E-6, + "p05" : 7.124999999999999E-6, + "p10" : 8.415999999999999E-6, + "p25" : 1.2249999999999998E-5, + "p50" : 2.9374999999999996E-5, + "p75" : 1.4833399999999997E-4, + "p90" : 1.7462499999999998E-4, + "p95" : 9.507089999999999E-4, + "p99" : 9.507089999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.35ms", + "finishCpu" : "655.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "35.13us", + "addInputCpu" : "36.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 18, + "getOutputWall" : "135.62us", + "getOutputCpu" : "120.00us", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 3.1199999999999994E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 4.4999999999999996E-5, + "p50" : 6.199999999999999E-5, + "p75" : 8.099999999999999E-5, + "p90" : 1.0199999999999999E-4, + "p95" : 3.1199999999999994E-4, + "p99" : 3.1199999999999994E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4874999999999995E-5, + "max" : 4.5812499999999993E-4, + "p01" : 2.4874999999999995E-5, + "p05" : 2.4874999999999995E-5, + "p10" : 3.1542E-5, + "p25" : 4.887399999999999E-5, + "p50" : 7.341699999999999E-5, + "p75" : 9.349899999999998E-5, + "p90" : 1.0466599999999999E-4, + "p95" : 4.5812499999999993E-4, + "p99" : 4.5812499999999993E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "990.30us", + "finishCpu" : "790.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2228", + "sourceId" : "9", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 8000, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 96, + "getOutputWall" : "33.21ms", + "getOutputCpu" : "18.53ms", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "1093689.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 8000 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3812499999999998E-4, + "max" : 0.005958833999999999, + "p01" : 1.3812499999999998E-4, + "p05" : 1.68833E-4, + "p10" : 1.7987499999999997E-4, + "p25" : 2.2299999999999997E-4, + "p50" : 3.1908399999999997E-4, + "p75" : 6.444579999999999E-4, + "p90" : 0.0018184579999999998, + "p95" : 0.0019701669999999997, + "p99" : 0.005958833999999999, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.3699999999999997E-4, + "max" : 0.0015719999999999998, + "p01" : 1.3699999999999997E-4, + "p05" : 1.6799999999999996E-4, + "p10" : 1.79E-4, + "p25" : 2.2099999999999998E-4, + "p50" : 2.98E-4, + "p75" : 4.269999999999999E-4, + "p90" : 6.779999999999999E-4, + "p95" : 0.0010029999999999998, + "p99" : 0.0015719999999999998, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2228", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "5.98ms", + "addInputCpu" : "2.92ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.712399999999999E-5, + "max" : 0.036545125, + "p01" : 3.712399999999999E-5, + "p05" : 3.7832999999999995E-5, + "p10" : 4.183299999999999E-5, + "p25" : 4.925099999999999E-5, + "p50" : 5.6748999999999995E-5, + "p75" : 1.0133399999999999E-4, + "p90" : 7.605419999999999E-4, + "p95" : 0.016544582999999998, + "p99" : 0.036545125, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 3.699999999999999E-5, + "max" : 5.149999999999999E-4, + "p01" : 3.699999999999999E-5, + "p05" : 3.7999999999999995E-5, + "p10" : 4.199999999999999E-5, + "p25" : 4.7999999999999994E-5, + "p50" : 5.7999999999999994E-5, + "p75" : 9.099999999999999E-5, + "p90" : 1.5699999999999997E-4, + "p95" : 4.0399999999999995E-4, + "p99" : 5.149999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "72.91ms", + "finishCpu" : "1.59ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + }, { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1993", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "110B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 2, + "getOutputWall" : "86.00us", + "getOutputCpu" : "83.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.199999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 4.0999999999999994E-5, + "p95" : 4.199999999999999E-5, + "p99" : 4.199999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.09696966599999998, + "max" : 0.7825641249999998, + "p01" : 0.09696966599999998, + "p05" : 0.09696966599999998, + "p10" : 0.10000866699999998, + "p25" : 0.10629387399999998, + "p50" : 0.12115141699999998, + "p75" : 0.7764399169999999, + "p90" : 0.7775959999999998, + "p95" : 0.7825641249999998, + "p99" : 0.7825641249999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.345899999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 4.2541999999999994E-5, + "p95" : 4.345899999999999E-5, + "p99" : 4.345899999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.01s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 120, + "averageBytesPerRequest" : 8, + "successfulRequestsCount" : 44, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 772.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 131.0, + "p50" : 137.0, + "p75" : 770.0, + "p90" : 772.0, + "p95" : 772.0, + "p99" : 772.0, + "total" : 7 + } + } + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 3, + "getOutputWall" : "33.59us", + "getOutputCpu" : "30.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.0999999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 8.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 1.0999999999999998E-5, + "p99" : 1.0999999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.07843566699999999, + "max" : 0.7919113749999999, + "p01" : 0.07843566699999999, + "p05" : 0.07843566699999999, + "p10" : 0.08315220799999999, + "p25" : 0.10437741599999999, + "p50" : 0.11424624999999998, + "p75" : 0.7753752079999999, + "p90" : 0.7753993739999999, + "p95" : 0.7919113749999999, + "p99" : 0.7919113749999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.2207999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.499999999999999E-6, + "p90" : 1.1874999999999999E-5, + "p95" : 1.2207999999999999E-5, + "p99" : 1.2207999999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.58s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1992", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.35kB", + "internalNetworkInputPositions" : 100, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1250.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.14ms", + "getOutputCpu" : "1.01ms", + "outputDataSize" : "1.76kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.9999999999999996E-5, + "max" : 1.3499999999999997E-4, + "p01" : 3.9999999999999996E-5, + "p05" : 3.9999999999999996E-5, + "p10" : 4.599999999999999E-5, + "p25" : 4.899999999999999E-5, + "p50" : 9.499999999999999E-5, + "p75" : 1.0399999999999998E-4, + "p90" : 1.1899999999999998E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 22.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 3.0, + "p25" : 5.0, + "p50" : 6.0, + "p75" : 15.0, + "p90" : 16.0, + "p95" : 22.0, + "p99" : 22.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.7433796659999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.006962208999999999, + "p50" : 0.019339291999999998, + "p75" : 0.6784833749999999, + "p90" : 0.7110108339999999, + "p95" : 0.7433796659999999, + "p99" : 0.7433796659999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 4.0957999999999996E-5, + "max" : 1.6970799999999997E-4, + "p01" : 4.0957999999999996E-5, + "p05" : 4.0957999999999996E-5, + "p10" : 4.7666999999999996E-5, + "p25" : 4.908299999999999E-5, + "p50" : 1.0091699999999998E-4, + "p75" : 1.1470799999999999E-4, + "p90" : 1.6104099999999998E-4, + "p95" : 1.6970799999999997E-4, + "p99" : 1.6970799999999997E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.88s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1216, + "averageBytesPerRequest" : 123, + "successfulRequestsCount" : 76, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 721.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 3.0, + "p25" : 9.0, + "p50" : 33.0, + "p75" : 40.0, + "p90" : 704.0, + "p95" : 721.0, + "p99" : 721.0, + "total" : 13 + } + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 8, + "addInputWall" : "187.63us", + "addInputCpu" : "185.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "248B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 78.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.207999999999999E-6, + "max" : 0.002285083, + "p01" : 9.207999999999999E-6, + "p05" : 9.207999999999999E-6, + "p10" : 1.1624999999999998E-5, + "p25" : 1.9416999999999997E-5, + "p50" : 1.5337499999999997E-4, + "p75" : 2.47874E-4, + "p90" : 7.527909999999999E-4, + "p95" : 0.002285083, + "p99" : 0.002285083, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.3099999999999998E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 1.0999999999999998E-5, + "p25" : 1.9999999999999998E-5, + "p50" : 1.2299999999999998E-4, + "p75" : 1.5399999999999998E-4, + "p90" : 1.8299999999999998E-4, + "p95" : 2.3099999999999998E-4, + "p99" : 2.3099999999999998E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "3.86ms", + "finishCpu" : "993.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1064 + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 15, + "addInputWall" : "1.09ms", + "addInputCpu" : "128.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1250.0, + "getOutputCalls" : 42, + "getOutputWall" : "3.91ms", + "getOutputCpu" : "1.28ms", + "outputDataSize" : "248B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.599999999999999E-5, + "max" : 2.49E-4, + "p01" : 6.599999999999999E-5, + "p05" : 6.599999999999999E-5, + "p10" : 8.199999999999999E-5, + "p25" : 9.799999999999998E-5, + "p50" : 1.3399999999999998E-4, + "p75" : 1.8199999999999998E-4, + "p90" : 2.3299999999999997E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 22.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 3.0, + "p25" : 5.0, + "p50" : 6.0, + "p75" : 15.0, + "p90" : 16.0, + "p95" : 22.0, + "p99" : 22.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.032915207999999994, + "max" : 0.09716308399999998, + "p01" : 0.032915207999999994, + "p05" : 0.032915207999999994, + "p10" : 0.034391416999999994, + "p25" : 0.05827458299999999, + "p50" : 0.07299729099999999, + "p75" : 0.09592495799999999, + "p90" : 0.09612883299999998, + "p95" : 0.09716308399999998, + "p99" : 0.09716308399999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.579299999999998E-5, + "max" : 0.0014088739999999998, + "p01" : 6.579299999999998E-5, + "p05" : 6.579299999999998E-5, + "p10" : 8.3542E-5, + "p25" : 9.883299999999998E-5, + "p50" : 1.55416E-4, + "p75" : 0.001054876, + "p90" : 0.0011483339999999998, + "p95" : 0.0014088739999999998, + "p99" : 0.0014088739999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "840.34ms", + "finishCalls" : 28, + "finishWall" : "254.08us", + "finishCpu" : "253.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 80, 20, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 20, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 20, + "rleProbes" : 0, + "totalProbes" : 15 + } + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "49.00us", + "addInputCpu" : "49.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 2.1199999999999998E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.2999999999999996E-5, + "p25" : 4.599999999999999E-5, + "p50" : 8.099999999999999E-5, + "p75" : 1.6499999999999997E-4, + "p90" : 2.0599999999999997E-4, + "p95" : 2.1199999999999998E-4, + "p99" : 2.1199999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.003947999999999999, + "max" : 0.007425749999999999, + "p01" : 0.003947999999999999, + "p05" : 0.003947999999999999, + "p10" : 0.004199583, + "p25" : 0.004639083, + "p50" : 0.004949374999999999, + "p75" : 0.006694999999999999, + "p90" : 0.006882207999999999, + "p95" : 0.007425749999999999, + "p99" : 0.007425749999999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 0.0013883749999999999, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.304199999999999E-5, + "p25" : 4.4791999999999994E-5, + "p50" : 8.208399999999998E-5, + "p75" : 1.6354199999999997E-4, + "p90" : 2.0566599999999997E-4, + "p95" : 0.0013883749999999999, + "p99" : 0.0013883749999999999, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "63.52ms", + "finishCalls" : 24, + "finishWall" : "2.27ms", + "finishCpu" : "1.10ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 2, + "addInputWall" : "213.71us", + "addInputCpu" : "215.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 2.2999999999999998E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.0399999999999998E-4, + "p90" : 1.4199999999999998E-4, + "p95" : 2.2999999999999998E-4, + "p99" : 2.2999999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.041999999999999E-6, + "max" : 2.3416599999999995E-4, + "p01" : 6.041999999999999E-6, + "p05" : 6.041999999999999E-6, + "p10" : 6.749999999999999E-6, + "p25" : 8.0E-6, + "p50" : 1.1666999999999999E-5, + "p75" : 1.0612399999999999E-4, + "p90" : 1.4233299999999997E-4, + "p95" : 2.3416599999999995E-4, + "p99" : 2.3416599999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "506.38us", + "finishCpu" : "484.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "34.21us", + "addInputCpu" : "35.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 18, + "getOutputWall" : "308.46us", + "getOutputCpu" : "278.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 2.0299999999999997E-4, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 2.9999999999999994E-5, + "p25" : 6.599999999999999E-5, + "p50" : 9.399999999999998E-5, + "p75" : 1.0299999999999998E-4, + "p90" : 1.0399999999999998E-4, + "p95" : 2.0299999999999997E-4, + "p99" : 2.0299999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9082999999999996E-5, + "max" : 7.887079999999998E-4, + "p01" : 2.9082999999999996E-5, + "p05" : 2.9082999999999996E-5, + "p10" : 3.3875E-5, + "p25" : 7.120899999999999E-5, + "p50" : 9.862499999999998E-5, + "p75" : 1.1445899999999998E-4, + "p90" : 3.987509999999999E-4, + "p95" : 7.887079999999998E-4, + "p99" : 7.887079999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.61ms", + "finishCpu" : "716.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2208", + "sourceId" : "3", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 8000, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 96, + "getOutputWall" : "33.41ms", + "getOutputCpu" : "17.24ms", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "1071548.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 8000 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2908299999999997E-4, + "max" : 0.006773790999999999, + "p01" : 1.2908299999999997E-4, + "p05" : 1.4620899999999998E-4, + "p10" : 2.0570799999999998E-4, + "p25" : 2.5741699999999996E-4, + "p50" : 3.6516699999999995E-4, + "p75" : 6.04167E-4, + "p90" : 0.0010473739999999998, + "p95" : 0.0016094999999999998, + "p99" : 0.006773790999999999, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.28E-4, + "max" : 0.001032, + "p01" : 1.28E-4, + "p05" : 1.4499999999999997E-4, + "p10" : 1.9699999999999996E-4, + "p25" : 2.4999999999999995E-4, + "p50" : 3.1099999999999997E-4, + "p75" : 4.2799999999999994E-4, + "p90" : 5.909999999999999E-4, + "p95" : 7.07E-4, + "p99" : 0.001032, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2208", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "4.85ms", + "addInputCpu" : "2.82ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2582999999999996E-5, + "max" : 0.038307498999999995, + "p01" : 3.2582999999999996E-5, + "p05" : 3.975E-5, + "p10" : 4.245799999999999E-5, + "p25" : 4.8874999999999995E-5, + "p50" : 5.545799999999999E-5, + "p75" : 1.0041699999999998E-4, + "p90" : 5.615419999999999E-4, + "p95" : 8.236239999999999E-4, + "p99" : 0.038307498999999995, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 5.889999999999999E-4, + "p01" : 3.2E-5, + "p05" : 4.0999999999999994E-5, + "p10" : 4.399999999999999E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 5.699999999999999E-5, + "p75" : 8.699999999999999E-5, + "p90" : 1.7599999999999997E-4, + "p95" : 2.5699999999999996E-4, + "p99" : 5.889999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "55.43ms", + "finishCpu" : "1.63ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + }, { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1237", + "sourceId" : "0", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 376, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.88kB", + "inputPositions" : 376, + "sumSquaredInputPositions" : 3226.0, + "getOutputCalls" : 52, + "getOutputWall" : "4.07s", + "getOutputCpu" : "54.63ms", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 4.0, + "max" : 19.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 5.0, + "p25" : 7.0, + "p50" : 8.0, + "p75" : 9.0, + "p90" : 10.0, + "p95" : 11.0, + "p99" : 19.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 4.2849999999999995E-4, + "max" : 0.6824894999999999, + "p01" : 4.2849999999999995E-4, + "p05" : 4.893749999999999E-4, + "p10" : 5.02833E-4, + "p25" : 6.251249999999999E-4, + "p50" : 8.606669999999999E-4, + "p75" : 0.0018217499999999998, + "p90" : 0.6746308749999999, + "p95" : 0.677068375, + "p99" : 0.6824894999999999, + "total" : 48 + }, + "Filter CPU time" : { + "duration" : "1861912.00ns" + }, + "Projection CPU time" : { + "duration" : "41333.00ns" + }, + "CPU time distribution (s)" : { + "min" : 4.2799999999999994E-4, + "max" : 0.010445999999999999, + "p01" : 4.2799999999999994E-4, + "p05" : 4.8799999999999994E-4, + "p10" : 5.009999999999999E-4, + "p25" : 6.039999999999999E-4, + "p50" : 7.479999999999999E-4, + "p75" : 9.129999999999999E-4, + "p90" : 0.0021659999999999995, + "p95" : 0.0022159999999999997, + "p99" : 0.010445999999999999, + "total" : 48 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "864B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "864B", + "spilledDataSize" : "0B" + }, { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1237", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 4, + "addInputWall" : "61.34us", + "addInputCpu" : "64.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.374999999999999E-6, + "max" : 1.0787499999999998E-4, + "p01" : 5.374999999999999E-6, + "p05" : 5.499999999999999E-6, + "p10" : 5.666999999999999E-6, + "p25" : 6.624999999999999E-6, + "p50" : 8.208999999999999E-6, + "p75" : 1.1249999999999999E-5, + "p90" : 1.9499999999999996E-5, + "p95" : 2.2248999999999997E-5, + "p99" : 1.0787499999999998E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 1.0799999999999998E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 1.1999999999999999E-5, + "p90" : 2.1999999999999996E-5, + "p95" : 2.3999999999999997E-5, + "p99" : 1.0799999999999998E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "541.54us", + "finishCpu" : "585.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 304 + } + }, { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2214", + "sourceId" : "1", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 100, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 96, + "getOutputWall" : "15.14ms", + "getOutputCpu" : "9.09ms", + "outputDataSize" : "16.26kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "801577.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 100 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 9.108399999999998E-5, + "max" : 0.0027709999999999996, + "p01" : 9.108399999999998E-5, + "p05" : 1.0395899999999999E-4, + "p10" : 1.0629199999999999E-4, + "p25" : 1.3374999999999997E-4, + "p50" : 1.6945799999999996E-4, + "p75" : 2.8237499999999997E-4, + "p90" : 8.415839999999999E-4, + "p95" : 8.645409999999999E-4, + "p99" : 0.0027709999999999996, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 8.899999999999998E-5, + "max" : 0.001032, + "p01" : 8.899999999999998E-5, + "p05" : 1.0299999999999998E-4, + "p10" : 1.0499999999999999E-4, + "p25" : 1.3199999999999998E-4, + "p50" : 1.6499999999999997E-4, + "p75" : 2.0599999999999997E-4, + "p90" : 2.6099999999999995E-4, + "p95" : 3.0999999999999995E-4, + "p99" : 0.001032, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "2kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2214", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "1.24ms", + "addInputCpu" : "1.26ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "16.26kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.8249999999999996E-5, + "max" : 0.035971749, + "p01" : 1.8249999999999996E-5, + "p05" : 2.0207999999999997E-5, + "p10" : 2.1291999999999995E-5, + "p25" : 2.6583999999999995E-5, + "p50" : 3.1833999999999994E-5, + "p75" : 3.8166999999999996E-5, + "p90" : 1.0512499999999998E-4, + "p95" : 7.057489999999999E-4, + "p99" : 0.035971749, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.8999999999999998E-5, + "max" : 5.29E-4, + "p01" : 1.8999999999999998E-5, + "p05" : 1.9999999999999998E-5, + "p10" : 2.1999999999999996E-5, + "p25" : 2.6999999999999996E-5, + "p50" : 3.2E-5, + "p75" : 3.899999999999999E-5, + "p90" : 1.0499999999999999E-4, + "p95" : 2.3099999999999998E-4, + "p99" : 5.29E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "57.45ms", + "finishCpu" : "1.62ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 7256 + } + }, { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1985", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "451.83us", + "getOutputCpu" : "118.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.1799999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.1799999999999998E-4, + "p99" : 1.1799999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.058909332999999994, + "max" : 0.7357527919999999, + "p01" : 0.058909332999999994, + "p05" : 0.058909332999999994, + "p10" : 0.06210166599999999, + "p25" : 0.07883275, + "p50" : 0.09281841599999999, + "p75" : 0.10264983399999998, + "p90" : 0.10840804099999998, + "p95" : 0.7357527919999999, + "p99" : 0.7357527919999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.5183299999999995E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 4.5183299999999995E-4, + "p99" : 4.5183299999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.68s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 104, + "averageBytesPerRequest" : 2, + "successfulRequestsCount" : 40, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 41.0, + "max" : 734.0, + "p01" : 41.0, + "p05" : 41.0, + "p10" : 41.0, + "p25" : 52.0, + "p50" : 696.0, + "p75" : 707.0, + "p90" : 734.0, + "p95" : 734.0, + "p99" : 734.0, + "total" : 6 + } + } + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.83us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.999999999999999E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.08375712499999999, + "max" : 0.09128358299999999, + "p01" : 0.08375712499999999, + "p05" : 0.08375712499999999, + "p10" : 0.08375712499999999, + "p25" : 0.08375712499999999, + "p50" : 0.09042666599999999, + "p75" : 0.09128358299999999, + "p90" : 0.09128358299999999, + "p95" : 0.09128358299999999, + "p99" : 0.09128358299999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.1833999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.1833999999999999E-5, + "p90" : 1.1833999999999999E-5, + "p95" : 1.1833999999999999E-5, + "p99" : 1.1833999999999999E-5, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "265.47ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1984", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "920B", + "internalNetworkInputPositions" : 25, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 3, + "getOutputWall" : "129.25us", + "getOutputCpu" : "124.00us", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.599999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.2999999999999996E-5, + "p90" : 4.4999999999999996E-5, + "p95" : 4.599999999999999E-5, + "p99" : 4.599999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.07479349999999998, + "max" : 0.09793933299999999, + "p01" : 0.07479349999999998, + "p05" : 0.07479349999999998, + "p10" : 0.07794216699999999, + "p25" : 0.08072037499999998, + "p50" : 0.09070724999999999, + "p75" : 0.09552187499999999, + "p90" : 0.09711449999999999, + "p95" : 0.09793933299999999, + "p99" : 0.09793933299999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.787499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.4042E-5, + "p90" : 4.7332999999999996E-5, + "p95" : 4.787499999999999E-5, + "p99" : 4.787499999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.06s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 416, + "averageBytesPerRequest" : 73, + "successfulRequestsCount" : 48, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 82.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 29.0, + "p50" : 50.0, + "p75" : 74.0, + "p90" : 82.0, + "p95" : 82.0, + "p99" : 82.0, + "total" : 8 + } + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "35.33us", + "addInputCpu" : "36.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "149B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.417E-6, + "max" : 1.9154299999999997E-4, + "p01" : 8.417E-6, + "p05" : 8.417E-6, + "p10" : 9.791999999999999E-6, + "p25" : 1.2040999999999999E-5, + "p50" : 1.6166999999999996E-5, + "p75" : 3.0374999999999996E-5, + "p90" : 4.754099999999999E-5, + "p95" : 1.9154299999999997E-4, + "p99" : 1.9154299999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 1.9199999999999998E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.1999999999999999E-5, + "p50" : 1.6E-5, + "p75" : 2.4999999999999998E-5, + "p90" : 3.9999999999999996E-5, + "p95" : 1.9199999999999998E-4, + "p99" : 1.9199999999999998E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "353.87us", + "finishCpu" : "340.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 432 + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "5.96us", + "addInputCpu" : "9.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 31, + "getOutputWall" : "614.42us", + "getOutputCpu" : "560.00us", + "outputDataSize" : "149B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0999999999999995E-5, + "max" : 2.1399999999999997E-4, + "p01" : 2.0999999999999995E-5, + "p05" : 2.0999999999999995E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 3.699999999999999E-5, + "p50" : 4.4999999999999996E-5, + "p75" : 6.199999999999999E-5, + "p90" : 9.499999999999999E-5, + "p95" : 2.1399999999999997E-4, + "p99" : 2.1399999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.029753499999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0030186249999999996, + "p90" : 0.029255416999999995, + "p95" : 0.029753499999999995, + "p99" : 0.029753499999999995, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.2874999999999997E-5, + "max" : 2.2629299999999997E-4, + "p01" : 2.2874999999999997E-5, + "p05" : 2.2874999999999997E-5, + "p10" : 3.174999999999999E-5, + "p25" : 3.9874999999999993E-5, + "p50" : 6.779099999999999E-5, + "p75" : 8.554199999999999E-5, + "p90" : 9.649999999999999E-5, + "p95" : 2.2629299999999997E-4, + "p99" : 2.2629299999999997E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "62.03ms", + "finishCalls" : 13, + "finishWall" : "229.79us", + "finishCpu" : "157.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 20, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "19.13us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.799999999999999E-5, + "max" : 1.0999999999999999E-4, + "p01" : 6.799999999999999E-5, + "p05" : 6.799999999999999E-5, + "p10" : 6.799999999999999E-5, + "p25" : 6.799999999999999E-5, + "p50" : 1.0799999999999998E-4, + "p75" : 1.0999999999999999E-4, + "p90" : 1.0999999999999999E-4, + "p95" : 1.0999999999999999E-4, + "p99" : 1.0999999999999999E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.005012124999999999, + "max" : 0.010068916999999998, + "p01" : 0.005012124999999999, + "p05" : 0.005012124999999999, + "p10" : 0.005012124999999999, + "p25" : 0.005012124999999999, + "p50" : 0.007804624999999999, + "p75" : 0.010068916999999998, + "p90" : 0.010068916999999998, + "p95" : 0.010068916999999998, + "p99" : 0.010068916999999998, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 6.833399999999999E-5, + "max" : 1.0883299999999998E-4, + "p01" : 6.833399999999999E-5, + "p05" : 6.833399999999999E-5, + "p10" : 6.833399999999999E-5, + "p25" : 6.833399999999999E-5, + "p50" : 1.0804099999999999E-4, + "p75" : 1.0883299999999998E-4, + "p90" : 1.0883299999999998E-4, + "p95" : 1.0883299999999998E-4, + "p99" : 1.0883299999999998E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "22.88ms", + "finishCalls" : 6, + "finishWall" : "266.08us", + "finishCpu" : "268.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "49.21us", + "addInputCpu" : "41.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 6.4E-5, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 1.9999999999999998E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 5.2999999999999994E-5, + "p90" : 5.999999999999999E-5, + "p95" : 6.4E-5, + "p99" : 6.4E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.040999999999998E-6, + "max" : 9.408399999999999E-5, + "p01" : 8.040999999999998E-6, + "p05" : 8.040999999999998E-6, + "p10" : 8.915999999999999E-6, + "p25" : 2.3874999999999998E-5, + "p50" : 3.133299999999999E-5, + "p75" : 7.1459E-5, + "p90" : 8.979099999999998E-5, + "p95" : 9.408399999999999E-5, + "p99" : 9.408399999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "417.34us", + "finishCpu" : "310.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "22.71us", + "addInputCpu" : "23.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 5, + "getOutputWall" : "34.87us", + "getOutputCpu" : "32.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-5, + "max" : 1.6399999999999997E-4, + "p01" : 4.9999999999999996E-5, + "p05" : 4.9999999999999996E-5, + "p10" : 4.9999999999999996E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 1.1699999999999998E-4, + "p75" : 1.6399999999999997E-4, + "p90" : 1.6399999999999997E-4, + "p95" : 1.6399999999999997E-4, + "p99" : 1.6399999999999997E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 5.262399999999999E-5, + "max" : 1.6629199999999999E-4, + "p01" : 5.262399999999999E-5, + "p05" : 5.262399999999999E-5, + "p10" : 5.262399999999999E-5, + "p25" : 5.262399999999999E-5, + "p50" : 1.3508399999999997E-4, + "p75" : 1.6629199999999999E-4, + "p90" : 1.6629199999999999E-4, + "p95" : 1.6629199999999999E-4, + "p99" : 1.6629199999999999E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "296.41us", + "finishCpu" : "276.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2230", + "sourceId" : "10", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 100, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 96, + "getOutputWall" : "2.57s", + "getOutputCpu" : "10.54ms", + "outputDataSize" : "1.76kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "299932.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 100 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 7.7417E-5, + "max" : 0.6473873339999999, + "p01" : 7.7417E-5, + "p05" : 8.487499999999999E-5, + "p10" : 8.699899999999998E-5, + "p25" : 1.0849999999999998E-4, + "p50" : 1.3004199999999997E-4, + "p75" : 2.3104199999999996E-4, + "p90" : 0.002575166, + "p95" : 0.6366623339999999, + "p99" : 0.6473873339999999, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 7.5E-5, + "max" : 0.0014859999999999997, + "p01" : 7.5E-5, + "p05" : 8.399999999999998E-5, + "p10" : 8.599999999999999E-5, + "p25" : 1.0399999999999998E-4, + "p50" : 1.2599999999999997E-4, + "p75" : 1.9399999999999997E-4, + "p90" : 7.019999999999999E-4, + "p95" : 8.599999999999999E-4, + "p99" : 0.0014859999999999997, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2230", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "1.56ms", + "addInputCpu" : "1.26ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1.76kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5541E-5, + "max" : 0.010430833999999998, + "p01" : 1.5541E-5, + "p05" : 1.6374999999999998E-5, + "p10" : 1.6791999999999998E-5, + "p25" : 1.9333999999999998E-5, + "p50" : 2.3374999999999996E-5, + "p75" : 5.8166999999999994E-5, + "p90" : 2.47833E-4, + "p95" : 4.4816799999999993E-4, + "p99" : 0.010430833999999998, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.4999999999999997E-5, + "max" : 4.0299999999999993E-4, + "p01" : 1.4999999999999997E-5, + "p05" : 1.6999999999999996E-5, + "p10" : 1.7999999999999997E-5, + "p25" : 1.9999999999999998E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 5.099999999999999E-5, + "p90" : 9.899999999999998E-5, + "p95" : 1.4399999999999998E-4, + "p99" : 4.0299999999999993E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "19.86ms", + "finishCpu" : "1.13ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 2360 + } + }, { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1991", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "75.83us", + "getOutputCpu" : "74.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.673435375, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0038770419999999994, + "p50" : 0.011176582999999999, + "p75" : 0.6637837499999999, + "p90" : 0.6653003329999999, + "p95" : 0.673435375, + "p99" : 0.673435375, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.583299999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 7.583299999999999E-5, + "p99" : 7.583299999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.71s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 104, + "averageBytesPerRequest" : 3, + "successfulRequestsCount" : 40, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 0.0, + "max" : 669.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 10.0, + "p75" : 24.0, + "p90" : 669.0, + "p95" : 669.0, + "p99" : 669.0, + "total" : 7 + } + } + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "16.58us", + "getOutputCpu" : "15.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4999999999999997E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.4999999999999997E-5, + "p90" : 1.4999999999999997E-5, + "p95" : 1.4999999999999997E-5, + "p99" : 1.4999999999999997E-5, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.016105209, + "max" : 0.6798344169999999, + "p01" : 0.016105209, + "p05" : 0.016105209, + "p10" : 0.016105209, + "p25" : 0.016105209, + "p50" : 0.031328958, + "p75" : 0.6798344169999999, + "p90" : 0.6798344169999999, + "p95" : 0.6798344169999999, + "p99" : 0.6798344169999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.6582999999999997E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.6582999999999997E-5, + "p90" : 1.6582999999999997E-5, + "p95" : 1.6582999999999997E-5, + "p99" : 1.6582999999999997E-5, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "727.27ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1990", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "562B", + "internalNetworkInputPositions" : 25, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 3, + "getOutputWall" : "351.42us", + "getOutputCpu" : "206.00us", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.0299999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.899999999999999E-5, + "p90" : 5.399999999999999E-5, + "p95" : 1.0299999999999998E-4, + "p99" : 1.0299999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.07890637499999999, + "max" : 0.7646623329999999, + "p01" : 0.07890637499999999, + "p05" : 0.07890637499999999, + "p10" : 0.082014625, + "p25" : 0.08801466699999999, + "p50" : 0.09754166699999998, + "p75" : 0.7613403329999999, + "p90" : 0.7636172499999999, + "p95" : 0.7646623329999999, + "p99" : 0.7646623329999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.4504199999999995E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0499999999999994E-5, + "p90" : 5.587499999999999E-5, + "p95" : 2.4504199999999995E-4, + "p99" : 2.4504199999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.76s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 272, + "averageBytesPerRequest" : 44, + "successfulRequestsCount" : 48, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 748.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 32.0, + "p50" : 97.0, + "p75" : 719.0, + "p90" : 748.0, + "p95" : 748.0, + "p99" : 748.0, + "total" : 8 + } + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "36.71us", + "addInputCpu" : "40.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "65B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.333999999999998E-6, + "max" : 1.8958299999999998E-4, + "p01" : 8.333999999999998E-6, + "p05" : 8.333999999999998E-6, + "p10" : 8.541999999999999E-6, + "p25" : 1.0459E-5, + "p50" : 2.4624999999999995E-5, + "p75" : 3.0124999999999997E-5, + "p90" : 7.395799999999999E-5, + "p95" : 1.8958299999999998E-4, + "p99" : 1.8958299999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.9299999999999997E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 2.3999999999999997E-5, + "p75" : 2.7999999999999996E-5, + "p90" : 7.299999999999999E-5, + "p95" : 1.9299999999999997E-4, + "p99" : 1.9299999999999997E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "394.67us", + "finishCpu" : "391.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 272 + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "7.00us", + "addInputCpu" : "9.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 31, + "getOutputWall" : "2.29ms", + "getOutputCpu" : "1.72ms", + "outputDataSize" : "65B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 7.649999999999998E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.9999999999999994E-5, + "p25" : 3.399999999999999E-5, + "p50" : 5.099999999999999E-5, + "p75" : 1.5099999999999998E-4, + "p90" : 5.52E-4, + "p95" : 7.649999999999998E-4, + "p99" : 7.649999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 3.4358399999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 3.4358399999999997E-4, + "p99" : 3.4358399999999997E-4, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6040999999999997E-5, + "max" : 8.360419999999998E-4, + "p01" : 2.6040999999999997E-5, + "p05" : 2.6040999999999997E-5, + "p10" : 3.1957999999999995E-5, + "p25" : 4.1915999999999996E-5, + "p50" : 8.041599999999998E-5, + "p75" : 4.6262499999999993E-4, + "p90" : 6.14165E-4, + "p95" : 8.360419999999998E-4, + "p99" : 8.360419999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "343.58us", + "finishCalls" : 12, + "finishWall" : "215.88us", + "finishCpu" : "138.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 20, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "42.08us", + "addInputCpu" : "43.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0035229999999999997, + "max" : 0.012750999999999998, + "p01" : 0.0035229999999999997, + "p05" : 0.0035229999999999997, + "p10" : 0.0035229999999999997, + "p25" : 0.0035229999999999997, + "p50" : 0.005042, + "p75" : 0.012750999999999998, + "p90" : 0.012750999999999998, + "p95" : 0.012750999999999998, + "p99" : 0.012750999999999998, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.05883554099999999, + "max" : 0.06104212499999999, + "p01" : 0.05883554099999999, + "p05" : 0.05883554099999999, + "p10" : 0.05883554099999999, + "p25" : 0.05883554099999999, + "p50" : 0.059494665999999995, + "p75" : 0.06104212499999999, + "p90" : 0.06104212499999999, + "p95" : 0.06104212499999999, + "p99" : 0.06104212499999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.005364665999999999, + "max" : 0.028359207999999997, + "p01" : 0.005364665999999999, + "p05" : 0.005364665999999999, + "p10" : 0.005364665999999999, + "p25" : 0.005364665999999999, + "p50" : 0.012015708999999998, + "p75" : 0.028359207999999997, + "p90" : 0.028359207999999997, + "p95" : 0.028359207999999997, + "p99" : 0.028359207999999997, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "179.37ms", + "finishCalls" : 6, + "finishWall" : "45.69ms", + "finishCpu" : "21.27ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "21.25us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 9.099999999999999E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.9999999999999998E-5, + "p75" : 3.7999999999999995E-5, + "p90" : 4.4999999999999996E-5, + "p95" : 9.099999999999999E-5, + "p99" : 9.099999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0541999999999998E-5, + "max" : 5.435419999999999E-4, + "p01" : 1.0541999999999998E-5, + "p05" : 1.0541999999999998E-5, + "p10" : 1.0957999999999999E-5, + "p25" : 1.1749999999999998E-5, + "p50" : 2.3958999999999995E-5, + "p75" : 4.174999999999999E-5, + "p90" : 4.649999999999999E-5, + "p95" : 5.435419999999999E-4, + "p99" : 5.435419999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "788.71us", + "finishCpu" : "294.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "801.58us", + "addInputCpu" : "597.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 4, + "getOutputWall" : "30.92us", + "getOutputCpu" : "27.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.6699999999999997E-4, + "max" : 0.0015449999999999997, + "p01" : 1.6699999999999997E-4, + "p05" : 1.6699999999999997E-4, + "p10" : 1.6699999999999997E-4, + "p25" : 1.6699999999999997E-4, + "p50" : 9.269999999999999E-4, + "p75" : 0.0015449999999999997, + "p90" : 0.0015449999999999997, + "p95" : 0.0015449999999999997, + "p99" : 0.0015449999999999997, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.9258399999999998E-4, + "max" : 0.0027627079999999996, + "p01" : 1.9258399999999998E-4, + "p05" : 1.9258399999999998E-4, + "p10" : 1.9258399999999998E-4, + "p25" : 1.9258399999999998E-4, + "p50" : 0.0019784589999999997, + "p75" : 0.0027627079999999996, + "p90" : 0.0027627079999999996, + "p95" : 0.0027627079999999996, + "p99" : 0.0027627079999999996, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "4.10ms", + "finishCpu" : "2.02ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2216", + "sourceId" : "5", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 49, + "getOutputWall" : "4.50ms", + "getOutputCpu" : "3.47ms", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "26625.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 25 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9957999999999997E-5, + "max" : 4.809579999999999E-4, + "p01" : 2.9957999999999997E-5, + "p05" : 3.7041999999999995E-5, + "p10" : 3.812499999999999E-5, + "p25" : 4.691699999999999E-5, + "p50" : 6.054199999999999E-5, + "p75" : 1.2329199999999997E-4, + "p90" : 2.2162499999999998E-4, + "p95" : 2.77291E-4, + "p99" : 4.809579999999999E-4, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 2.7999999999999996E-5, + "max" : 2.49E-4, + "p01" : 2.7999999999999996E-5, + "p05" : 3.5999999999999994E-5, + "p10" : 3.7999999999999995E-5, + "p25" : 4.4999999999999996E-5, + "p50" : 5.699999999999999E-5, + "p75" : 9.899999999999998E-5, + "p90" : 1.2699999999999997E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 2.49E-4, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "832B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "832B", + "spilledDataSize" : "0B" + }, { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2216", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "783.38us", + "addInputCpu" : "252.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.874999999999999E-6, + "max" : 0.031392874999999994, + "p01" : 3.874999999999999E-6, + "p05" : 5.707999999999999E-6, + "p10" : 5.874999999999999E-6, + "p25" : 7.291999999999999E-6, + "p50" : 9.416999999999998E-6, + "p75" : 1.4957999999999998E-5, + "p90" : 7.108299999999998E-5, + "p95" : 3.1974999999999994E-4, + "p99" : 0.031392874999999994, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 6.239999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 5.999999999999999E-6, + "p25" : 8.0E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.4999999999999997E-5, + "p90" : 3.399999999999999E-5, + "p95" : 4.899999999999999E-5, + "p99" : 6.239999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "32.36ms", + "finishCpu" : "1.24ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1304 + } + }, { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1215", + "sourceId" : "7", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "104B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 49, + "getOutputWall" : "686.08ms", + "getOutputCpu" : "4.43ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 5.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4290999999999994E-5, + "max" : 0.6799986249999999, + "p01" : 3.4290999999999994E-5, + "p05" : 3.554199999999999E-5, + "p10" : 4.1207999999999996E-5, + "p25" : 4.475E-5, + "p50" : 6.6125E-5, + "p75" : 1.2783399999999998E-4, + "p90" : 4.96292E-4, + "p95" : 6.705409999999999E-4, + "p99" : 0.6799986249999999, + "total" : 48 + }, + "Filter CPU time" : { + "duration" : "88792.00ns" + }, + "Projection CPU time" : { + "duration" : "11583.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 8.899999999999998E-4, + "p01" : 3.2E-5, + "p05" : 3.399999999999999E-5, + "p10" : 3.899999999999999E-5, + "p25" : 4.399999999999999E-5, + "p50" : 6.4E-5, + "p75" : 1.0099999999999999E-4, + "p90" : 1.3199999999999998E-4, + "p95" : 1.3699999999999997E-4, + "p99" : 8.899999999999998E-4, + "total" : 48 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1215", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "818.75us", + "addInputCpu" : "680.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.957999999999999E-6, + "max" : 8.371659999999999E-4, + "p01" : 3.957999999999999E-6, + "p05" : 4.624999999999999E-6, + "p10" : 4.957999999999999E-6, + "p25" : 6.291999999999999E-6, + "p50" : 8.625E-6, + "p75" : 1.5916999999999997E-5, + "p90" : 3.270799999999999E-5, + "p95" : 1.4649999999999998E-4, + "p99" : 8.371659999999999E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 6.989999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 6.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.6999999999999996E-5, + "p90" : 2.6999999999999996E-5, + "p95" : 3.0999999999999995E-5, + "p99" : 6.989999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "1.06ms", + "finishCpu" : "623.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 104 + } + }, { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2232", + "sourceId" : "12", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 49, + "getOutputWall" : "11.74ms", + "getOutputCpu" : "4.13ms", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "16999.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 25 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2166E-5, + "max" : 0.005643875, + "p01" : 3.2166E-5, + "p05" : 3.4833E-5, + "p10" : 3.716699999999999E-5, + "p25" : 4.0249999999999996E-5, + "p50" : 5.174999999999999E-5, + "p75" : 1.2170799999999998E-4, + "p90" : 3.9374999999999995E-4, + "p95" : 8.112499999999999E-4, + "p99" : 0.005643875, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 0.0011459999999999999, + "p01" : 3.0999999999999995E-5, + "p05" : 3.2999999999999996E-5, + "p10" : 3.5999999999999994E-5, + "p25" : 3.7999999999999995E-5, + "p50" : 5.099999999999999E-5, + "p75" : 9.399999999999998E-5, + "p90" : 1.1799999999999998E-4, + "p95" : 1.2499999999999998E-4, + "p99" : 0.0011459999999999999, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2232", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "436.42us", + "addInputCpu" : "422.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 4.416999999999999E-6, + "max" : 4.4437399999999993E-4, + "p01" : 4.416999999999999E-6, + "p05" : 4.874999999999999E-6, + "p10" : 4.917E-6, + "p25" : 5.749999999999999E-6, + "p50" : 6.707999999999999E-6, + "p75" : 9.124999999999998E-6, + "p90" : 1.9624999999999996E-5, + "p95" : 1.9299999999999997E-4, + "p99" : 4.4437399999999993E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 4.3099999999999996E-4, + "p01" : 4.0E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 6.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 2.0999999999999995E-5, + "p95" : 3.9999999999999996E-5, + "p99" : 4.3099999999999996E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "770.45us", + "finishCpu" : "636.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 872 + } + }, { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "781", + "sourceId" : "14", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "104B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 49, + "getOutputWall" : "739.12ms", + "getOutputCpu" : "686.11ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 5.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 5.2082999999999996E-5, + "max" : 0.6925037919999999, + "p01" : 5.2082999999999996E-5, + "p05" : 5.729199999999999E-5, + "p10" : 5.933299999999999E-5, + "p25" : 6.5291E-5, + "p50" : 8.887499999999999E-5, + "p75" : 0.0028217079999999996, + "p90" : 0.0037286249999999993, + "p95" : 0.0038391249999999997, + "p99" : 0.6925037919999999, + "total" : 48 + }, + "Filter CPU time" : { + "duration" : "92417.00ns" + }, + "Projection CPU time" : { + "duration" : "11333.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.099999999999999E-5, + "max" : 0.6797309999999999, + "p01" : 5.099999999999999E-5, + "p05" : 5.599999999999999E-5, + "p10" : 5.7999999999999994E-5, + "p25" : 6.099999999999999E-5, + "p50" : 8.799999999999998E-5, + "p75" : 1.3E-4, + "p90" : 1.9099999999999998E-4, + "p95" : 3.38E-4, + "p99" : 0.6797309999999999, + "total" : 48 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "781", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "828.58us", + "addInputCpu" : "444.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 6.916999999999999E-6, + "max" : 8.429579999999999E-4, + "p01" : 6.916999999999999E-6, + "p05" : 7.332999999999999E-6, + "p10" : 8.791999999999998E-6, + "p25" : 9.790999999999998E-6, + "p50" : 1.1249999999999999E-5, + "p75" : 1.6749999999999997E-5, + "p90" : 3.816599999999999E-5, + "p95" : 5.7749999999999994E-5, + "p99" : 8.429579999999999E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 4.579999999999999E-4, + "p01" : 6.999999999999999E-6, + "p05" : 8.0E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.2999999999999998E-5, + "p75" : 1.7999999999999997E-5, + "p90" : 3.399999999999999E-5, + "p95" : 3.899999999999999E-5, + "p99" : 4.579999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "994.49us", + "finishCpu" : "774.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 104 + } + } ], + "optimizerRulesSummaries" : [ { + "rule" : "io.trino.sql.planner.optimizations.PredicatePushDown", + "invocations" : 7, + "applied" : 7, + "totalTime" : 59761707, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.ReorderJoins", + "invocations" : 13, + "applied" : 2, + "totalTime" : 42343417, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.PushPredicateIntoTableScan", + "invocations" : 47, + "applied" : 2, + "totalTime" : 26671125, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.ExpressionRewriteRuleSet.FilterExpressionRewrite", + "invocations" : 428, + "applied" : 2, + "totalTime" : 11110263, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.optimizations.AddExchanges", + "invocations" : 1, + "applied" : 1, + "totalTime" : 8777542, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.PruneAggregationColumns", + "invocations" : 211, + "applied" : 0, + "totalTime" : 3059750, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.EliminateCrossJoins", + "invocations" : 12, + "applied" : 1, + "totalTime" : 2992003, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.ExpressionRewriteRuleSet.ProjectExpressionRewrite", + "invocations" : 1076, + "applied" : 0, + "totalTime" : 2451911, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.TransformCorrelatedJoinToJoin", + "invocations" : 1, + "applied" : 0, + "totalTime" : 2168000, + "failures" : 0 + }, { + "rule" : "io.trino.sql.planner.iterative.rule.PushProjectionIntoTableScan", + "invocations" : 47, + "applied" : 0, + "totalTime" : 1924666, + "failures" : 0 + } ], + "logicalWrittenDataSize" : "0B", + "writtenPositions" : 0 + }, + "resetAuthorizationUser" : false, + "setOriginalRoles" : [ ], + "setSessionProperties" : { }, + "resetSessionProperties" : [ ], + "setRoles" : { }, + "addedPreparedStatements" : { }, + "deallocatedPreparedStatements" : [ ], + "clearTransactionId" : false, + "stages" : { + "outputStageId" : "20260330_075902_00004_iggau.0", + "stages" : [ { + "stageId" : "20260330_075902_00004_iggau.0", + "state" : "FINISHED", + "plan" : { + "id" : "0", + "root" : { + "@type" : "output", + "id" : "34", + "source" : { + "@type" : "remoteSource", + "id" : "2000", + "sourceFragmentIds" : [ "1" ], + "outputs" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "orderingScheme" : { + "orderBy" : [ { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "bigint", + "name" : "partkey_4" + } ], + "orderings" : { + "6|double|acctbal" : "DESC_NULLS_LAST", + "11|varchar(25)|name_9" : "ASC_NULLS_LAST", + "11|varchar(25)|name_1" : "ASC_NULLS_LAST", + "6|bigint|partkey_4" : "ASC_NULLS_LAST" + } + }, + "exchangeType" : "GATHER", + "retryPolicy" : "NONE" + }, + "columns" : [ "acctbal", "name", "name", "partkey", "mfgr", "address", "phone", "comment" ], + "outputs" : [ { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ] + }, + "symbols" : [ { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "34" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + }, + "2000" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + } + }, + "costs" : { + "34" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "2000" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : "NaN" + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"34\",\n \"name\" : \"Output\",\n \"descriptor\" : {\n \"columnNames\" : \"[acctbal, name, name, partkey, mfgr, address, phone, comment]\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n } ],\n \"details\" : [ \"name := name_1\", \"name := name_9\", \"partkey := partkey_4\", \"comment := comment_2\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"2000\",\n \"name\" : \"RemoteMerge\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[1]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "double", "varchar(25)", "varchar(25)", "bigint", "varchar(25)", "varchar(40)", "varchar(15)", "varchar(101)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.162692Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 1, + "runningTasks" : 0, + "completedTasks" : 1, + "failedTasks" : 0, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "936B", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.35ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "1.28ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "195.80ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "1.15kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 4, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "773B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 4, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "195.80ms", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 915778375, + "min" : 0.0, + "max" : 2.7894973754882812E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "355B", + "failedOutputDataSize" : "0B", + "outputPositions" : 1, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 0, + "tasks" : 1, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2000", + "operatorType" : "MergeOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.15kB", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 5, + "getOutputWall" : "382.71us", + "getOutputCpu" : "301.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0099999999999994E-4, + "max" : 3.0099999999999994E-4, + "p01" : 3.0099999999999994E-4, + "p05" : 3.0099999999999994E-4, + "p10" : 3.0099999999999994E-4, + "p25" : 3.0099999999999994E-4, + "p50" : 3.0099999999999994E-4, + "p75" : 3.0099999999999994E-4, + "p90" : 3.0099999999999994E-4, + "p95" : 3.0099999999999994E-4, + "p99" : 3.0099999999999994E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 4.0, + "max" : 4.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 4.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.19579916799999997, + "max" : 0.19579916799999997, + "p01" : 0.19579916799999997, + "p05" : 0.19579916799999997, + "p10" : 0.19579916799999997, + "p25" : 0.19579916799999997, + "p50" : 0.19579916799999997, + "p75" : 0.19579916799999997, + "p90" : 0.19579916799999997, + "p95" : 0.19579916799999997, + "p99" : 0.19579916799999997, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.827069999999999E-4, + "max" : 3.827069999999999E-4, + "p01" : 3.827069999999999E-4, + "p05" : 3.827069999999999E-4, + "p10" : 3.827069999999999E-4, + "p25" : 3.827069999999999E-4, + "p50" : 3.827069999999999E-4, + "p75" : 3.827069999999999E-4, + "p90" : 3.827069999999999E-4, + "p95" : 3.827069999999999E-4, + "p99" : 3.827069999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "195.80ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.59kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.59kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "34", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "91.79us", + "addInputCpu" : "92.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "355B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "355B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 498 + }, + "Scheduled time distribution (s)" : { + "min" : 9.349999999999998E-5, + "max" : 9.349999999999998E-5, + "p01" : 9.349999999999998E-5, + "p05" : 9.349999999999998E-5, + "p10" : 9.349999999999998E-5, + "p25" : 9.349999999999998E-5, + "p50" : 9.349999999999998E-5, + "p75" : 9.349999999999998E-5, + "p90" : 9.349999999999998E-5, + "p95" : 9.349999999999998E-5, + "p99" : 9.349999999999998E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 9.399999999999998E-5, + "max" : 9.399999999999998E-5, + "p01" : 9.399999999999998E-5, + "p05" : 9.399999999999998E-5, + "p10" : 9.399999999999998E-5, + "p25" : 9.399999999999998E-5, + "p50" : 9.399999999999998E-5, + "p75" : 9.399999999999998E-5, + "p90" : 9.399999999999998E-5, + "p95" : 9.399999999999998E-5, + "p99" : 9.399999999999998E-5, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 498 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.71us", + "finishCpu" : "2.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "34", + "operatorType" : "OutputSpoolingOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "32.63us", + "addInputCpu" : "31.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 8, + "getOutputWall" : "37.46us", + "getOutputCpu" : "47.00us", + "outputDataSize" : "355B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.159999999999999E-4, + "max" : 8.159999999999999E-4, + "p01" : 8.159999999999999E-4, + "p05" : 8.159999999999999E-4, + "p10" : 8.159999999999999E-4, + "p25" : 8.159999999999999E-4, + "p50" : 8.159999999999999E-4, + "p75" : 8.159999999999999E-4, + "p90" : 8.159999999999999E-4, + "p95" : 8.159999999999999E-4, + "p99" : 8.159999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 4.0, + "max" : 4.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 4.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 8.103329999999999E-4, + "max" : 8.103329999999999E-4, + "p01" : 8.103329999999999E-4, + "p05" : 8.103329999999999E-4, + "p10" : 8.103329999999999E-4, + "p25" : 8.103329999999999E-4, + "p50" : 8.103329999999999E-4, + "p75" : 8.103329999999999E-4, + "p90" : 8.103329999999999E-4, + "p95" : 8.103329999999999E-4, + "p99" : 8.103329999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "740.25us", + "finishCpu" : "738.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "773B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "773B", + "spilledDataSize" : "0B", + "info" : { + "spoolingWallTime" : "602.96us", + "spoolingCpuTime" : "0.00s", + "inlinedPages" : 0, + "inlinedSegments" : 0, + "inlinedPositions" : 0, + "inlinedRawBytes" : 0, + "inlinedEncodedBytes" : 0, + "spooledPages" : 1, + "spooledSegments" : 1, + "spooledPositions" : 4, + "spooledRawBytes" : 773, + "spooledEncodedBytes" : 711, + "encodedToRawBytesRatio" : 0.9197930142302717 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.0.0.0", + "taskInstanceId" : 3480967929705564099, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.0.0.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "355B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "936B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.079558Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 2.7894973754882812E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 915778375 + } + }, + "noMoreSplits" : [ "2000" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.163452Z", + "firstStartTime" : "2026-03-30T07:59:03.881057Z", + "lastStartTime" : "2026-03-30T07:59:03.881057Z", + "lastEndTime" : "2026-03-30T07:59:04.078Z", + "endTime" : "2026-03-30T07:59:04.080209Z", + "elapsedTime" : "914.63ms", + "queuedTime" : "715.48ms", + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "936B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.35ms", + "totalCpuTime" : "1.28ms", + "totalBlockedTime" : "195.80ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.15kB", + "internalNetworkInputPositions" : 4, + "processedInputDataSize" : "773B", + "processedInputPositions" : 4, + "inputBlockedTime" : "195.80ms", + "outputDataSize" : "355B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.881056Z", + "lastStartTime" : "2026-03-30T07:59:03.881056Z", + "lastEndTime" : "2026-03-30T07:59:04.078600Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.86303083E8, + "p01" : 6.86303083E8, + "p05" : 6.86303083E8, + "p10" : 6.86303083E8, + "p25" : 6.86303083E8, + "p50" : 6.86303083E8, + "p75" : 6.86303083E8, + "p90" : 6.86303083E8, + "p95" : 6.86303083E8, + "p99" : 6.86303083E8, + "min" : 6.86303083E8, + "max" : 6.86303083E8, + "avg" : 6.86303083E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.83844792E8, + "p01" : 8.83844792E8, + "p05" : 8.83844792E8, + "p10" : 8.83844792E8, + "p25" : 8.83844792E8, + "p50" : 8.83844792E8, + "p75" : 8.83844792E8, + "p90" : 8.83844792E8, + "p95" : 8.83844792E8, + "p99" : 8.83844792E8, + "min" : 8.83844792E8, + "max" : 8.83844792E8, + "avg" : 8.83844792E8 + }, + "totalScheduledTime" : "1.35ms", + "totalCpuTime" : "1.28ms", + "totalBlockedTime" : "195.80ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.15kB", + "internalNetworkInputPositions" : 4, + "processedInputDataSize" : "773B", + "processedInputPositions" : 4, + "inputBlockedTime" : "195.80ms", + "outputDataSize" : "355B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2000", + "operatorType" : "MergeOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.15kB", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 5, + "getOutputWall" : "382.71us", + "getOutputCpu" : "301.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0099999999999994E-4, + "max" : 3.0099999999999994E-4, + "p01" : 3.0099999999999994E-4, + "p05" : 3.0099999999999994E-4, + "p10" : 3.0099999999999994E-4, + "p25" : 3.0099999999999994E-4, + "p50" : 3.0099999999999994E-4, + "p75" : 3.0099999999999994E-4, + "p90" : 3.0099999999999994E-4, + "p95" : 3.0099999999999994E-4, + "p99" : 3.0099999999999994E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 4.0, + "max" : 4.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 4.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.19579916799999997, + "max" : 0.19579916799999997, + "p01" : 0.19579916799999997, + "p05" : 0.19579916799999997, + "p10" : 0.19579916799999997, + "p25" : 0.19579916799999997, + "p50" : 0.19579916799999997, + "p75" : 0.19579916799999997, + "p90" : 0.19579916799999997, + "p95" : 0.19579916799999997, + "p99" : 0.19579916799999997, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.827069999999999E-4, + "max" : 3.827069999999999E-4, + "p01" : 3.827069999999999E-4, + "p05" : 3.827069999999999E-4, + "p10" : 3.827069999999999E-4, + "p25" : 3.827069999999999E-4, + "p50" : 3.827069999999999E-4, + "p75" : 3.827069999999999E-4, + "p90" : 3.827069999999999E-4, + "p95" : 3.827069999999999E-4, + "p99" : 3.827069999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "195.80ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.59kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.59kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "34", + "operatorType" : "OutputSpoolingOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "32.63us", + "addInputCpu" : "31.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 8, + "getOutputWall" : "37.46us", + "getOutputCpu" : "47.00us", + "outputDataSize" : "355B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.159999999999999E-4, + "max" : 8.159999999999999E-4, + "p01" : 8.159999999999999E-4, + "p05" : 8.159999999999999E-4, + "p10" : 8.159999999999999E-4, + "p25" : 8.159999999999999E-4, + "p50" : 8.159999999999999E-4, + "p75" : 8.159999999999999E-4, + "p90" : 8.159999999999999E-4, + "p95" : 8.159999999999999E-4, + "p99" : 8.159999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 4.0, + "max" : 4.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 4.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 8.103329999999999E-4, + "max" : 8.103329999999999E-4, + "p01" : 8.103329999999999E-4, + "p05" : 8.103329999999999E-4, + "p10" : 8.103329999999999E-4, + "p25" : 8.103329999999999E-4, + "p50" : 8.103329999999999E-4, + "p75" : 8.103329999999999E-4, + "p90" : 8.103329999999999E-4, + "p95" : 8.103329999999999E-4, + "p99" : 8.103329999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "740.25us", + "finishCpu" : "738.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "773B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "773B", + "spilledDataSize" : "0B", + "info" : { + "spoolingWallTime" : "602.96us", + "spoolingCpuTime" : "0.00s", + "inlinedPages" : 0, + "inlinedSegments" : 0, + "inlinedPositions" : 0, + "inlinedRawBytes" : 0, + "inlinedEncodedBytes" : 0, + "spooledPages" : 1, + "spooledSegments" : 1, + "spooledPositions" : 4, + "spooledRawBytes" : 773, + "spooledEncodedBytes" : 711, + "encodedToRawBytesRatio" : 0.9197930142302717 + } + }, { + "stageId" : 0, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "34", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "91.79us", + "addInputCpu" : "92.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "355B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "355B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 498 + }, + "Scheduled time distribution (s)" : { + "min" : 9.349999999999998E-5, + "max" : 9.349999999999998E-5, + "p01" : 9.349999999999998E-5, + "p05" : 9.349999999999998E-5, + "p10" : 9.349999999999998E-5, + "p25" : 9.349999999999998E-5, + "p50" : 9.349999999999998E-5, + "p75" : 9.349999999999998E-5, + "p90" : 9.349999999999998E-5, + "p95" : 9.349999999999998E-5, + "p99" : 9.349999999999998E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 9.399999999999998E-5, + "max" : 9.399999999999998E-5, + "p01" : 9.399999999999998E-5, + "p05" : 9.399999999999998E-5, + "p10" : 9.399999999999998E-5, + "p25" : 9.399999999999998E-5, + "p50" : 9.399999999999998E-5, + "p75" : 9.399999999999998E-5, + "p90" : 9.399999999999998E-5, + "p95" : 9.399999999999998E-5, + "p99" : 9.399999999999998E-5, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 498 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.71us", + "finishCpu" : "2.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.1" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.1", + "state" : "FINISHED", + "plan" : { + "id" : "1", + "root" : { + "@type" : "exchange", + "id" : "2572", + "type" : "GATHER", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "sort", + "id" : "2001", + "source" : { + "@type" : "remoteSource", + "id" : "1999", + "sourceFragmentIds" : [ "2" ], + "outputs" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "orderingScheme" : { + "orderBy" : [ { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "bigint", + "name" : "partkey_4" + } ], + "orderings" : { + "6|double|acctbal" : "DESC_NULLS_LAST", + "11|varchar(25)|name_9" : "ASC_NULLS_LAST", + "11|varchar(25)|name_1" : "ASC_NULLS_LAST", + "6|bigint|partkey_4" : "ASC_NULLS_LAST" + } + }, + "partial" : true + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ] ], + "orderingScheme" : { + "orderBy" : [ { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "bigint", + "name" : "partkey_4" + } ], + "orderings" : { + "6|double|acctbal" : "DESC_NULLS_LAST", + "11|varchar(25)|name_9" : "ASC_NULLS_LAST", + "11|varchar(25)|name_1" : "ASC_NULLS_LAST", + "6|bigint|partkey_4" : "ASC_NULLS_LAST" + } + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "ROUND_ROBIN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2572" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + }, + "2001" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + }, + "1999" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + } + }, + "costs" : { + "2572" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "2001" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "networkCost" : "NaN" + } + }, + "1999" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : 32724.260000000002, + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : "NaN", + "maxMemory" : 0.0, + "networkCost" : "NaN" + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2572\",\n \"name\" : \"LocalMerge\",\n \"descriptor\" : {\n \"orderBy\" : \"[acctbal DESC NULLS LAST, name_9 ASC NULLS LAST, name_1 ASC NULLS LAST, partkey_4 ASC NULLS LAST]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"2001\",\n \"name\" : \"PartialSort\",\n \"descriptor\" : {\n \"orderBy\" : \"[acctbal DESC NULLS LAST, name_9 ASC NULLS LAST, name_1 ASC NULLS LAST, partkey_4 ASC NULLS LAST]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1999\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[2]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)", "varchar(25)", "varchar(40)", "varchar(15)", "double", "varchar(101)", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.161800Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 15, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 15, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.98kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "4.60ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "3.11ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "11.10s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "1.57kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 4, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "773B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 4, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "9.16s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2738810500, + "min" : 0.0, + "max" : 4.57763671875E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "773B", + "failedOutputDataSize" : "0B", + "outputPositions" : 4, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 1, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1999", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.57kB", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 4, + "getOutputWall" : "236.30us", + "getOutputCpu" : "231.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.299999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.2999999999999994E-5, + "p90" : 6.4E-5, + "p95" : 7.299999999999999E-5, + "p99" : 7.299999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.18348320799999998, + "max" : 0.8806606249999999, + "p01" : 0.18348320799999998, + "p05" : 0.18348320799999998, + "p10" : 0.18717620799999998, + "p25" : 0.8773518749999999, + "p50" : 0.8795812499999999, + "p75" : 0.8800381249999999, + "p90" : 0.8800957909999999, + "p95" : 0.8806606249999999, + "p99" : 0.8806606249999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.45E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.462499999999999E-5, + "p90" : 6.524999999999999E-5, + "p95" : 7.45E-5, + "p99" : 7.45E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "9.16s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1416, + "averageBytesPerRequest" : 120, + "successfulRequestsCount" : 52, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 875.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 870.0, + "p75" : 875.0, + "p90" : 875.0, + "p95" : 875.0, + "p99" : 875.0, + "total" : 9 + } + } + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2572", + "operatorType" : "LocalMergeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 10.0, + "getOutputCalls" : 8, + "getOutputWall" : "779.71us", + "getOutputCpu" : "522.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.4999999999999995E-5, + "max" : 3.6499999999999993E-4, + "p01" : 5.4999999999999995E-5, + "p05" : 5.4999999999999995E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 5.4999999999999995E-5, + "p50" : 1.0199999999999999E-4, + "p75" : 3.6499999999999993E-4, + "p90" : 3.6499999999999993E-4, + "p95" : 3.6499999999999993E-4, + "p99" : 3.6499999999999993E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.180773375, + "max" : 0.8802491669999999, + "p01" : 0.180773375, + "p05" : 0.180773375, + "p10" : 0.180773375, + "p25" : 0.180773375, + "p50" : 0.8801394999999999, + "p75" : 0.8802491669999999, + "p90" : 0.8802491669999999, + "p95" : 0.8802491669999999, + "p99" : 0.8802491669999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 5.9291999999999994E-5, + "max" : 6.141669999999999E-4, + "p01" : 5.9291999999999994E-5, + "p05" : 5.9291999999999994E-5, + "p10" : 5.9291999999999994E-5, + "p25" : 5.9291999999999994E-5, + "p50" : 1.0624999999999998E-4, + "p75" : 6.141669999999999E-4, + "p90" : 6.141669999999999E-4, + "p95" : 6.141669999999999E-4, + "p99" : 6.141669999999999E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.94s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "11.32kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "11.32kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "2572", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "98.84us", + "addInputCpu" : "98.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 6.599999999999999E-5, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 4.0E-6, + "p50" : 6.999999999999999E-6, + "p75" : 3.0999999999999995E-5, + "p90" : 3.5E-5, + "p95" : 6.599999999999999E-5, + "p99" : 6.599999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4579999999999993E-6, + "max" : 6.6707E-5, + "p01" : 3.4579999999999993E-6, + "p05" : 3.4579999999999993E-6, + "p10" : 4.708999999999999E-6, + "p25" : 5.666999999999999E-6, + "p50" : 6.4589999999999995E-6, + "p75" : 3.191699999999999E-5, + "p90" : 3.3707999999999996E-5, + "p95" : 6.6707E-5, + "p99" : 6.6707E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "108.79us", + "finishCpu" : "107.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2001", + "operatorType" : "OrderByOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "493.83us", + "addInputCpu" : "152.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 45, + "getOutputWall" : "1.52ms", + "getOutputCpu" : "738.00us", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.2999999999999995E-5, + "max" : 2.1999999999999998E-4, + "p01" : 4.2999999999999995E-5, + "p05" : 4.2999999999999995E-5, + "p10" : 5.099999999999999E-5, + "p25" : 5.7999999999999994E-5, + "p50" : 7.699999999999999E-5, + "p75" : 1.4499999999999997E-4, + "p90" : 1.5E-4, + "p95" : 2.1999999999999998E-4, + "p99" : 2.1999999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 4.4958999999999994E-5, + "max" : 8.074159999999999E-4, + "p01" : 4.4958999999999994E-5, + "p05" : 4.4958999999999994E-5, + "p10" : 5.924999999999999E-5, + "p25" : 7.279199999999999E-5, + "p50" : 1.42708E-4, + "p75" : 2.2574999999999996E-4, + "p90" : 4.552489999999999E-4, + "p95" : 8.074159999999999E-4, + "p99" : 8.074159999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 20, + "finishWall" : "311.00us", + "finishCpu" : "292.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "115.42kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "115.42kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "2572", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 3, + "addInputCalls" : 2, + "addInputWall" : "178.46us", + "addInputCpu" : "180.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 10.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 1149 + }, + "Scheduled time distribution (s)" : { + "min" : 2.7499999999999995E-6, + "max" : 1.0912499999999998E-4, + "p01" : 2.7499999999999995E-6, + "p05" : 2.7499999999999995E-6, + "p10" : 2.7499999999999995E-6, + "p25" : 2.7499999999999995E-6, + "p50" : 7.249999999999999E-5, + "p75" : 1.0912499999999998E-4, + "p90" : 1.0912499999999998E-4, + "p95" : 1.0912499999999998E-4, + "p99" : 1.0912499999999998E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 3 + }, + "CPU time distribution (s)" : { + "min" : 2.9999999999999997E-6, + "max" : 1.0899999999999998E-4, + "p01" : 2.9999999999999997E-6, + "p05" : 2.9999999999999997E-6, + "p10" : 2.9999999999999997E-6, + "p25" : 2.9999999999999997E-6, + "p50" : 7.5E-5, + "p75" : 1.0899999999999998E-4, + "p90" : 1.0899999999999998E-4, + "p95" : 1.0899999999999998E-4, + "p99" : 1.0899999999999998E-4, + "total" : 3 + }, + "exchangeSerializerInputBytes" : { + "total" : 1149 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "5.92us", + "finishCpu" : "7.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.1.1.0", + "taskInstanceId" : -3949895908053803439, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.1.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "169B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "488B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.075304Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 1.4543533325195312E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 912824584 + } + }, + "noMoreSplits" : [ "1999" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.162240Z", + "firstStartTime" : "2026-03-30T07:59:03.190570Z", + "lastStartTime" : "2026-03-30T07:59:03.193119Z", + "lastEndTime" : "2026-03-30T07:59:04.074Z", + "endTime" : "2026-03-30T07:59:04.076633Z", + "elapsedTime" : "911.96ms", + "queuedTime" : "25.84ms", + "totalDrivers" : 5, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 5, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "488B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.10ms", + "totalCpuTime" : "996.00us", + "totalBlockedTime" : "4.40s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "377B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "169B", + "processedInputPositions" : 1, + "inputBlockedTime" : "3.52s", + "outputDataSize" : "169B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.190570Z", + "lastStartTime" : "2026-03-30T07:59:03.192541Z", + "lastEndTime" : "2026-03-30T07:59:04.073368Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 1.7747166E7, + "p01" : 3585958.0, + "p05" : 3585958.0, + "p10" : 3585958.0, + "p25" : 4104417.0, + "p50" : 4510875.0, + "p75" : 5545916.0, + "p90" : 5545916.0, + "p95" : 5545916.0, + "p99" : 5545916.0, + "min" : 3585958.0, + "max" : 5545916.0, + "avg" : 4436791.5 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.545222832E9, + "p01" : 8.86208208E8, + "p05" : 8.86208208E8, + "p10" : 8.86208208E8, + "p25" : 8.86295041E8, + "p50" : 8.86344375E8, + "p75" : 8.86375208E8, + "p90" : 8.86375208E8, + "p95" : 8.86375208E8, + "p99" : 8.86375208E8, + "min" : 8.86208208E8, + "max" : 8.86375208E8, + "avg" : 8.86305708E8 + }, + "totalScheduledTime" : "770.13us", + "totalCpuTime" : "721.00us", + "totalBlockedTime" : "3.52s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "377B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "169B", + "processedInputPositions" : 1, + "inputBlockedTime" : "3.52s", + "outputDataSize" : "169B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1999", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "377B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "169B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "41.92us", + "getOutputCpu" : "41.00us", + "outputDataSize" : "169B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.0999999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0999999999999994E-5, + "p90" : 4.0999999999999994E-5, + "p95" : 4.0999999999999994E-5, + "p99" : 4.0999999999999994E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.8785632499999999, + "max" : 0.8800381249999999, + "p01" : 0.8785632499999999, + "p05" : 0.8785632499999999, + "p10" : 0.8785632499999999, + "p25" : 0.8795812499999999, + "p50" : 0.8797404999999999, + "p75" : 0.8800381249999999, + "p90" : 0.8800381249999999, + "p95" : 0.8800381249999999, + "p99" : 0.8800381249999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.1915999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.1915999999999996E-5, + "p90" : 4.1915999999999996E-5, + "p95" : 4.1915999999999996E-5, + "p99" : 4.1915999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.52s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 440, + "averageBytesPerRequest" : 92, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 875.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 873.0, + "p50" : 875.0, + "p75" : 875.0, + "p90" : 875.0, + "p95" : 875.0, + "p99" : 875.0, + "total" : 4 + } + } + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2001", + "operatorType" : "OrderByOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "21.75us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "169B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 15, + "getOutputWall" : "260.38us", + "getOutputCpu" : "248.00us", + "outputDataSize" : "169B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.4999999999999995E-5, + "max" : 1.4499999999999997E-4, + "p01" : 5.4999999999999995E-5, + "p05" : 5.4999999999999995E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 7.299999999999999E-5, + "p50" : 7.399999999999998E-5, + "p75" : 1.4499999999999997E-4, + "p90" : 1.4499999999999997E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.924999999999999E-5, + "max" : 1.4733499999999998E-4, + "p01" : 5.924999999999999E-5, + "p05" : 5.924999999999999E-5, + "p10" : 5.924999999999999E-5, + "p25" : 7.779099999999999E-5, + "p50" : 7.891699999999999E-5, + "p75" : 1.4733499999999998E-4, + "p90" : 1.4733499999999998E-4, + "p95" : 1.4733499999999998E-4, + "p99" : 1.4733499999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 6, + "finishWall" : "81.17us", + "finishCpu" : "77.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "115.37kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "115.37kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "2572", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "63.17us", + "addInputCpu" : "63.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "169B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "169B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 6.599999999999999E-5, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 4.0E-6, + "p50" : 5.999999999999999E-6, + "p75" : 6.599999999999999E-5, + "p90" : 6.599999999999999E-5, + "p95" : 6.599999999999999E-5, + "p99" : 6.599999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.457999999999999E-6, + "max" : 6.6707E-5, + "p01" : 5.457999999999999E-6, + "p05" : 5.457999999999999E-6, + "p10" : 5.457999999999999E-6, + "p25" : 5.666999999999999E-6, + "p50" : 5.916999999999999E-6, + "p75" : 6.6707E-5, + "p90" : 6.6707E-5, + "p95" : 6.6707E-5, + "p99" : 6.6707E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "20.58us", + "finishCpu" : "17.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.193119Z", + "lastStartTime" : "2026-03-30T07:59:03.193119Z", + "lastEndTime" : "2026-03-30T07:59:04.074006Z", + "inputPipeline" : false, + "outputPipeline" : true, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6120625.0, + "p01" : 6120625.0, + "p05" : 6120625.0, + "p10" : 6120625.0, + "p25" : 6120625.0, + "p50" : 6120625.0, + "p75" : 6120625.0, + "p90" : 6120625.0, + "p95" : 6120625.0, + "p99" : 6120625.0, + "min" : 6120625.0, + "max" : 6120625.0, + "avg" : 6120625.0 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.870005E8, + "p01" : 8.870005E8, + "p05" : 8.870005E8, + "p10" : 8.870005E8, + "p25" : 8.870005E8, + "p50" : 8.870005E8, + "p75" : 8.870005E8, + "p90" : 8.870005E8, + "p95" : 8.870005E8, + "p99" : 8.870005E8, + "min" : 8.870005E8, + "max" : 8.870005E8, + "avg" : 8.870005E8 + }, + "totalScheduledTime" : "330.96us", + "totalCpuTime" : "275.00us", + "totalBlockedTime" : "880.25ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "169B", + "processedInputPositions" : 1, + "inputBlockedTime" : "880.25ms", + "outputDataSize" : "169B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2572", + "operatorType" : "LocalMergeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "169B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 3, + "getOutputWall" : "106.25us", + "getOutputCpu" : "102.00us", + "outputDataSize" : "169B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.0199999999999999E-4, + "max" : 1.0199999999999999E-4, + "p01" : 1.0199999999999999E-4, + "p05" : 1.0199999999999999E-4, + "p10" : 1.0199999999999999E-4, + "p25" : 1.0199999999999999E-4, + "p50" : 1.0199999999999999E-4, + "p75" : 1.0199999999999999E-4, + "p90" : 1.0199999999999999E-4, + "p95" : 1.0199999999999999E-4, + "p99" : 1.0199999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.8802491669999999, + "max" : 0.8802491669999999, + "p01" : 0.8802491669999999, + "p05" : 0.8802491669999999, + "p10" : 0.8802491669999999, + "p25" : 0.8802491669999999, + "p50" : 0.8802491669999999, + "p75" : 0.8802491669999999, + "p90" : 0.8802491669999999, + "p95" : 0.8802491669999999, + "p99" : 0.8802491669999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0624999999999998E-4, + "max" : 1.0624999999999998E-4, + "p01" : 1.0624999999999998E-4, + "p05" : 1.0624999999999998E-4, + "p10" : 1.0624999999999998E-4, + "p25" : 1.0624999999999998E-4, + "p50" : 1.0624999999999998E-4, + "p75" : 1.0624999999999998E-4, + "p90" : 1.0624999999999998E-4, + "p95" : 1.0624999999999998E-4, + "p99" : 1.0624999999999998E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "880.25ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.41kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "2572", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "107.58us", + "addInputCpu" : "108.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "169B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "169B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 365 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0912499999999998E-4, + "max" : 1.0912499999999998E-4, + "p01" : 1.0912499999999998E-4, + "p05" : 1.0912499999999998E-4, + "p10" : 1.0912499999999998E-4, + "p25" : 1.0912499999999998E-4, + "p50" : 1.0912499999999998E-4, + "p75" : 1.0912499999999998E-4, + "p90" : 1.0912499999999998E-4, + "p95" : 1.0912499999999998E-4, + "p99" : 1.0912499999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 1.0899999999999998E-4, + "max" : 1.0899999999999998E-4, + "p01" : 1.0899999999999998E-4, + "p05" : 1.0899999999999998E-4, + "p10" : 1.0899999999999998E-4, + "p25" : 1.0899999999999998E-4, + "p50" : 1.0899999999999998E-4, + "p75" : 1.0899999999999998E-4, + "p90" : 1.0899999999999998E-4, + "p95" : 1.0899999999999998E-4, + "p99" : 1.0899999999999998E-4, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 365 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.54us", + "finishCpu" : "1.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.1.2.0", + "taskInstanceId" : -7251982342119191543, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.1.2.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.075122Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 911387791 + } + }, + "noMoreSplits" : [ "1999" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.162802Z", + "firstStartTime" : "2026-03-30T07:59:03.194519Z", + "lastStartTime" : "2026-03-30T07:59:03.892504Z", + "lastEndTime" : "2026-03-30T07:59:04.073Z", + "endTime" : "2026-03-30T07:59:04.075531Z", + "elapsedTime" : "909.72ms", + "queuedTime" : "28.71ms", + "totalDrivers" : 5, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 5, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.45ms", + "totalCpuTime" : "698.00us", + "totalBlockedTime" : "2.30s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "2.12s", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.194518Z", + "lastStartTime" : "2026-03-30T07:59:03.889157Z", + "lastEndTime" : "2026-03-30T07:59:04.073309Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 1.397787125E9, + "p01" : 3043083.0, + "p05" : 3043083.0, + "p10" : 3043083.0, + "p25" : 3098625.0, + "p50" : 6.93977458E8, + "p75" : 6.97667959E8, + "p90" : 6.97667959E8, + "p95" : 6.97667959E8, + "p99" : 6.97667959E8, + "min" : 3043083.0, + "max" : 6.97667959E8, + "avg" : 3.4944678125E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.527069667E9, + "p01" : 8.81709375E8, + "p05" : 8.81709375E8, + "p10" : 8.81709375E8, + "p25" : 8.8172125E8, + "p50" : 8.81815917E8, + "p75" : 8.81823125E8, + "p90" : 8.81823125E8, + "p95" : 8.81823125E8, + "p99" : 8.81823125E8, + "min" : 8.81709375E8, + "max" : 8.81823125E8, + "avg" : 8.8176741675E8 + }, + "totalScheduledTime" : "1.34ms", + "totalCpuTime" : "593.00us", + "totalBlockedTime" : "2.12s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "2.12s", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1999", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.18348320799999998, + "max" : 0.8773518749999999, + "p01" : 0.18348320799999998, + "p05" : 0.18348320799999998, + "p10" : 0.18348320799999998, + "p25" : 0.18717620799999998, + "p50" : 0.8757999159999998, + "p75" : 0.8773518749999999, + "p90" : 0.8773518749999999, + "p95" : 0.8773518749999999, + "p99" : 0.8773518749999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.12s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 875.0, + "max" : 875.0, + "p01" : 875.0, + "p05" : 875.0, + "p10" : 875.0, + "p25" : 875.0, + "p50" : 875.0, + "p75" : 875.0, + "p90" : 875.0, + "p95" : 875.0, + "p99" : 875.0, + "total" : 3 + } + } + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2001", + "operatorType" : "OrderByOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 9, + "getOutputWall" : "937.92us", + "getOutputCpu" : "195.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.2999999999999995E-5, + "max" : 1.2599999999999997E-4, + "p01" : 4.2999999999999995E-5, + "p05" : 4.2999999999999995E-5, + "p10" : 4.2999999999999995E-5, + "p25" : 5.7999999999999994E-5, + "p50" : 7.699999999999999E-5, + "p75" : 1.2599999999999997E-4, + "p90" : 1.2599999999999997E-4, + "p95" : 1.2599999999999997E-4, + "p99" : 1.2599999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.4958999999999994E-5, + "max" : 8.074159999999999E-4, + "p01" : 4.4958999999999994E-5, + "p05" : 4.4958999999999994E-5, + "p10" : 4.4958999999999994E-5, + "p25" : 6.2416E-5, + "p50" : 1.42708E-4, + "p75" : 8.074159999999999E-4, + "p90" : 8.074159999999999E-4, + "p95" : 8.074159999999999E-4, + "p99" : 8.074159999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "119.58us", + "finishCpu" : "109.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "2572", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 3.0999999999999995E-5, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 1.6999999999999996E-5, + "p50" : 2.0999999999999995E-5, + "p75" : 3.0999999999999995E-5, + "p90" : 3.0999999999999995E-5, + "p95" : 3.0999999999999995E-5, + "p99" : 3.0999999999999995E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.4589999999999995E-6, + "max" : 3.191699999999999E-5, + "p01" : 6.4589999999999995E-6, + "p05" : 6.4589999999999995E-6, + "p10" : 6.4589999999999995E-6, + "p25" : 1.6582999999999997E-5, + "p50" : 2.1249999999999998E-5, + "p75" : 3.191699999999999E-5, + "p90" : 3.191699999999999E-5, + "p95" : 3.191699999999999E-5, + "p99" : 3.191699999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "76.21us", + "finishCpu" : "76.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.892504Z", + "lastStartTime" : "2026-03-30T07:59:03.892504Z", + "lastEndTime" : "2026-03-30T07:59:04.073755Z", + "inputPipeline" : false, + "outputPipeline" : true, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 7.0101225E8, + "p01" : 7.0101225E8, + "p05" : 7.0101225E8, + "p10" : 7.0101225E8, + "p25" : 7.0101225E8, + "p50" : 7.0101225E8, + "p75" : 7.0101225E8, + "p90" : 7.0101225E8, + "p95" : 7.0101225E8, + "p99" : 7.0101225E8, + "min" : 7.0101225E8, + "max" : 7.0101225E8, + "avg" : 7.0101225E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.82261042E8, + "p01" : 8.82261042E8, + "p05" : 8.82261042E8, + "p10" : 8.82261042E8, + "p25" : 8.82261042E8, + "p50" : 8.82261042E8, + "p75" : 8.82261042E8, + "p90" : 8.82261042E8, + "p95" : 8.82261042E8, + "p99" : 8.82261042E8, + "min" : 8.82261042E8, + "max" : 8.82261042E8, + "avg" : 8.82261042E8 + }, + "totalScheduledTime" : "108.46us", + "totalCpuTime" : "105.00us", + "totalBlockedTime" : "180.77ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "180.77ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2572", + "operatorType" : "LocalMergeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 2, + "getOutputWall" : "59.29us", + "getOutputCpu" : "55.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.4999999999999995E-5, + "max" : 5.4999999999999995E-5, + "p01" : 5.4999999999999995E-5, + "p05" : 5.4999999999999995E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 5.4999999999999995E-5, + "p50" : 5.4999999999999995E-5, + "p75" : 5.4999999999999995E-5, + "p90" : 5.4999999999999995E-5, + "p95" : 5.4999999999999995E-5, + "p99" : 5.4999999999999995E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.180773375, + "max" : 0.180773375, + "p01" : 0.180773375, + "p05" : 0.180773375, + "p10" : 0.180773375, + "p25" : 0.180773375, + "p50" : 0.180773375, + "p75" : 0.180773375, + "p90" : 0.180773375, + "p95" : 0.180773375, + "p99" : 0.180773375, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 5.9291999999999994E-5, + "max" : 5.9291999999999994E-5, + "p01" : 5.9291999999999994E-5, + "p05" : 5.9291999999999994E-5, + "p10" : 5.9291999999999994E-5, + "p25" : 5.9291999999999994E-5, + "p50" : 5.9291999999999994E-5, + "p75" : 5.9291999999999994E-5, + "p90" : 5.9291999999999994E-5, + "p95" : 5.9291999999999994E-5, + "p99" : 5.9291999999999994E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "180.77ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "2572", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.9999999999999997E-6, + "max" : 2.9999999999999997E-6, + "p01" : 2.9999999999999997E-6, + "p05" : 2.9999999999999997E-6, + "p10" : 2.9999999999999997E-6, + "p25" : 2.9999999999999997E-6, + "p50" : 2.9999999999999997E-6, + "p75" : 2.9999999999999997E-6, + "p90" : 2.9999999999999997E-6, + "p95" : 2.9999999999999997E-6, + "p99" : 2.9999999999999997E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 2.7499999999999995E-6, + "max" : 2.7499999999999995E-6, + "p01" : 2.7499999999999995E-6, + "p05" : 2.7499999999999995E-6, + "p10" : 2.7499999999999995E-6, + "p25" : 2.7499999999999995E-6, + "p50" : 2.7499999999999995E-6, + "p75" : 2.7499999999999995E-6, + "p90" : 2.7499999999999995E-6, + "p95" : 2.7499999999999995E-6, + "p99" : 2.7499999999999995E-6, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "2.75us", + "finishCpu" : "3.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.1.0.0", + "taskInstanceId" : 6821322570051332948, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.1.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "604B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "1.50kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.077069Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 3, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 4.57763671875E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 914598125 + } + }, + "noMoreSplits" : [ "1999" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.162415Z", + "firstStartTime" : "2026-03-30T07:59:03.190443Z", + "lastStartTime" : "2026-03-30T07:59:03.193660Z", + "lastEndTime" : "2026-03-30T07:59:04.075Z", + "endTime" : "2026-03-30T07:59:04.077343Z", + "elapsedTime" : "913.58ms", + "queuedTime" : "26.68ms", + "totalDrivers" : 5, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 5, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.50kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.05ms", + "totalCpuTime" : "1.42ms", + "totalBlockedTime" : "4.40s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.20kB", + "internalNetworkInputPositions" : 3, + "processedInputDataSize" : "604B", + "processedInputPositions" : 3, + "inputBlockedTime" : "3.52s", + "outputDataSize" : "604B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.190443Z", + "lastStartTime" : "2026-03-30T07:59:03.192162Z", + "lastEndTime" : "2026-03-30T07:59:04.073768Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 3.175825E7, + "p01" : 7075291.0, + "p05" : 7075291.0, + "p10" : 7075291.0, + "p25" : 7603542.0, + "p50" : 8297792.0, + "p75" : 8781625.0, + "p90" : 8781625.0, + "p95" : 8781625.0, + "p99" : 8781625.0, + "min" : 7075291.0, + "max" : 8781625.0, + "avg" : 7939562.5 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.561091459E9, + "p01" : 8.90159834E8, + "p05" : 8.90159834E8, + "p10" : 8.90159834E8, + "p25" : 8.90218625E8, + "p50" : 8.9032125E8, + "p75" : 8.9039175E8, + "p90" : 8.9039175E8, + "p95" : 8.9039175E8, + "p99" : 8.9039175E8, + "min" : 8.90159834E8, + "max" : 8.9039175E8, + "avg" : 8.9027286475E8 + }, + "totalScheduledTime" : "1.33ms", + "totalCpuTime" : "956.00us", + "totalBlockedTime" : "3.52s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.20kB", + "internalNetworkInputPositions" : 3, + "processedInputDataSize" : "604B", + "processedInputPositions" : 3, + "inputBlockedTime" : "3.52s", + "outputDataSize" : "604B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1999", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.20kB", + "internalNetworkInputPositions" : 3, + "inputDataSize" : "604B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 3, + "getOutputWall" : "194.38us", + "getOutputCpu" : "190.00us", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.299999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.2999999999999994E-5, + "p50" : 6.4E-5, + "p75" : 7.299999999999999E-5, + "p90" : 7.299999999999999E-5, + "p95" : 7.299999999999999E-5, + "p99" : 7.299999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.8790182489999999, + "max" : 0.8806606249999999, + "p01" : 0.8790182489999999, + "p05" : 0.8790182489999999, + "p10" : 0.8790182489999999, + "p25" : 0.8798468329999999, + "p50" : 0.8800957909999999, + "p75" : 0.8806606249999999, + "p90" : 0.8806606249999999, + "p95" : 0.8806606249999999, + "p99" : 0.8806606249999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.45E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.462499999999999E-5, + "p50" : 6.524999999999999E-5, + "p75" : 7.45E-5, + "p90" : 7.45E-5, + "p95" : 7.45E-5, + "p99" : 7.45E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.52s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1416, + "averageBytesPerRequest" : 200, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 870.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 870.0, + "p75" : 870.0, + "p90" : 870.0, + "p95" : 870.0, + "p99" : 870.0, + "total" : 6 + } + } + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2001", + "operatorType" : "OrderByOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "472.08us", + "addInputCpu" : "130.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "604B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 21, + "getOutputWall" : "324.42us", + "getOutputCpu" : "295.00us", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.099999999999999E-5, + "max" : 2.1999999999999998E-4, + "p01" : 5.099999999999999E-5, + "p05" : 5.099999999999999E-5, + "p10" : 5.099999999999999E-5, + "p25" : 1.0999999999999999E-4, + "p50" : 1.5E-4, + "p75" : 2.1999999999999998E-4, + "p90" : 2.1999999999999998E-4, + "p95" : 2.1999999999999998E-4, + "p99" : 2.1999999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 7.279199999999999E-5, + "max" : 4.552489999999999E-4, + "p01" : 7.279199999999999E-5, + "p05" : 7.279199999999999E-5, + "p10" : 7.279199999999999E-5, + "p25" : 1.5295699999999998E-4, + "p50" : 2.2574999999999996E-4, + "p75" : 4.552489999999999E-4, + "p90" : 4.552489999999999E-4, + "p95" : 4.552489999999999E-4, + "p99" : 4.552489999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 10, + "finishWall" : "110.25us", + "finishCpu" : "106.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "115.42kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "115.42kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "2572", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "35.67us", + "addInputCpu" : "35.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "604B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 3.5E-5, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 4.0E-6, + "p50" : 5.999999999999999E-6, + "p75" : 3.5E-5, + "p90" : 3.5E-5, + "p95" : 3.5E-5, + "p99" : 3.5E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4579999999999993E-6, + "max" : 3.3707999999999996E-5, + "p01" : 3.4579999999999993E-6, + "p05" : 3.4579999999999993E-6, + "p10" : 3.4579999999999993E-6, + "p25" : 4.708999999999999E-6, + "p50" : 5.791999999999999E-6, + "p75" : 3.3707999999999996E-5, + "p90" : 3.3707999999999996E-5, + "p95" : 3.3707999999999996E-5, + "p99" : 3.3707999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "12.00us", + "finishCpu" : "14.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.193659Z", + "lastStartTime" : "2026-03-30T07:59:03.193659Z", + "lastEndTime" : "2026-03-30T07:59:04.075052Z", + "inputPipeline" : false, + "outputPipeline" : true, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 1.0275875E7, + "p01" : 1.0275875E7, + "p05" : 1.0275875E7, + "p10" : 1.0275875E7, + "p25" : 1.0275875E7, + "p50" : 1.0275875E7, + "p75" : 1.0275875E7, + "p90" : 1.0275875E7, + "p95" : 1.0275875E7, + "p99" : 1.0275875E7, + "min" : 1.0275875E7, + "max" : 1.0275875E7, + "avg" : 1.0275875E7 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.9165975E8, + "p01" : 8.9165975E8, + "p05" : 8.9165975E8, + "p10" : 8.9165975E8, + "p25" : 8.9165975E8, + "p50" : 8.9165975E8, + "p75" : 8.9165975E8, + "p90" : 8.9165975E8, + "p95" : 8.9165975E8, + "p99" : 8.9165975E8, + "min" : 8.9165975E8, + "max" : 8.9165975E8, + "avg" : 8.9165975E8 + }, + "totalScheduledTime" : "713.08us", + "totalCpuTime" : "466.00us", + "totalBlockedTime" : "880.14ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "604B", + "processedInputPositions" : 3, + "inputBlockedTime" : "880.14ms", + "outputDataSize" : "604B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2572", + "operatorType" : "LocalMergeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "604B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 3, + "getOutputWall" : "614.17us", + "getOutputCpu" : "365.00us", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.6499999999999993E-4, + "max" : 3.6499999999999993E-4, + "p01" : 3.6499999999999993E-4, + "p05" : 3.6499999999999993E-4, + "p10" : 3.6499999999999993E-4, + "p25" : 3.6499999999999993E-4, + "p50" : 3.6499999999999993E-4, + "p75" : 3.6499999999999993E-4, + "p90" : 3.6499999999999993E-4, + "p95" : 3.6499999999999993E-4, + "p99" : 3.6499999999999993E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 3.0, + "max" : 3.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.8801394999999999, + "max" : 0.8801394999999999, + "p01" : 0.8801394999999999, + "p05" : 0.8801394999999999, + "p10" : 0.8801394999999999, + "p25" : 0.8801394999999999, + "p50" : 0.8801394999999999, + "p75" : 0.8801394999999999, + "p90" : 0.8801394999999999, + "p95" : 0.8801394999999999, + "p99" : 0.8801394999999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 6.141669999999999E-4, + "max" : 6.141669999999999E-4, + "p01" : 6.141669999999999E-4, + "p05" : 6.141669999999999E-4, + "p10" : 6.141669999999999E-4, + "p25" : 6.141669999999999E-4, + "p50" : 6.141669999999999E-4, + "p75" : 6.141669999999999E-4, + "p90" : 6.141669999999999E-4, + "p95" : 6.141669999999999E-4, + "p99" : 6.141669999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "880.14ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "11.32kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "11.32kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 1, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "2572", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "70.88us", + "addInputCpu" : "72.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "604B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 784 + }, + "Scheduled time distribution (s)" : { + "min" : 7.249999999999999E-5, + "max" : 7.249999999999999E-5, + "p01" : 7.249999999999999E-5, + "p05" : 7.249999999999999E-5, + "p10" : 7.249999999999999E-5, + "p25" : 7.249999999999999E-5, + "p50" : 7.249999999999999E-5, + "p75" : 7.249999999999999E-5, + "p90" : 7.249999999999999E-5, + "p95" : 7.249999999999999E-5, + "p99" : 7.249999999999999E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 3.0, + "max" : 3.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 7.5E-5, + "max" : 7.5E-5, + "p01" : 7.5E-5, + "p05" : 7.5E-5, + "p10" : 7.5E-5, + "p25" : 7.5E-5, + "p50" : 7.5E-5, + "p75" : 7.5E-5, + "p90" : 7.5E-5, + "p95" : 7.5E-5, + "p99" : 7.5E-5, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 784 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.63us", + "finishCpu" : "3.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.2" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.2", + "state" : "FINISHED", + "plan" : { + "id" : "2", + "root" : { + "@type" : "project", + "id" : "758", + "source" : { + "@type" : "filter", + "id" : "2248", + "source" : { + "@type" : "join", + "id" : "1020", + "type" : "INNER", + "left" : { + "@type" : "join", + "id" : "517", + "type" : "LEFT", + "left" : { + "@type" : "remoteSource", + "id" : "1997", + "sourceFragmentIds" : [ "3" ], + "outputs" : [ { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "aggregation", + "id" : "20", + "source" : { + "@type" : "exchange", + "id" : "2719", + "type" : "REPARTITION", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_16" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "min_41" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "2725", + "sourceFragmentIds" : [ "12" ], + "outputs" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "min_41" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "min_41" + } ] ] + }, + "aggregations" : { + "6|double|min" : { + "resolvedFunction" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "min" + }, + "returnType" : "double", + "argumentTypes" : [ "double" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "min(t):t", + "functionKind" : "AGGREGATE", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : true, + "argumentNullable" : [ false ] + }, + "typeDependencies" : { + "double" : "double" + }, + "functionDependencies" : [ { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$operator$comparison_unordered_last" + }, + "returnType" : "integer", + "argumentTypes" : [ "double", "double" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$operator$comparison_unordered_last(t,t):integer", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + } ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "double", + "name" : "min_41" + } ], + "distinct" : false + } + }, + "groupingSets" : { + "groupingKeys" : [ { + "type" : "bigint", + "name" : "partkey_16" + } ], + "groupingSetCount" : 1, + "globalGroupingSets" : [ ] + }, + "preGroupedSymbols" : [ ], + "step" : "FINAL", + "isInputReducingAggregation" : false + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "partkey_4" + }, + "right" : { + "type" : "bigint", + "name" : "partkey_16" + } + } ], + "leftOutputSymbols" : [ { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "rightOutputSymbols" : [ { + "type" : "double", + "name" : "min" + } ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { } + }, + "right" : { + "@type" : "exchange", + "id" : "2571", + "type" : "GATHER", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "double", + "name" : "min_40" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1998", + "sourceFragmentIds" : [ "19" ], + "outputs" : [ { + "type" : "double", + "name" : "min_40" + } ], + "exchangeType" : "REPLICATE", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "double", + "name" : "min_40" + } ] ] + }, + "criteria" : [ ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "double", + "name" : "min" + } ], + "rightOutputSymbols" : [ { + "type" : "double", + "name" : "min_40" + } ], + "maySkipOutputDuplicates" : false, + "distributionType" : "REPLICATED", + "dynamicFilters" : { } + }, + "predicate" : { + "@type" : "comparison", + "operator" : "EQUAL", + "left" : { + "@type" : "reference", + "type" : "double", + "name" : "supplycost" + }, + "right" : { + "@type" : "coalesce", + "operands" : [ { + "@type" : "reference", + "type" : "double", + "name" : "min" + }, { + "@type" : "reference", + "type" : "double", + "name" : "min_40" + } ] + } + } + }, + "assignments" : { + "assignments" : { + "6|bigint|partkey_4" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_4" + }, + "11|varchar(25)|mfgr" : { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "mfgr" + }, + "11|varchar(25)|name_1" : { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "name_1" + }, + "11|varchar(40)|address" : { + "@type" : "reference", + "type" : "varchar(40)", + "name" : "address" + }, + "11|varchar(15)|phone" : { + "@type" : "reference", + "type" : "varchar(15)", + "name" : "phone" + }, + "6|double|acctbal" : { + "@type" : "reference", + "type" : "double", + "name" : "acctbal" + }, + "12|varchar(101)|comment_2" : { + "@type" : "reference", + "type" : "varchar(101)", + "name" : "comment_2" + }, + "11|varchar(25)|name_9" : { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "name_9" + } + } + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "double", + "name" : "min" + }, { + "type" : "double", + "name" : "min_40" + }, { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "min_41" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "ROUND_ROBIN" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "758" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + }, + "2248" : { + "outputRowCount" : "NaN", + "symbolStatistics" : { } + }, + "1020" : { + "outputRowCount" : 28.8, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + }, + "517" : { + "outputRowCount" : 28.8, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + }, + "1997" : { + "outputRowCount" : 28.8, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + }, + "20" : { + "outputRowCount" : 1600.0, + "symbolStatistics" : { + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + } + } + }, + "2719" : { + "outputRowCount" : 1600.0, + "symbolStatistics" : { + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + } + } + }, + "2725" : { + "outputRowCount" : 1600.0, + "symbolStatistics" : { + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + } + } + }, + "2571" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { } + }, + "1998" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { } + } + }, + "costs" : { + "758" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : 32724.260000000002, + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : "NaN", + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "2248" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : 32724.260000000002, + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 5807.088, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1020" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : 32724.260000000002, + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 11399.975999999999, + "maxMemory" : 27.0, + "networkCost" : 0.0 + } + }, + "517" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : 32697.260000000002, + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 39636.576, + "maxMemory" : 28800.0, + "networkCost" : 0.0 + } + }, + "1997" : { + "cpuCost" : 1076092.8760000002, + "maxMemory" : 4002.66, + "maxMemoryWhenOutputting" : 3897.26, + "networkCost" : 247317.388, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 5288.688, + "maxMemory" : 0.0, + "networkCost" : 5288.688 + } + }, + "20" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : 28800.0, + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 28800.0, + "maxMemory" : 28800.0, + "networkCost" : 0.0 + } + }, + "2719" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 28800.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "2725" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : 28800.0, + "maxMemory" : 0.0, + "networkCost" : 28800.0 + } + }, + "2571" : { + "cpuCost" : 2.0, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 27.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1998" : { + "cpuCost" : 2.0, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 27.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 27.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"758\",\n \"name\" : \"FilterProject\",\n \"descriptor\" : {\n \"filterPredicate\" : \"(supplycost = COALESCE(min, min_40))\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1020\",\n \"name\" : \"CrossJoin\",\n \"descriptor\" : { },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min_40\"\n } ],\n \"details\" : [ \"Distribution: REPLICATED\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"517\",\n \"name\" : \"LeftJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(partkey_4 = partkey_16)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1997\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[3]\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"20\",\n \"name\" : \"Aggregate\",\n \"descriptor\" : {\n \"type\" : \"FINAL\",\n \"keys\" : \"[partkey_16]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min\"\n } ],\n \"details\" : [ \"min := min(min_41)\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"2719\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"HASH\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[partkey_16::bigint]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min_41\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"2725\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[12]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min_41\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n } ]\n }, {\n \"id\" : \"2571\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"SINGLE\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[]\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"min_40\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1998\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[19]\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"min_40\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)", "varchar(25)", "varchar(40)", "varchar(15)", "double", "varchar(101)", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.158073Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 51, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 51, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.14kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "90.96ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "37.94ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "5.77s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "26.36kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 1478, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "26.84kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 1478, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "3.31s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2732619916, + "min" : 0.0, + "max" : 3.0994415283203125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "773B", + "failedOutputDataSize" : "0B", + "outputPositions" : 4, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 2, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2725", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "24.39kB", + "internalNetworkInputPositions" : 1470, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 316240.0, + "getOutputCalls" : 27, + "getOutputWall" : "4.52ms", + "getOutputCpu" : "1.06ms", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.1599999999999996E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0099999999999999E-4, + "p75" : 2.0299999999999997E-4, + "p90" : 2.0999999999999998E-4, + "p95" : 2.1599999999999996E-4, + "p99" : 2.1599999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 343.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 144.0, + "p75" : 191.0, + "p90" : 251.0, + "p95" : 343.0, + "p99" : 343.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.16337891699999998, + "max" : 0.18318779199999996, + "p01" : 0.16337891699999998, + "p05" : 0.16337891699999998, + "p10" : 0.16460912399999997, + "p25" : 0.16759108199999997, + "p50" : 0.17079924999999999, + "p75" : 0.17521183299999998, + "p90" : 0.18010537399999998, + "p95" : 0.18318779199999996, + "p99" : 0.18318779199999996, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0016008759999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0491699999999998E-4, + "p75" : 8.802919999999999E-4, + "p90" : 9.684999999999999E-4, + "p95" : 0.0016008759999999998, + "p99" : 0.0016008759999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.05s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 6000, + "averageBytesPerRequest" : 921, + "successfulRequestsCount" : 108, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 178.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 169.0, + "p90" : 178.0, + "p95" : 178.0, + "p99" : 178.0, + "total" : 18 + } + } + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 181146.0, + "getOutputCalls" : 108, + "getOutputWall" : "2.16ms", + "getOutputCpu" : "881.00us", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 2.1499999999999997E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.9999999999999996E-5, + "p25" : 5.199999999999999E-5, + "p50" : 6.199999999999999E-5, + "p75" : 7.399999999999998E-5, + "p90" : 9.899999999999998E-5, + "p95" : 2.1499999999999997E-4, + "p99" : 2.1499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 109.0, + "max" : 138.0, + "p01" : 109.0, + "p05" : 109.0, + "p10" : 112.0, + "p25" : 116.0, + "p50" : 120.0, + "p75" : 136.0, + "p90" : 137.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.15045154099999997, + "max" : 0.16682604199999998, + "p01" : 0.15045154099999997, + "p05" : 0.15045154099999997, + "p10" : 0.152428458, + "p25" : 0.15679516599999999, + "p50" : 0.16072708299999997, + "p75" : 0.16287875, + "p90" : 0.16526154099999998, + "p95" : 0.16682604199999998, + "p99" : 0.16682604199999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4457999999999994E-5, + "max" : 9.209179999999998E-4, + "p01" : 3.4457999999999994E-5, + "p05" : 3.4457999999999994E-5, + "p10" : 4.037499999999999E-5, + "p25" : 5.591799999999999E-5, + "p50" : 7.020799999999999E-5, + "p75" : 2.9012699999999994E-4, + "p90" : 3.737929999999999E-4, + "p95" : 9.209179999999998E-4, + "p99" : 9.209179999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.91s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1998", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "120B", + "internalNetworkInputPositions" : 3, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 3, + "getOutputWall" : "188.29us", + "getOutputCpu" : "173.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.599999999999999E-5, + "p90" : 5.2999999999999994E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.013879999999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0016689579999999997, + "p50" : 0.003926915999999999, + "p75" : 0.010142583999999998, + "p90" : 0.013825415999999998, + "p95" : 0.013879999999999998, + "p99" : 0.013879999999999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.645799999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.7582999999999995E-5, + "p90" : 5.424999999999999E-5, + "p95" : 8.645799999999999E-5, + "p99" : 8.645799999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "59.63ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 96, + "averageBytesPerRequest" : 18, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 0, + "planNodeId" : "1997", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.85kB", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "1001B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 4, + "getOutputWall" : "204.17us", + "getOutputCpu" : "196.00us", + "outputDataSize" : "1001B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.899999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.2999999999999995E-5, + "p90" : 5.2999999999999994E-5, + "p95" : 5.899999999999999E-5, + "p99" : 5.899999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.08071483299999999, + "max" : 0.11020291599999998, + "p01" : 0.08071483299999999, + "p05" : 0.08071483299999999, + "p10" : 0.08396170799999998, + "p25" : 0.09991345799999998, + "p50" : 0.10027374999999998, + "p75" : 0.10716233399999998, + "p90" : 0.10994774999999998, + "p95" : 0.11020291599999998, + "p99" : 0.11020291599999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 6.062499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.545799999999999E-5, + "p90" : 5.574999999999999E-5, + "p95" : 6.062499999999999E-5, + "p99" : 6.062499999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.19s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1136, + "averageBytesPerRequest" : 142, + "successfulRequestsCount" : 52, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 112.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 104.0, + "p75" : 107.0, + "p90" : 112.0, + "p95" : 112.0, + "p99" : 112.0, + "total" : 9 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 3, + "planNodeId" : "758", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "9.33us", + "addInputCpu" : "12.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.07kB", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 59, + "getOutputWall" : "2.31ms", + "getOutputCpu" : "1.51ms", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4666999999999996E-5, + "max" : 0.0010032079999999998, + "p01" : 2.4666999999999996E-5, + "p05" : 2.4666999999999996E-5, + "p10" : 2.7000999999999994E-5, + "p25" : 2.9415999999999994E-5, + "p50" : 6.4543E-5, + "p75" : 5.326659999999999E-4, + "p90" : 5.40376E-4, + "p95" : 0.0010032079999999998, + "p99" : 0.0010032079999999998, + "total" : 12 + }, + "Filter CPU time" : { + "duration" : "961084.00ns" + }, + "Projection CPU time" : { + "duration" : "69874.00ns" + }, + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 5.049999999999999E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.5999999999999995E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 4.199999999999999E-5, + "p75" : 3.5999999999999997E-4, + "p90" : 3.7799999999999997E-4, + "p95" : 5.049999999999999E-4, + "p99" : 5.049999999999999E-4, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 20, + "finishWall" : "537.62us", + "finishCpu" : "283.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.41kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 1, + "planNodeId" : "517", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "8.46us", + "addInputCpu" : "13.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1001B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 32, + "getOutputWall" : "902.71us", + "getOutputCpu" : "795.00us", + "outputDataSize" : "1.02kB", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 3.4599999999999995E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.6999999999999996E-5, + "p25" : 2.8999999999999997E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 1.7299999999999998E-4, + "p90" : 1.7399999999999997E-4, + "p95" : 3.4599999999999995E-4, + "p99" : 3.4599999999999995E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.030099082999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.028892290999999997, + "p90" : 0.029907916999999996, + "p95" : 0.030099082999999995, + "p99" : 0.030099082999999995, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6707999999999996E-5, + "max" : 6.04876E-4, + "p01" : 2.6707999999999996E-5, + "p05" : 2.6707999999999996E-5, + "p10" : 2.9332999999999995E-5, + "p25" : 3.2124999999999995E-5, + "p50" : 4.483399999999999E-5, + "p75" : 1.7812499999999998E-4, + "p90" : 2.1941699999999996E-4, + "p95" : 6.04876E-4, + "p99" : 6.04876E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "117.75ms", + "finishCalls" : 27, + "finishWall" : "554.75us", + "finishCpu" : "282.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "PROBE_OUTER", + "logHistogramProbes" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1592, + "rleProbes" : 0, + "totalProbes" : 4 + } + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 1, + "planNodeId" : "1020", + "operatorType" : "NestedLoopBuildOperator", + "totalDrivers" : 3, + "addInputCalls" : 3, + "addInputWall" : "58.33us", + "addInputCpu" : "60.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.1899999999999998E-4, + "max" : 2.2899999999999996E-4, + "p01" : 1.1899999999999998E-4, + "p05" : 1.1899999999999998E-4, + "p10" : 1.1899999999999998E-4, + "p25" : 1.1899999999999998E-4, + "p50" : 1.7699999999999997E-4, + "p75" : 2.2899999999999996E-4, + "p90" : 2.2899999999999996E-4, + "p95" : 2.2899999999999996E-4, + "p99" : 2.2899999999999996E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.08528854199999998, + "max" : 0.12733858399999998, + "p01" : 0.08528854199999998, + "p05" : 0.08528854199999998, + "p10" : 0.08528854199999998, + "p25" : 0.08528854199999998, + "p50" : 0.12620712499999998, + "p75" : 0.12733858399999998, + "p90" : 0.12733858399999998, + "p95" : 0.12733858399999998, + "p99" : 0.12733858399999998, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2116699999999999E-4, + "max" : 2.3795799999999997E-4, + "p01" : 1.2116699999999999E-4, + "p05" : 1.2116699999999999E-4, + "p10" : 1.2116699999999999E-4, + "p25" : 1.2116699999999999E-4, + "p50" : 1.7750099999999997E-4, + "p75" : 2.3795799999999997E-4, + "p90" : 2.3795799999999997E-4, + "p95" : 2.3795799999999997E-4, + "p99" : 2.3795799999999997E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "338.84ms", + "finishCalls" : 6, + "finishWall" : "478.30us", + "finishCpu" : "465.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "152B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "152B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "21.33us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 5.4999999999999995E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.6999999999999996E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 3.899999999999999E-5, + "p90" : 4.599999999999999E-5, + "p95" : 5.4999999999999995E-5, + "p99" : 5.4999999999999995E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 9.624999999999998E-6, + "max" : 5.574899999999999E-5, + "p01" : 9.624999999999998E-6, + "p05" : 9.624999999999998E-6, + "p10" : 1.0832999999999998E-5, + "p25" : 1.7624999999999998E-5, + "p50" : 3.475E-5, + "p75" : 4.854199999999999E-5, + "p90" : 5.262499999999999E-5, + "p95" : 5.574899999999999E-5, + "p99" : 5.574899999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "355.01us", + "finishCpu" : "300.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 3, + "planNodeId" : "517", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 12, + "addInputWall" : "324.26us", + "addInputCpu" : "334.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "21.02kB", + "inputPositions" : 1196, + "sumSquaredInputPositions" : 120064.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "21.02kB", + "outputPositions" : 1196, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0099999999999994E-4, + "max" : 0.004376, + "p01" : 3.0099999999999994E-4, + "p05" : 3.0099999999999994E-4, + "p10" : 4.8099999999999993E-4, + "p25" : 5.839999999999999E-4, + "p50" : 6.639999999999999E-4, + "p75" : 0.0038239999999999993, + "p90" : 0.0038759999999999992, + "p95" : 0.004376, + "p99" : 0.004376, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 88.0, + "max" : 116.0, + "p01" : 88.0, + "p05" : 88.0, + "p10" : 89.0, + "p25" : 96.0, + "p50" : 99.0, + "p75" : 105.0, + "p90" : 114.0, + "p95" : 116.0, + "p99" : 116.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0014461669999999997, + "max" : 0.0021287499999999996, + "p01" : 0.0014461669999999997, + "p05" : 0.0014461669999999997, + "p10" : 0.0014584579999999997, + "p25" : 0.0015661669999999998, + "p50" : 0.0018084999999999998, + "p75" : 0.0020767499999999996, + "p90" : 0.0021122499999999995, + "p95" : 0.0021287499999999996, + "p99" : 0.0021287499999999996, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0032368339999999996, + "max" : 0.0056285829999999995, + "p01" : 0.0032368339999999996, + "p05" : 0.0032368339999999996, + "p10" : 0.0038102079999999994, + "p25" : 0.0043879159999999995, + "p50" : 0.004864125999999999, + "p75" : 0.005118332999999999, + "p90" : 0.005404291999999999, + "p95" : 0.0056285829999999995, + "p99" : 0.0056285829999999995, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "21.01ms", + "finishCalls" : 24, + "finishWall" : "55.02ms", + "finishCpu" : "16.90ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 27, + "addInputWall" : "2.29ms", + "addInputCpu" : "1.91ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 316240.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 6.749999999999999E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 1.3999999999999998E-5, + "p25" : 4.699999999999999E-5, + "p50" : 8.799999999999998E-5, + "p75" : 3.2799999999999995E-4, + "p90" : 4.539999999999999E-4, + "p95" : 6.749999999999999E-4, + "p99" : 6.749999999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 343.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 144.0, + "p75" : 191.0, + "p90" : 251.0, + "p95" : 343.0, + "p99" : 343.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.75E-6, + "max" : 0.0010208759999999998, + "p01" : 8.75E-6, + "p05" : 8.75E-6, + "p10" : 1.4749999999999998E-5, + "p25" : 4.7332999999999996E-5, + "p50" : 9.091599999999998E-5, + "p75" : 3.5320899999999994E-4, + "p90" : 4.617909999999999E-4, + "p95" : 0.0010208759999999998, + "p99" : 0.0010208759999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "296.75us", + "finishCpu" : "280.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "20", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 12, + "addInputCalls" : 108, + "addInputWall" : "8.35ms", + "addInputCpu" : "4.62ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 181146.0, + "getOutputCalls" : 183, + "getOutputWall" : "4.21ms", + "getOutputCpu" : "2.48ms", + "outputDataSize" : "21.02kB", + "outputPositions" : 1196, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 109.0, + "max" : 138.0, + "p01" : 109.0, + "p05" : 109.0, + "p10" : 112.0, + "p25" : 116.0, + "p50" : 120.0, + "p75" : 136.0, + "p90" : 137.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 12 + }, + "Group by hash update CPU time" : { + "duration" : "943165.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.5687499999999993E-4, + "max" : 0.002356124, + "p01" : 3.5687499999999993E-4, + "p05" : 3.5687499999999993E-4, + "p10" : 3.8958399999999995E-4, + "p25" : 6.056229999999999E-4, + "p50" : 0.00105654, + "p75" : 0.0014869569999999997, + "p90" : 0.0018755829999999997, + "p95" : 0.002356124, + "p99" : 0.002356124, + "total" : 12 + }, + "Accumulator update CPU time" : { + "duration" : "5687620.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.4999999999999994E-4, + "max" : 0.0012419999999999998, + "p01" : 3.4999999999999994E-4, + "p05" : 3.4999999999999994E-4, + "p10" : 3.8799999999999994E-4, + "p25" : 4.949999999999999E-4, + "p50" : 5.329999999999999E-4, + "p75" : 7.019999999999999E-4, + "p90" : 9.439999999999999E-4, + "p95" : 0.0012419999999999998, + "p99" : 0.0012419999999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "319.37us", + "finishCpu" : "301.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 4, + "planNodeId" : "758", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "1.57ms", + "addInputCpu" : "1.26ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "773B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "773B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 1557 + }, + "Scheduled time distribution (s)" : { + "min" : 6.249999999999999E-7, + "max" : 5.482499999999999E-4, + "p01" : 6.249999999999999E-7, + "p05" : 6.249999999999999E-7, + "p10" : 7.079999999999999E-7, + "p25" : 7.919999999999999E-7, + "p50" : 1.1249999999999998E-6, + "p75" : 4.148329999999999E-4, + "p90" : 5.051659999999999E-4, + "p95" : 5.482499999999999E-4, + "p99" : 5.482499999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.6599999999999994E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0E-6, + "p50" : 2.0E-6, + "p75" : 3.29E-4, + "p90" : 3.6599999999999995E-4, + "p95" : 4.6599999999999994E-4, + "p99" : 4.6599999999999994E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 1557 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "35.63us", + "finishCpu" : "29.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 2, + "planNodeId" : "1020", + "operatorType" : "NestedLoopJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "172.83us", + "addInputCpu" : "176.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.02kB", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 31, + "getOutputWall" : "1.01ms", + "getOutputCpu" : "362.00us", + "outputDataSize" : "1.07kB", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0E-6, + "max" : 2.49E-4, + "p01" : 2.0E-6, + "p05" : 2.0E-6, + "p10" : 2.9999999999999997E-6, + "p25" : 4.0E-6, + "p50" : 5.999999999999999E-6, + "p75" : 4.399999999999999E-5, + "p90" : 1.7199999999999998E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0030567079999999996, + "max" : 0.04788391599999999, + "p01" : 0.0030567079999999996, + "p05" : 0.0030567079999999996, + "p10" : 0.004034291, + "p25" : 0.0048012919999999995, + "p50" : 0.014931457999999998, + "p75" : 0.030360999999999996, + "p90" : 0.044827124999999995, + "p95" : 0.04788391599999999, + "p99" : 0.04788391599999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.5419999999999995E-6, + "max" : 4.5795799999999995E-4, + "p01" : 2.5419999999999995E-6, + "p05" : 2.5419999999999995E-6, + "p10" : 2.5419999999999995E-6, + "p25" : 3.4999999999999995E-6, + "p50" : 4.917E-6, + "p75" : 1.7150099999999998E-4, + "p90" : 3.53624E-4, + "p95" : 4.5795799999999995E-4, + "p99" : 4.5795799999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "218.18ms", + "finishCalls" : 12, + "finishWall" : "11.54us", + "finishCpu" : "9.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 0, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 3.0, + "getOutputCalls" : 3, + "getOutputWall" : "126.42us", + "getOutputCpu" : "121.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.0199999999999999E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.0199999999999999E-4, + "p90" : 1.0199999999999999E-4, + "p95" : 1.0199999999999999E-4, + "p99" : 1.0199999999999999E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.013589499999999997, + "max" : 0.050631290999999995, + "p01" : 0.013589499999999997, + "p05" : 0.013589499999999997, + "p10" : 0.013589499999999997, + "p25" : 0.013589499999999997, + "p50" : 0.025448041999999997, + "p75" : 0.050631290999999995, + "p90" : 0.050631290999999995, + "p95" : 0.050631290999999995, + "p99" : 0.050631290999999995, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0374999999999998E-5, + "max" : 1.0408299999999999E-4, + "p01" : 1.0374999999999998E-5, + "p05" : 1.0374999999999998E-5, + "p10" : 1.0374999999999998E-5, + "p25" : 1.0374999999999998E-5, + "p50" : 1.1957999999999998E-5, + "p75" : 1.0408299999999999E-4, + "p90" : 1.0408299999999999E-4, + "p95" : 1.0408299999999999E-4, + "p99" : 1.0408299999999999E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "89.67ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.2.2.0", + "taskInstanceId" : 3028235135841932747, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.2.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "185B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "528B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.071524Z", + "outputBuffers" : { + "type" : "ARBITRARY", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 1.5735626220703125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 909242291 + } + }, + "noMoreSplits" : [ "1998", "1997", "2725" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.161568Z", + "firstStartTime" : "2026-03-30T07:59:03.875172Z", + "lastStartTime" : "2026-03-30T07:59:03.954403Z", + "lastEndTime" : "2026-03-30T07:59:04.068Z", + "endTime" : "2026-03-30T07:59:04.072285Z", + "elapsedTime" : "907.47ms", + "queuedTime" : "710.32ms", + "totalDrivers" : 17, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 17, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "528B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "30.56ms", + "totalCpuTime" : "11.93ms", + "totalBlockedTime" : "1.85s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.55kB", + "internalNetworkInputPositions" : 490, + "processedInputDataSize" : "8.78kB", + "processedInputPositions" : 490, + "inputBlockedTime" : "1.06s", + "outputDataSize" : "185B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.875171Z", + "lastStartTime" : "2026-03-30T07:59:03.894167Z", + "lastEndTime" : "2026-03-30T07:59:04.060583Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.677991126E9, + "p01" : 6.57434834E8, + "p05" : 6.57434834E8, + "p10" : 6.57434834E8, + "p25" : 6.70657375E8, + "p50" : 6.73471959E8, + "p75" : 6.76426958E8, + "p90" : 6.76426958E8, + "p95" : 6.76426958E8, + "p99" : 6.76426958E8, + "min" : 6.57434834E8, + "max" : 6.76426958E8, + "avg" : 6.694977815E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.369891917E9, + "p01" : 8.42265791E8, + "p05" : 8.42265791E8, + "p10" : 8.42265791E8, + "p25" : 8.42374875E8, + "p50" : 8.42411334E8, + "p75" : 8.42839917E8, + "p90" : 8.42839917E8, + "p95" : 8.42839917E8, + "p99" : 8.42839917E8, + "min" : 8.42265791E8, + "max" : 8.42839917E8, + "avg" : 8.4247297925E8 + }, + "totalScheduledTime" : "2.89ms", + "totalCpuTime" : "1.68ms", + "totalBlockedTime" : "676.01ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.10kB", + "internalNetworkInputPositions" : 488, + "processedInputDataSize" : "8.58kB", + "processedInputPositions" : 488, + "inputBlockedTime" : "676.02ms", + "outputDataSize" : "8.58kB", + "outputPositions" : 488, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2725", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.10kB", + "internalNetworkInputPositions" : 488, + "inputDataSize" : "8.58kB", + "inputPositions" : 488, + "sumSquaredInputPositions" : 81886.0, + "getOutputCalls" : 9, + "getOutputWall" : "1.02ms", + "getOutputCpu" : "346.00us", + "outputDataSize" : "8.58kB", + "outputPositions" : 488, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.0999999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.5E-5, + "p50" : 1.0099999999999999E-4, + "p75" : 2.0999999999999998E-4, + "p90" : 2.0999999999999998E-4, + "p95" : 2.0999999999999998E-4, + "p99" : 2.0999999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 191.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 123.0, + "p50" : 174.0, + "p75" : 191.0, + "p90" : 191.0, + "p95" : 191.0, + "p99" : 191.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.16337891699999998, + "max" : 0.18010537399999998, + "p01" : 0.16337891699999998, + "p05" : 0.16337891699999998, + "p10" : 0.16337891699999998, + "p25" : 0.16460912399999997, + "p50" : 0.16792162499999996, + "p75" : 0.18010537399999998, + "p90" : 0.18010537399999998, + "p95" : 0.18010537399999998, + "p99" : 0.18010537399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.802919999999999E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.716699999999999E-5, + "p50" : 1.0491699999999998E-4, + "p75" : 8.802919999999999E-4, + "p90" : 8.802919999999999E-4, + "p95" : 8.802919999999999E-4, + "p99" : 8.802919999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "676.02ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 5968, + "averageBytesPerRequest" : 919, + "successfulRequestsCount" : 36, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 175.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 175.0, + "p90" : 175.0, + "p95" : 175.0, + "p99" : 175.0, + "total" : 9 + } + } + }, { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 9, + "addInputWall" : "651.62us", + "addInputCpu" : "647.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.58kB", + "inputPositions" : 488, + "sumSquaredInputPositions" : 81886.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "8.58kB", + "outputPositions" : 488, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.4999999999999998E-5, + "max" : 4.539999999999999E-4, + "p01" : 2.4999999999999998E-5, + "p05" : 2.4999999999999998E-5, + "p10" : 2.4999999999999998E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 2.0899999999999996E-4, + "p75" : 4.539999999999999E-4, + "p90" : 4.539999999999999E-4, + "p95" : 4.539999999999999E-4, + "p99" : 4.539999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 191.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 123.0, + "p50" : 174.0, + "p75" : 191.0, + "p90" : 191.0, + "p95" : 191.0, + "p99" : 191.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.7499999999999998E-5, + "max" : 4.617909999999999E-4, + "p01" : 2.7499999999999998E-5, + "p05" : 2.7499999999999998E-5, + "p10" : 2.7499999999999998E-5, + "p25" : 5.2582999999999994E-5, + "p50" : 2.0874999999999998E-4, + "p75" : 4.617909999999999E-4, + "p90" : 4.617909999999999E-4, + "p95" : 4.617909999999999E-4, + "p99" : 4.617909999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "99.00us", + "finishCpu" : "91.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.896945Z", + "lastStartTime" : "2026-03-30T07:59:03.906761Z", + "lastEndTime" : "2026-03-30T07:59:04.068796Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.737333542E9, + "p01" : 6.79203542E8, + "p05" : 6.79203542E8, + "p10" : 6.79203542E8, + "p25" : 6.82471625E8, + "p50" : 6.86640958E8, + "p75" : 6.89017417E8, + "p90" : 6.89017417E8, + "p95" : 6.89017417E8, + "p99" : 6.89017417E8, + "min" : 6.79203542E8, + "max" : 6.89017417E8, + "avg" : 6.843333855E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.402866209E9, + "p01" : 8.50576542E8, + "p05" : 8.50576542E8, + "p10" : 8.50576542E8, + "p25" : 8.5059325E8, + "p50" : 8.50645E8, + "p75" : 8.51051417E8, + "p90" : 8.51051417E8, + "p95" : 8.51051417E8, + "p99" : 8.51051417E8, + "min" : 8.50576542E8, + "max" : 8.51051417E8, + "avg" : 8.5071655225E8 + }, + "totalScheduledTime" : "25.16ms", + "totalCpuTime" : "8.20ms", + "totalBlockedTime" : "625.94ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "8.58kB", + "processedInputPositions" : 488, + "inputBlockedTime" : "619.88ms", + "outputDataSize" : "6.93kB", + "outputPositions" : 394, + "outputBlockedTime" : "6.06ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.58kB", + "inputPositions" : 488, + "sumSquaredInputPositions" : 59874.0, + "getOutputCalls" : 36, + "getOutputWall" : "818.92us", + "getOutputCpu" : "382.00us", + "outputDataSize" : "8.58kB", + "outputPositions" : 488, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 2.1499999999999997E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.2E-5, + "p25" : 6.099999999999999E-5, + "p50" : 7.399999999999998E-5, + "p75" : 2.1499999999999997E-4, + "p90" : 2.1499999999999997E-4, + "p95" : 2.1499999999999997E-4, + "p99" : 2.1499999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 112.0, + "max" : 137.0, + "p01" : 112.0, + "p05" : 112.0, + "p10" : 112.0, + "p25" : 119.0, + "p50" : 120.0, + "p75" : 137.0, + "p90" : 137.0, + "p95" : 137.0, + "p99" : 137.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.15045154099999997, + "max" : 0.16020558399999998, + "p01" : 0.15045154099999997, + "p05" : 0.15045154099999997, + "p10" : 0.15045154099999997, + "p25" : 0.152428458, + "p50" : 0.15679516599999999, + "p75" : 0.16020558399999998, + "p90" : 0.16020558399999998, + "p95" : 0.16020558399999998, + "p99" : 0.16020558399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4457999999999994E-5, + "max" : 3.737929999999999E-4, + "p01" : 3.4457999999999994E-5, + "p05" : 3.4457999999999994E-5, + "p10" : 3.4457999999999994E-5, + "p25" : 1.2054299999999999E-4, + "p50" : 2.9012699999999994E-4, + "p75" : 3.737929999999999E-4, + "p90" : 3.737929999999999E-4, + "p95" : 3.737929999999999E-4, + "p99" : 3.737929999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "619.88ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "20", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 4, + "addInputCalls" : 36, + "addInputWall" : "1.76ms", + "addInputCpu" : "1.12ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.58kB", + "inputPositions" : 488, + "sumSquaredInputPositions" : 59874.0, + "getOutputCalls" : 60, + "getOutputWall" : "958.04us", + "getOutputCpu" : "526.00us", + "outputDataSize" : "6.93kB", + "outputPositions" : 394, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 112.0, + "max" : 137.0, + "p01" : 112.0, + "p05" : 112.0, + "p10" : 112.0, + "p25" : 119.0, + "p50" : 120.0, + "p75" : 137.0, + "p90" : 137.0, + "p95" : 137.0, + "p99" : 137.0, + "total" : 4 + }, + "Group by hash update CPU time" : { + "duration" : "69668.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.5687499999999993E-4, + "max" : 0.0014869569999999997, + "p01" : 3.5687499999999993E-4, + "p05" : 3.5687499999999993E-4, + "p10" : 3.5687499999999993E-4, + "p25" : 3.8958399999999995E-4, + "p50" : 6.056229999999999E-4, + "p75" : 0.0014869569999999997, + "p90" : 0.0014869569999999997, + "p95" : 0.0014869569999999997, + "p99" : 0.0014869569999999997, + "total" : 4 + }, + "Accumulator update CPU time" : { + "duration" : "1145372.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.4999999999999994E-4, + "max" : 5.329999999999999E-4, + "p01" : 3.4999999999999994E-4, + "p05" : 3.4999999999999994E-4, + "p10" : 3.4999999999999994E-4, + "p25" : 3.8799999999999994E-4, + "p50" : 4.959999999999999E-4, + "p75" : 5.329999999999999E-4, + "p90" : 5.329999999999999E-4, + "p95" : 5.329999999999999E-4, + "p99" : 5.329999999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "121.92us", + "finishCpu" : "120.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 3, + "planNodeId" : "517", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "118.21us", + "addInputCpu" : "120.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "6.93kB", + "inputPositions" : 394, + "sumSquaredInputPositions" : 38898.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "6.93kB", + "outputPositions" : 394, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0099999999999994E-4, + "max" : 0.004376, + "p01" : 3.0099999999999994E-4, + "p05" : 3.0099999999999994E-4, + "p10" : 3.0099999999999994E-4, + "p25" : 4.8799999999999994E-4, + "p50" : 6.639999999999999E-4, + "p75" : 0.004376, + "p90" : 0.004376, + "p95" : 0.004376, + "p99" : 0.004376, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 92.0, + "max" : 105.0, + "p01" : 92.0, + "p05" : 92.0, + "p10" : 92.0, + "p25" : 97.0, + "p50" : 100.0, + "p75" : 105.0, + "p90" : 105.0, + "p95" : 105.0, + "p99" : 105.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0014461669999999997, + "max" : 0.0015886249999999998, + "p01" : 0.0014461669999999997, + "p05" : 0.0014461669999999997, + "p10" : 0.0014461669999999997, + "p25" : 0.0014584579999999997, + "p50" : 0.0015661669999999998, + "p75" : 0.0015886249999999998, + "p90" : 0.0015886249999999998, + "p95" : 0.0015886249999999998, + "p99" : 0.0015886249999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.005105832999999999, + "max" : 0.0056285829999999995, + "p01" : 0.005105832999999999, + "p05" : 0.005105832999999999, + "p10" : 0.005105832999999999, + "p25" : 0.005118332999999999, + "p50" : 0.005404291999999999, + "p75" : 0.0056285829999999995, + "p90" : 0.0056285829999999995, + "p95" : 0.0056285829999999995, + "p99" : 0.0056285829999999995, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "6.06ms", + "finishCalls" : 8, + "finishWall" : "21.14ms", + "finishCpu" : "5.71ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.910158Z", + "lastStartTime" : "2026-03-30T07:59:03.926873Z", + "lastEndTime" : "2026-03-30T07:59:03.980525Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.8034835E9, + "p01" : 6.92414709E8, + "p05" : 6.92414709E8, + "p10" : 6.92414709E8, + "p25" : 6.96106833E8, + "p50" : 7.05834875E8, + "p75" : 7.09127083E8, + "p90" : 7.09127083E8, + "p95" : 7.09127083E8, + "p99" : 7.09127083E8, + "min" : 6.92414709E8, + "max" : 7.09127083E8, + "avg" : 7.00870875E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.989239001E9, + "p01" : 7.09168625E8, + "p05" : 7.09168625E8, + "p10" : 7.09168625E8, + "p25" : 7.56947959E8, + "p50" : 7.60342959E8, + "p75" : 7.62779458E8, + "p90" : 7.62779458E8, + "p95" : 7.62779458E8, + "p99" : 7.62779458E8, + "min" : 7.09168625E8, + "max" : 7.62779458E8, + "avg" : 7.4730975025E8 + }, + "totalScheduledTime" : "448.04us", + "totalCpuTime" : "359.00us", + "totalBlockedTime" : "21.94ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "40B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "21.94ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1998", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "40B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "86.46us", + "getOutputCpu" : "74.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 7.399999999999998E-5, + "p90" : 7.399999999999998E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.013825415999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.003926915999999999, + "p50" : 0.004185332999999999, + "p75" : 0.013825415999999998, + "p90" : 0.013825415999999998, + "p95" : 0.013825415999999998, + "p99" : 0.013825415999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.645799999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 8.645799999999999E-5, + "p90" : 8.645799999999999E-5, + "p95" : 8.645799999999999E-5, + "p99" : 8.645799999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "21.94ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 96, + "averageBytesPerRequest" : 19, + "successfulRequestsCount" : 8, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 5.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 5.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 2 + } + } + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "7.58us", + "addInputCpu" : "8.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 3.2999999999999996E-5, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 2.3999999999999997E-5, + "p50" : 3.2999999999999996E-5, + "p75" : 3.2999999999999996E-5, + "p90" : 3.2999999999999996E-5, + "p95" : 3.2999999999999996E-5, + "p99" : 3.2999999999999996E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0832999999999998E-5, + "max" : 4.370899999999999E-5, + "p01" : 1.0832999999999998E-5, + "p05" : 1.0832999999999998E-5, + "p10" : 1.0832999999999998E-5, + "p25" : 3.475E-5, + "p50" : 3.725E-5, + "p75" : 4.370899999999999E-5, + "p90" : 4.370899999999999E-5, + "p95" : 4.370899999999999E-5, + "p99" : 4.370899999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "118.96us", + "finishCpu" : "92.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 3, + "firstStartTime" : "2026-03-30T07:59:03.930074Z", + "lastStartTime" : "2026-03-30T07:59:03.930074Z", + "lastEndTime" : "2026-03-30T07:59:04.067394Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 7.12328083E8, + "p01" : 7.12328083E8, + "p05" : 7.12328083E8, + "p10" : 7.12328083E8, + "p25" : 7.12328083E8, + "p50" : 7.12328083E8, + "p75" : 7.12328083E8, + "p90" : 7.12328083E8, + "p95" : 7.12328083E8, + "p99" : 7.12328083E8, + "min" : 7.12328083E8, + "max" : 7.12328083E8, + "avg" : 7.12328083E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.49645667E8, + "p01" : 8.49645667E8, + "p05" : 8.49645667E8, + "p10" : 8.49645667E8, + "p25" : 8.49645667E8, + "p50" : 8.49645667E8, + "p75" : 8.49645667E8, + "p90" : 8.49645667E8, + "p95" : 8.49645667E8, + "p99" : 8.49645667E8, + "min" : 8.49645667E8, + "max" : 8.49645667E8, + "avg" : 8.49645667E8 + }, + "totalScheduledTime" : "211.50us", + "totalCpuTime" : "208.00us", + "totalBlockedTime" : "135.91ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "50.63ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "85.29ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 0, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.96us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 9.999999999999999E-6, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.050631290999999995, + "max" : 0.050631290999999995, + "p01" : 0.050631290999999995, + "p05" : 0.050631290999999995, + "p10" : 0.050631290999999995, + "p25" : 0.050631290999999995, + "p50" : 0.050631290999999995, + "p75" : 0.050631290999999995, + "p90" : 0.050631290999999995, + "p95" : 0.050631290999999995, + "p99" : 0.050631290999999995, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1957999999999998E-5, + "max" : 1.1957999999999998E-5, + "p01" : 1.1957999999999998E-5, + "p05" : 1.1957999999999998E-5, + "p10" : 1.1957999999999998E-5, + "p25" : 1.1957999999999998E-5, + "p50" : 1.1957999999999998E-5, + "p75" : 1.1957999999999998E-5, + "p90" : 1.1957999999999998E-5, + "p95" : 1.1957999999999998E-5, + "p99" : 1.1957999999999998E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "50.63ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 1, + "planNodeId" : "1020", + "operatorType" : "NestedLoopBuildOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "16.08us", + "addInputCpu" : "17.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.7699999999999997E-4, + "max" : 1.7699999999999997E-4, + "p01" : 1.7699999999999997E-4, + "p05" : 1.7699999999999997E-4, + "p10" : 1.7699999999999997E-4, + "p25" : 1.7699999999999997E-4, + "p50" : 1.7699999999999997E-4, + "p75" : 1.7699999999999997E-4, + "p90" : 1.7699999999999997E-4, + "p95" : 1.7699999999999997E-4, + "p99" : 1.7699999999999997E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.08528854199999998, + "max" : 0.08528854199999998, + "p01" : 0.08528854199999998, + "p05" : 0.08528854199999998, + "p10" : 0.08528854199999998, + "p25" : 0.08528854199999998, + "p50" : 0.08528854199999998, + "p75" : 0.08528854199999998, + "p90" : 0.08528854199999998, + "p95" : 0.08528854199999998, + "p99" : 0.08528854199999998, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.7750099999999997E-4, + "max" : 1.7750099999999997E-4, + "p01" : 1.7750099999999997E-4, + "p05" : 1.7750099999999997E-4, + "p10" : 1.7750099999999997E-4, + "p25" : 1.7750099999999997E-4, + "p50" : 1.7750099999999997E-4, + "p75" : 1.7750099999999997E-4, + "p90" : 1.7750099999999997E-4, + "p95" : 1.7750099999999997E-4, + "p99" : 1.7750099999999997E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "85.29ms", + "finishCalls" : 2, + "finishWall" : "161.42us", + "finishCpu" : "160.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "152B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "152B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 4, + "firstStartTime" : "2026-03-30T07:59:03.934162Z", + "lastStartTime" : "2026-03-30T07:59:03.954403Z", + "lastEndTime" : "2026-03-30T07:59:04.067783Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.906484209E9, + "p01" : 7.16415458E8, + "p05" : 7.16415458E8, + "p10" : 7.16415458E8, + "p25" : 7.19472125E8, + "p50" : 7.33942417E8, + "p75" : 7.36654209E8, + "p90" : 7.36654209E8, + "p95" : 7.36654209E8, + "p99" : 7.36654209E8, + "min" : 7.16415458E8, + "max" : 7.36654209E8, + "avg" : 7.2662105225E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.315931208E9, + "p01" : 8.21748292E8, + "p05" : 8.21748292E8, + "p10" : 8.21748292E8, + "p25" : 8.21974167E8, + "p50" : 8.22174416E8, + "p75" : 8.50034333E8, + "p90" : 8.50034333E8, + "p95" : 8.50034333E8, + "p99" : 8.50034333E8, + "min" : 8.21748292E8, + "max" : 8.50034333E8, + "avg" : 8.28982802E8 + }, + "totalScheduledTime" : "1.85ms", + "totalCpuTime" : "1.48ms", + "totalBlockedTime" : "392.11ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "420B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "194B", + "processedInputPositions" : 1, + "inputBlockedTime" : "364.98ms", + "outputDataSize" : "185B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 0, + "planNodeId" : "1997", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "420B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "194B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "60.63us", + "getOutputCpu" : "59.00us", + "outputDataSize" : "194B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.899999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.899999999999999E-5, + "p90" : 5.899999999999999E-5, + "p95" : 5.899999999999999E-5, + "p99" : 5.899999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08071483299999999, + "max" : 0.10027374999999998, + "p01" : 0.08071483299999999, + "p05" : 0.08071483299999999, + "p10" : 0.08071483299999999, + "p25" : 0.08396170799999998, + "p50" : 0.10003074999999999, + "p75" : 0.10027374999999998, + "p90" : 0.10027374999999998, + "p95" : 0.10027374999999998, + "p99" : 0.10027374999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 6.062499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 6.062499999999999E-5, + "p90" : 6.062499999999999E-5, + "p95" : 6.062499999999999E-5, + "p99" : 6.062499999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "364.98ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 480, + "averageBytesPerRequest" : 104, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 102.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 97.0, + "p50" : 99.0, + "p75" : 102.0, + "p90" : 102.0, + "p95" : 102.0, + "p99" : 102.0, + "total" : 4 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 1, + "planNodeId" : "517", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.21us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "194B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 10, + "getOutputWall" : "227.29us", + "getOutputCpu" : "197.00us", + "outputDataSize" : "203B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.6999999999999996E-5, + "max" : 1.7299999999999998E-4, + "p01" : 2.6999999999999996E-5, + "p05" : 2.6999999999999996E-5, + "p10" : 2.6999999999999996E-5, + "p25" : 3.0999999999999995E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 1.7299999999999998E-4, + "p90" : 1.7299999999999998E-4, + "p95" : 1.7299999999999998E-4, + "p99" : 1.7299999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.030099082999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.030099082999999995, + "p90" : 0.030099082999999995, + "p95" : 0.030099082999999995, + "p99" : 0.030099082999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9708999999999996E-5, + "max" : 1.7812499999999998E-4, + "p01" : 2.9708999999999996E-5, + "p05" : 2.9708999999999996E-5, + "p10" : 2.9708999999999996E-5, + "p25" : 4.3790999999999995E-5, + "p50" : 4.483399999999999E-5, + "p75" : 1.7812499999999998E-4, + "p90" : 1.7812499999999998E-4, + "p95" : 1.7812499999999998E-4, + "p99" : 1.7812499999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "30.10ms", + "finishCalls" : 8, + "finishWall" : "66.96us", + "finishCpu" : "62.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "PROBE_OUTER", + "logHistogramProbes" : [ 0, 1, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 1, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 394, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 2, + "planNodeId" : "1020", + "operatorType" : "NestedLoopJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "1.96us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "203B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 9, + "getOutputWall" : "177.13us", + "getOutputCpu" : "53.00us", + "outputDataSize" : "212B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 4.399999999999999E-5, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 4.9999999999999996E-6, + "p50" : 5.999999999999999E-6, + "p75" : 4.399999999999999E-5, + "p90" : 4.399999999999999E-5, + "p95" : 4.399999999999999E-5, + "p99" : 4.399999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.027654791999999997, + "max" : 0.04788391599999999, + "p01" : 0.027654791999999997, + "p05" : 0.027654791999999997, + "p10" : 0.027654791999999997, + "p25" : 0.030360999999999996, + "p50" : 0.044827124999999995, + "p75" : 0.04788391599999999, + "p90" : 0.04788391599999999, + "p95" : 0.04788391599999999, + "p99" : 0.04788391599999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.5419999999999995E-6, + "max" : 1.7150099999999998E-4, + "p01" : 2.5419999999999995E-6, + "p05" : 2.5419999999999995E-6, + "p10" : 2.5419999999999995E-6, + "p25" : 4.040999999999999E-6, + "p50" : 4.708E-6, + "p75" : 1.7150099999999998E-4, + "p90" : 1.7150099999999998E-4, + "p95" : 1.7150099999999998E-4, + "p99" : 1.7150099999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "150.73ms", + "finishCalls" : 4, + "finishWall" : "3.71us", + "finishCpu" : "3.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 3, + "planNodeId" : "758", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "1.92us", + "addInputCpu" : "2.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "212B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 18, + "getOutputWall" : "536.71us", + "getOutputCpu" : "358.00us", + "outputDataSize" : "185B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.7000999999999994E-5, + "max" : 5.326659999999999E-4, + "p01" : 2.7000999999999994E-5, + "p05" : 2.7000999999999994E-5, + "p10" : 2.7000999999999994E-5, + "p25" : 2.9415999999999994E-5, + "p50" : 3.0332999999999996E-5, + "p75" : 5.326659999999999E-4, + "p90" : 5.326659999999999E-4, + "p95" : 5.326659999999999E-4, + "p99" : 5.326659999999999E-4, + "total" : 4 + }, + "Filter CPU time" : { + "duration" : "286709.00ns" + }, + "Projection CPU time" : { + "duration" : "5541.00ns" + }, + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 3.5999999999999997E-4, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 2.5999999999999995E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 2.7999999999999996E-5, + "p75" : 3.5999999999999997E-4, + "p90" : 3.5999999999999997E-4, + "p95" : 3.5999999999999997E-4, + "p99" : 3.5999999999999997E-4, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 6, + "finishWall" : "80.79us", + "finishCpu" : "82.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.41kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 4, + "planNodeId" : "758", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "502.13us", + "addInputCpu" : "462.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "185B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "185B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 381 + }, + "Scheduled time distribution (s)" : { + "min" : 7.499999999999999E-7, + "max" : 5.051659999999999E-4, + "p01" : 7.499999999999999E-7, + "p05" : 7.499999999999999E-7, + "p10" : 7.499999999999999E-7, + "p25" : 7.919999999999999E-7, + "p50" : 1.042E-6, + "p75" : 5.051659999999999E-4, + "p90" : 5.051659999999999E-4, + "p95" : 5.051659999999999E-4, + "p99" : 5.051659999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.6599999999999994E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.0E-6, + "p50" : 2.0E-6, + "p75" : 4.6599999999999994E-4, + "p90" : 4.6599999999999994E-4, + "p95" : 4.6599999999999994E-4, + "p99" : 4.6599999999999994E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 381 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "5.63us", + "finishCpu" : "8.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.2.0.0", + "taskInstanceId" : 8672091181376559008, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.2.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "225B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "624B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.071277Z", + "outputBuffers" : { + "type" : "ARBITRARY", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 1.8596649169921875E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 911601458 + } + }, + "noMoreSplits" : [ "1998", "1997", "2725" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.158306Z", + "firstStartTime" : "2026-03-30T07:59:03.872469Z", + "lastStartTime" : "2026-03-30T07:59:03.936880Z", + "lastEndTime" : "2026-03-30T07:59:04.068Z", + "endTime" : "2026-03-30T07:59:04.072278Z", + "elapsedTime" : "909.80ms", + "queuedTime" : "709.98ms", + "totalDrivers" : 17, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 17, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "624B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "29.27ms", + "totalCpuTime" : "11.74ms", + "totalBlockedTime" : "1.97s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.57kB", + "internalNetworkInputPositions" : 489, + "processedInputDataSize" : "8.80kB", + "processedInputPositions" : 489, + "inputBlockedTime" : "1.13s", + "outputDataSize" : "225B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872469Z", + "lastStartTime" : "2026-03-30T07:59:03.887978Z", + "lastEndTime" : "2026-03-30T07:59:04.060772Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.541614915E9, + "p01" : 6.25626666E8, + "p05" : 6.25626666E8, + "p10" : 6.25626666E8, + "p25" : 6.361585E8, + "p50" : 6.38697541E8, + "p75" : 6.41132208E8, + "p90" : 6.41132208E8, + "p95" : 6.41132208E8, + "p99" : 6.41132208E8, + "min" : 6.25626666E8, + "max" : 6.41132208E8, + "avg" : 6.3540372875E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.255219832E9, + "p01" : 8.13724917E8, + "p05" : 8.13724917E8, + "p10" : 8.13724917E8, + "p25" : 8.13739541E8, + "p50" : 8.13827958E8, + "p75" : 8.13927416E8, + "p90" : 8.13927416E8, + "p95" : 8.13927416E8, + "p99" : 8.13927416E8, + "min" : 8.13724917E8, + "max" : 8.13927416E8, + "avg" : 8.13804958E8 + }, + "totalScheduledTime" : "3.16ms", + "totalCpuTime" : "1.42ms", + "totalBlockedTime" : "696.82ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.08kB", + "internalNetworkInputPositions" : 487, + "processedInputDataSize" : "8.56kB", + "processedInputPositions" : 487, + "inputBlockedTime" : "696.82ms", + "outputDataSize" : "8.56kB", + "outputPositions" : 487, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2725", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.08kB", + "internalNetworkInputPositions" : 487, + "inputDataSize" : "8.56kB", + "inputPositions" : 487, + "sumSquaredInputPositions" : 138385.0, + "getOutputCalls" : 9, + "getOutputWall" : "1.69ms", + "getOutputCpu" : "324.00us", + "outputDataSize" : "8.56kB", + "outputPositions" : 487, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.1599999999999996E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0799999999999998E-4, + "p75" : 2.1599999999999996E-4, + "p90" : 2.1599999999999996E-4, + "p95" : 2.1599999999999996E-4, + "p99" : 2.1599999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 343.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 144.0, + "p75" : 343.0, + "p90" : 343.0, + "p95" : 343.0, + "p99" : 343.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.169343751, + "max" : 0.18318779199999996, + "p01" : 0.169343751, + "p05" : 0.169343751, + "p10" : 0.169343751, + "p25" : 0.17079924999999999, + "p50" : 0.17348975099999997, + "p75" : 0.18318779199999996, + "p90" : 0.18318779199999996, + "p95" : 0.18318779199999996, + "p99" : 0.18318779199999996, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 9.684999999999999E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 7.199569999999999E-4, + "p75" : 9.684999999999999E-4, + "p90" : 9.684999999999999E-4, + "p95" : 9.684999999999999E-4, + "p99" : 9.684999999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "696.82ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 6000, + "averageBytesPerRequest" : 917, + "successfulRequestsCount" : 36, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 178.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 178.0, + "p90" : 178.0, + "p95" : 178.0, + "p99" : 178.0, + "total" : 9 + } + } + }, { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 9, + "addInputWall" : "1.08ms", + "addInputCpu" : "734.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.56kB", + "inputPositions" : 487, + "sumSquaredInputPositions" : 138385.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "8.56kB", + "outputPositions" : 487, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 6.749999999999999E-4, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 7.0E-5, + "p50" : 8.799999999999998E-5, + "p75" : 6.749999999999999E-4, + "p90" : 6.749999999999999E-4, + "p95" : 6.749999999999999E-4, + "p99" : 6.749999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 343.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 144.0, + "p75" : 343.0, + "p90" : 343.0, + "p95" : 343.0, + "p99" : 343.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4749999999999998E-5, + "max" : 0.0010208759999999998, + "p01" : 1.4749999999999998E-5, + "p05" : 1.4749999999999998E-5, + "p10" : 1.4749999999999998E-5, + "p25" : 7.091699999999999E-5, + "p50" : 9.091599999999998E-5, + "p75" : 0.0010208759999999998, + "p90" : 0.0010208759999999998, + "p95" : 0.0010208759999999998, + "p99" : 0.0010208759999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "118.17us", + "finishCpu" : "113.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.889606Z", + "lastStartTime" : "2026-03-30T07:59:03.897025Z", + "lastEndTime" : "2026-03-30T07:59:04.068864Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.585610874E9, + "p01" : 6.42759333E8, + "p05" : 6.42759333E8, + "p10" : 6.42759333E8, + "p25" : 6.44870583E8, + "p50" : 6.47805083E8, + "p75" : 6.50175875E8, + "p90" : 6.50175875E8, + "p95" : 6.50175875E8, + "p99" : 6.50175875E8, + "min" : 6.42759333E8, + "max" : 6.50175875E8, + "avg" : 6.464027185E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.286925499E9, + "p01" : 8.21576208E8, + "p05" : 8.21576208E8, + "p10" : 8.21576208E8, + "p25" : 8.2166475E8, + "p50" : 8.216695E8, + "p75" : 8.22015041E8, + "p90" : 8.22015041E8, + "p95" : 8.22015041E8, + "p99" : 8.22015041E8, + "min" : 8.21576208E8, + "max" : 8.22015041E8, + "avg" : 8.2173137475E8 + }, + "totalScheduledTime" : "22.89ms", + "totalCpuTime" : "8.18ms", + "totalBlockedTime" : "663.70ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "8.56kB", + "processedInputPositions" : 487, + "inputBlockedTime" : "656.62ms", + "outputDataSize" : "7.14kB", + "outputPositions" : 406, + "outputBlockedTime" : "7.07ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.56kB", + "inputPositions" : 487, + "sumSquaredInputPositions" : 59731.0, + "getOutputCalls" : 36, + "getOutputWall" : "225.96us", + "getOutputCpu" : "217.00us", + "outputDataSize" : "8.56kB", + "outputPositions" : 487, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.9999999999999996E-5, + "max" : 6.4E-5, + "p01" : 3.9999999999999996E-5, + "p05" : 3.9999999999999996E-5, + "p10" : 3.9999999999999996E-5, + "p25" : 5.199999999999999E-5, + "p50" : 6.099999999999999E-5, + "p75" : 6.4E-5, + "p90" : 6.4E-5, + "p95" : 6.4E-5, + "p99" : 6.4E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 109.0, + "max" : 136.0, + "p01" : 109.0, + "p05" : 109.0, + "p10" : 109.0, + "p25" : 115.0, + "p50" : 127.0, + "p75" : 136.0, + "p90" : 136.0, + "p95" : 136.0, + "p99" : 136.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.16165825099999998, + "max" : 0.16682604199999998, + "p01" : 0.16165825099999998, + "p05" : 0.16165825099999998, + "p10" : 0.16165825099999998, + "p25" : 0.16287875, + "p50" : 0.16526154099999998, + "p75" : 0.16682604199999998, + "p90" : 0.16682604199999998, + "p95" : 0.16682604199999998, + "p99" : 0.16682604199999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.037499999999999E-5, + "max" : 6.912599999999999E-5, + "p01" : 4.037499999999999E-5, + "p05" : 4.037499999999999E-5, + "p10" : 4.037499999999999E-5, + "p25" : 5.2916999999999995E-5, + "p50" : 6.3541E-5, + "p75" : 6.912599999999999E-5, + "p90" : 6.912599999999999E-5, + "p95" : 6.912599999999999E-5, + "p99" : 6.912599999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "656.62ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "20", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 4, + "addInputCalls" : 36, + "addInputWall" : "2.13ms", + "addInputCpu" : "1.25ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.56kB", + "inputPositions" : 487, + "sumSquaredInputPositions" : 59731.0, + "getOutputCalls" : 61, + "getOutputWall" : "1.46ms", + "getOutputCpu" : "833.00us", + "outputDataSize" : "7.14kB", + "outputPositions" : 406, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 109.0, + "max" : 136.0, + "p01" : 109.0, + "p05" : 109.0, + "p10" : 109.0, + "p25" : 115.0, + "p50" : 127.0, + "p75" : 136.0, + "p90" : 136.0, + "p95" : 136.0, + "p99" : 136.0, + "total" : 4 + }, + "Group by hash update CPU time" : { + "duration" : "71082.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.04749E-4, + "max" : 0.0011653749999999997, + "p01" : 5.04749E-4, + "p05" : 5.04749E-4, + "p10" : 5.04749E-4, + "p25" : 9.592919999999998E-4, + "p50" : 0.00105654, + "p75" : 0.0011653749999999997, + "p90" : 0.0011653749999999997, + "p95" : 0.0011653749999999997, + "p99" : 0.0011653749999999997, + "total" : 4 + }, + "Accumulator update CPU time" : { + "duration" : "1538416.00ns" + }, + "CPU time distribution (s)" : { + "min" : 4.89E-4, + "max" : 6.599999999999999E-4, + "p01" : 4.89E-4, + "p05" : 4.89E-4, + "p10" : 4.89E-4, + "p25" : 4.949999999999999E-4, + "p50" : 5.229999999999999E-4, + "p75" : 6.599999999999999E-4, + "p90" : 6.599999999999999E-4, + "p95" : 6.599999999999999E-4, + "p99" : 6.599999999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "93.62us", + "finishCpu" : "86.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 3, + "planNodeId" : "517", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "103.17us", + "addInputCpu" : "103.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "7.14kB", + "inputPositions" : 406, + "sumSquaredInputPositions" : 41534.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "7.14kB", + "outputPositions" : 406, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.8099999999999993E-4, + "max" : 0.0038759999999999992, + "p01" : 4.8099999999999993E-4, + "p05" : 4.8099999999999993E-4, + "p10" : 4.8099999999999993E-4, + "p25" : 6.05E-4, + "p50" : 6.949999999999999E-4, + "p75" : 0.0038759999999999992, + "p90" : 0.0038759999999999992, + "p95" : 0.0038759999999999992, + "p99" : 0.0038759999999999992, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 89.0, + "max" : 114.0, + "p01" : 89.0, + "p05" : 89.0, + "p10" : 89.0, + "p25" : 99.0, + "p50" : 104.0, + "p75" : 114.0, + "p90" : 114.0, + "p95" : 114.0, + "p99" : 114.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0015897499999999998, + "max" : 0.0018527499999999998, + "p01" : 0.0015897499999999998, + "p05" : 0.0015897499999999998, + "p10" : 0.0015897499999999998, + "p25" : 0.0018084999999999998, + "p50" : 0.0018201669999999997, + "p75" : 0.0018527499999999998, + "p90" : 0.0018527499999999998, + "p95" : 0.0018527499999999998, + "p99" : 0.0018527499999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.004478375, + "max" : 0.004991916999999999, + "p01" : 0.004478375, + "p05" : 0.004478375, + "p10" : 0.004478375, + "p25" : 0.004511041999999999, + "p50" : 0.004864125999999999, + "p75" : 0.004991916999999999, + "p90" : 0.004991916999999999, + "p95" : 0.004991916999999999, + "p99" : 0.004991916999999999, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "7.07ms", + "finishCalls" : 8, + "finishWall" : "18.74ms", + "finishCpu" : "5.55ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.898744Z", + "lastStartTime" : "2026-03-30T07:59:03.908068Z", + "lastEndTime" : "2026-03-30T07:59:03.938457Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.627367666E9, + "p01" : 6.51894166E8, + "p05" : 6.51894166E8, + "p10" : 6.51894166E8, + "p25" : 6.556875E8, + "p50" : 6.58568833E8, + "p75" : 6.61217167E8, + "p90" : 6.61217167E8, + "p95" : 6.61217167E8, + "p99" : 6.61217167E8, + "min" : 6.51894166E8, + "max" : 6.61217167E8, + "avg" : 6.568419165E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.734565499E9, + "p01" : 6.61303E8, + "p05" : 6.61303E8, + "p10" : 6.61303E8, + "p25" : 6.9052225E8, + "p50" : 6.91135541E8, + "p75" : 6.91604708E8, + "p90" : 6.91604708E8, + "p95" : 6.91604708E8, + "p99" : 6.91604708E8, + "min" : 6.61303E8, + "max" : 6.91604708E8, + "avg" : 6.8364137475E8 + }, + "totalScheduledTime" : "365.83us", + "totalCpuTime" : "355.00us", + "totalBlockedTime" : "10.71ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "40B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "10.72ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1998", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "40B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "54.25us", + "getOutputCpu" : "53.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.2999999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.2999999999999994E-5, + "p90" : 5.2999999999999994E-5, + "p95" : 5.2999999999999994E-5, + "p99" : 5.2999999999999994E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.005934749999999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0016689579999999997, + "p50" : 0.0031123749999999997, + "p75" : 0.005934749999999999, + "p90" : 0.005934749999999999, + "p95" : 0.005934749999999999, + "p99" : 0.005934749999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.424999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.424999999999999E-5, + "p90" : 5.424999999999999E-5, + "p95" : 5.424999999999999E-5, + "p99" : 5.424999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "10.72ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 96, + "averageBytesPerRequest" : 19, + "successfulRequestsCount" : 8, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 2 + } + } + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "6.54us", + "addInputCpu" : "7.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 5.4999999999999995E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.4999999999999997E-5, + "p50" : 1.9999999999999998E-5, + "p75" : 5.4999999999999995E-5, + "p90" : 5.4999999999999995E-5, + "p95" : 5.4999999999999995E-5, + "p99" : 5.4999999999999995E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 9.624999999999998E-6, + "max" : 5.574899999999999E-5, + "p01" : 9.624999999999998E-6, + "p05" : 9.624999999999998E-6, + "p10" : 9.624999999999998E-6, + "p25" : 1.7624999999999998E-5, + "p50" : 2.3958999999999995E-5, + "p75" : 5.574899999999999E-5, + "p90" : 5.574899999999999E-5, + "p95" : 5.574899999999999E-5, + "p99" : 5.574899999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "100.42us", + "finishCpu" : "92.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 3, + "firstStartTime" : "2026-03-30T07:59:03.913499Z", + "lastStartTime" : "2026-03-30T07:59:03.913499Z", + "lastEndTime" : "2026-03-30T07:59:04.067403Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.66645958E8, + "p01" : 6.66645958E8, + "p05" : 6.66645958E8, + "p10" : 6.66645958E8, + "p25" : 6.66645958E8, + "p50" : 6.66645958E8, + "p75" : 6.66645958E8, + "p90" : 6.66645958E8, + "p95" : 6.66645958E8, + "p99" : 6.66645958E8, + "min" : 6.66645958E8, + "max" : 6.66645958E8, + "avg" : 6.66645958E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.20548792E8, + "p01" : 8.20548792E8, + "p05" : 8.20548792E8, + "p10" : 8.20548792E8, + "p25" : 8.20548792E8, + "p50" : 8.20548792E8, + "p75" : 8.20548792E8, + "p90" : 8.20548792E8, + "p95" : 8.20548792E8, + "p99" : 8.20548792E8, + "min" : 8.20548792E8, + "max" : 8.20548792E8, + "avg" : 8.20548792E8 + }, + "totalScheduledTime" : "364.75us", + "totalCpuTime" : "352.00us", + "totalBlockedTime" : "152.79ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "25.45ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "127.34ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 0, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "104.08us", + "getOutputCpu" : "102.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.0199999999999999E-4, + "max" : 1.0199999999999999E-4, + "p01" : 1.0199999999999999E-4, + "p05" : 1.0199999999999999E-4, + "p10" : 1.0199999999999999E-4, + "p25" : 1.0199999999999999E-4, + "p50" : 1.0199999999999999E-4, + "p75" : 1.0199999999999999E-4, + "p90" : 1.0199999999999999E-4, + "p95" : 1.0199999999999999E-4, + "p99" : 1.0199999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.025448041999999997, + "max" : 0.025448041999999997, + "p01" : 0.025448041999999997, + "p05" : 0.025448041999999997, + "p10" : 0.025448041999999997, + "p25" : 0.025448041999999997, + "p50" : 0.025448041999999997, + "p75" : 0.025448041999999997, + "p90" : 0.025448041999999997, + "p95" : 0.025448041999999997, + "p99" : 0.025448041999999997, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0408299999999999E-4, + "max" : 1.0408299999999999E-4, + "p01" : 1.0408299999999999E-4, + "p05" : 1.0408299999999999E-4, + "p10" : 1.0408299999999999E-4, + "p25" : 1.0408299999999999E-4, + "p50" : 1.0408299999999999E-4, + "p75" : 1.0408299999999999E-4, + "p90" : 1.0408299999999999E-4, + "p95" : 1.0408299999999999E-4, + "p99" : 1.0408299999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "25.45ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 1, + "planNodeId" : "1020", + "operatorType" : "NestedLoopBuildOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "30.00us", + "addInputCpu" : "31.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2899999999999996E-4, + "max" : 2.2899999999999996E-4, + "p01" : 2.2899999999999996E-4, + "p05" : 2.2899999999999996E-4, + "p10" : 2.2899999999999996E-4, + "p25" : 2.2899999999999996E-4, + "p50" : 2.2899999999999996E-4, + "p75" : 2.2899999999999996E-4, + "p90" : 2.2899999999999996E-4, + "p95" : 2.2899999999999996E-4, + "p99" : 2.2899999999999996E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.12733858399999998, + "max" : 0.12733858399999998, + "p01" : 0.12733858399999998, + "p05" : 0.12733858399999998, + "p10" : 0.12733858399999998, + "p25" : 0.12733858399999998, + "p50" : 0.12733858399999998, + "p75" : 0.12733858399999998, + "p90" : 0.12733858399999998, + "p95" : 0.12733858399999998, + "p99" : 0.12733858399999998, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3795799999999997E-4, + "max" : 2.3795799999999997E-4, + "p01" : 2.3795799999999997E-4, + "p05" : 2.3795799999999997E-4, + "p10" : 2.3795799999999997E-4, + "p25" : 2.3795799999999997E-4, + "p50" : 2.3795799999999997E-4, + "p75" : 2.3795799999999997E-4, + "p90" : 2.3795799999999997E-4, + "p95" : 2.3795799999999997E-4, + "p99" : 2.3795799999999997E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "127.34ms", + "finishCalls" : 2, + "finishWall" : "207.96us", + "finishCpu" : "198.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "152B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "152B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 4, + "firstStartTime" : "2026-03-30T07:59:03.924368Z", + "lastStartTime" : "2026-03-30T07:59:03.936879Z", + "lastEndTime" : "2026-03-30T07:59:04.067834Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.734626583E9, + "p01" : 6.77513291E8, + "p05" : 6.77513291E8, + "p10" : 6.77513291E8, + "p25" : 6.78145709E8, + "p50" : 6.88943625E8, + "p75" : 6.90023958E8, + "p90" : 6.90023958E8, + "p95" : 6.90023958E8, + "p99" : 6.90023958E8, + "min" : 6.77513291E8, + "max" : 6.90023958E8, + "avg" : 6.8365664575E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.199574417E9, + "p01" : 7.92574625E8, + "p05" : 7.92574625E8, + "p10" : 7.92574625E8, + "p25" : 7.92928959E8, + "p50" : 7.93093417E8, + "p75" : 8.20977416E8, + "p90" : 8.20977416E8, + "p95" : 8.20977416E8, + "p99" : 8.20977416E8, + "min" : 7.92574625E8, + "max" : 8.20977416E8, + "avg" : 7.9989360425E8 + }, + "totalScheduledTime" : "2.49ms", + "totalCpuTime" : "1.43ms", + "totalBlockedTime" : "445.98ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "460B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "234B", + "processedInputPositions" : 1, + "inputBlockedTime" : "419.15ms", + "outputDataSize" : "225B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 0, + "planNodeId" : "1997", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "460B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "234B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "42.33us", + "getOutputCpu" : "41.00us", + "outputDataSize" : "234B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.0999999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0999999999999994E-5, + "p90" : 4.0999999999999994E-5, + "p95" : 4.0999999999999994E-5, + "p99" : 4.0999999999999994E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09908699999999998, + "max" : 0.11020291599999998, + "p01" : 0.09908699999999998, + "p05" : 0.09908699999999998, + "p10" : 0.09908699999999998, + "p25" : 0.09991345799999998, + "p50" : 0.10994774999999998, + "p75" : 0.11020291599999998, + "p90" : 0.11020291599999998, + "p95" : 0.11020291599999998, + "p99" : 0.11020291599999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.233399999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.233399999999999E-5, + "p90" : 4.233399999999999E-5, + "p95" : 4.233399999999999E-5, + "p99" : 4.233399999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "419.15ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 520, + "averageBytesPerRequest" : 113, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 112.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 107.0, + "p50" : 109.0, + "p75" : 112.0, + "p90" : 112.0, + "p95" : 112.0, + "p99" : 112.0, + "total" : 4 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 1, + "planNodeId" : "517", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "1.79us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "234B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 10, + "getOutputWall" : "216.13us", + "getOutputCpu" : "202.00us", + "outputDataSize" : "243B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 1.6799999999999996E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.3999999999999997E-5, + "p25" : 2.6999999999999996E-5, + "p50" : 2.9999999999999994E-5, + "p75" : 1.6799999999999996E-4, + "p90" : 1.6799999999999996E-4, + "p95" : 1.6799999999999996E-4, + "p99" : 1.6799999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.028853749999999997, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.028853749999999997, + "p90" : 0.028853749999999997, + "p95" : 0.028853749999999997, + "p99" : 0.028853749999999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6707999999999996E-5, + "max" : 1.6974899999999996E-4, + "p01" : 2.6707999999999996E-5, + "p05" : 2.6707999999999996E-5, + "p10" : 2.6707999999999996E-5, + "p25" : 2.9332999999999995E-5, + "p50" : 3.995799999999999E-5, + "p75" : 1.6974899999999996E-4, + "p90" : 1.6974899999999996E-4, + "p95" : 1.6974899999999996E-4, + "p99" : 1.6974899999999996E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "28.85ms", + "finishCalls" : 8, + "finishWall" : "47.83us", + "finishCpu" : "44.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "PROBE_OUTER", + "logHistogramProbes" : [ 0, 1, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 1, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 406, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 2, + "planNodeId" : "1020", + "operatorType" : "NestedLoopJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.04us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "243B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 9, + "getOutputWall" : "164.50us", + "getOutputCpu" : "44.00us", + "outputDataSize" : "252B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0E-6, + "max" : 3.9999999999999996E-5, + "p01" : 2.0E-6, + "p05" : 2.0E-6, + "p10" : 2.0E-6, + "p25" : 2.9999999999999997E-6, + "p50" : 4.0E-6, + "p75" : 3.9999999999999996E-5, + "p90" : 3.9999999999999996E-5, + "p95" : 3.9999999999999996E-5, + "p99" : 3.9999999999999996E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0030567079999999996, + "max" : 0.015534833999999997, + "p01" : 0.0030567079999999996, + "p05" : 0.0030567079999999996, + "p10" : 0.0030567079999999996, + "p25" : 0.004134374999999999, + "p50" : 0.014931457999999998, + "p75" : 0.015534833999999997, + "p90" : 0.015534833999999997, + "p95" : 0.015534833999999997, + "p99" : 0.015534833999999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.5419999999999995E-6, + "max" : 1.5979099999999997E-4, + "p01" : 2.5419999999999995E-6, + "p05" : 2.5419999999999995E-6, + "p10" : 2.5419999999999995E-6, + "p25" : 3.4999999999999995E-6, + "p50" : 4.917E-6, + "p75" : 1.5979099999999997E-4, + "p90" : 1.5979099999999997E-4, + "p95" : 1.5979099999999997E-4, + "p99" : 1.5979099999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "37.66ms", + "finishCalls" : 4, + "finishWall" : "4.21us", + "finishCpu" : "2.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 3, + "planNodeId" : "758", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.33us", + "addInputCpu" : "4.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "252B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 18, + "getOutputWall" : "614.04us", + "getOutputCpu" : "406.00us", + "outputDataSize" : "225B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4666999999999996E-5, + "max" : 5.40376E-4, + "p01" : 2.4666999999999996E-5, + "p05" : 2.4666999999999996E-5, + "p10" : 2.4666999999999996E-5, + "p25" : 3.916699999999999E-5, + "p50" : 8.249999999999999E-5, + "p75" : 5.40376E-4, + "p90" : 5.40376E-4, + "p95" : 5.40376E-4, + "p99" : 5.40376E-4, + "total" : 4 + }, + "Filter CPU time" : { + "duration" : "243459.00ns" + }, + "Projection CPU time" : { + "duration" : "2376.00ns" + }, + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 3.7799999999999997E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.3999999999999997E-5, + "p25" : 3.899999999999999E-5, + "p50" : 4.199999999999999E-5, + "p75" : 3.7799999999999997E-4, + "p90" : 3.7799999999999997E-4, + "p95" : 3.7799999999999997E-4, + "p99" : 3.7799999999999997E-4, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 6, + "finishWall" : "70.33us", + "finishCpu" : "73.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.41kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 4, + "planNodeId" : "758", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "545.88us", + "addInputCpu" : "326.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "225B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "225B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 421 + }, + "Scheduled time distribution (s)" : { + "min" : 7.079999999999999E-7, + "max" : 5.482499999999999E-4, + "p01" : 7.079999999999999E-7, + "p05" : 7.079999999999999E-7, + "p10" : 7.079999999999999E-7, + "p25" : 1.1249999999999998E-6, + "p50" : 2.292E-6, + "p75" : 5.482499999999999E-4, + "p90" : 5.482499999999999E-4, + "p95" : 5.482499999999999E-4, + "p99" : 5.482499999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 3.29E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0E-6, + "p50" : 5.999999999999999E-6, + "p75" : 3.29E-4, + "p90" : 3.29E-4, + "p95" : 3.29E-4, + "p99" : 3.29E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 421 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "6.50us", + "finishCpu" : "10.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.2.1.0", + "taskInstanceId" : -7237685982156191208, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.2.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "363B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "1.02kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.071225Z", + "outputBuffers" : { + "type" : "ARBITRARY", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 3.0994415283203125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 911776167 + } + }, + "noMoreSplits" : [ "1998", "1997", "2725" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.161154Z", + "firstStartTime" : "2026-03-30T07:59:03.881267Z", + "lastStartTime" : "2026-03-30T07:59:03.937547Z", + "lastEndTime" : "2026-03-30T07:59:04.068Z", + "endTime" : "2026-03-30T07:59:04.071866Z", + "elapsedTime" : "909.71ms", + "queuedTime" : "719.06ms", + "totalDrivers" : 17, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 17, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.02kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "31.13ms", + "totalCpuTime" : "14.27ms", + "totalBlockedTime" : "1.95s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "9.24kB", + "internalNetworkInputPositions" : 499, + "processedInputDataSize" : "9.27kB", + "processedInputPositions" : 499, + "inputBlockedTime" : "1.12s", + "outputDataSize" : "363B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.881267Z", + "lastStartTime" : "2026-03-30T07:59:03.891685Z", + "lastEndTime" : "2026-03-30T07:59:04.061334Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.596286459E9, + "p01" : 6.43777125E8, + "p05" : 6.43777125E8, + "p10" : 6.43777125E8, + "p25" : 6.46700084E8, + "p50" : 6.51616125E8, + "p75" : 6.54193125E8, + "p90" : 6.54193125E8, + "p95" : 6.54193125E8, + "p99" : 6.54193125E8, + "min" : 6.43777125E8, + "max" : 6.54193125E8, + "avg" : 6.4907161475E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.294282666E9, + "p01" : 8.23473916E8, + "p05" : 8.23473916E8, + "p10" : 8.23473916E8, + "p25" : 8.23475666E8, + "p50" : 8.234925E8, + "p75" : 8.23840584E8, + "p90" : 8.23840584E8, + "p95" : 8.23840584E8, + "p99" : 8.23840584E8, + "min" : 8.23473916E8, + "max" : 8.23840584E8, + "avg" : 8.235706665E8 + }, + "totalScheduledTime" : "3.49ms", + "totalCpuTime" : "1.34ms", + "totalBlockedTime" : "679.59ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.21kB", + "internalNetworkInputPositions" : 495, + "processedInputDataSize" : "8.70kB", + "processedInputPositions" : 495, + "inputBlockedTime" : "679.59ms", + "outputDataSize" : "8.70kB", + "outputPositions" : 495, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2725", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "8.21kB", + "internalNetworkInputPositions" : 495, + "inputDataSize" : "8.70kB", + "inputPositions" : 495, + "sumSquaredInputPositions" : 95969.0, + "getOutputCalls" : 9, + "getOutputWall" : "1.81ms", + "getOutputCpu" : "392.00us", + "outputDataSize" : "8.70kB", + "outputPositions" : 495, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.0299999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.6999999999999996E-5, + "p50" : 1.6199999999999998E-4, + "p75" : 2.0299999999999997E-4, + "p90" : 2.0299999999999997E-4, + "p95" : 2.0299999999999997E-4, + "p99" : 2.0299999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 251.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 82.0, + "p50" : 162.0, + "p75" : 251.0, + "p90" : 251.0, + "p95" : 251.0, + "p99" : 251.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.16530016699999997, + "max" : 0.17521183299999998, + "p01" : 0.16530016699999997, + "p05" : 0.16530016699999997, + "p10" : 0.16530016699999997, + "p25" : 0.16759108199999997, + "p50" : 0.17149154199999997, + "p75" : 0.17521183299999998, + "p90" : 0.17521183299999998, + "p95" : 0.17521183299999998, + "p99" : 0.17521183299999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0016008759999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.8790999999999996E-5, + "p50" : 1.8329099999999998E-4, + "p75" : 0.0016008759999999998, + "p90" : 0.0016008759999999998, + "p95" : 0.0016008759999999998, + "p99" : 0.0016008759999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "679.59ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 6000, + "averageBytesPerRequest" : 932, + "successfulRequestsCount" : 36, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 169.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 169.0, + "p90" : 169.0, + "p95" : 169.0, + "p99" : 169.0, + "total" : 9 + } + } + }, { + "stageId" : 2, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 9, + "addInputWall" : "554.88us", + "addInputCpu" : "532.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.70kB", + "inputPositions" : 495, + "sumSquaredInputPositions" : 95969.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "8.70kB", + "outputPositions" : 495, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 3.2799999999999995E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 4.699999999999999E-5, + "p50" : 2.2599999999999996E-4, + "p75" : 3.2799999999999995E-4, + "p90" : 3.2799999999999995E-4, + "p95" : 3.2799999999999995E-4, + "p99" : 3.2799999999999995E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 251.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 82.0, + "p50" : 162.0, + "p75" : 251.0, + "p90" : 251.0, + "p95" : 251.0, + "p99" : 251.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.75E-6, + "max" : 3.5320899999999994E-4, + "p01" : 8.75E-6, + "p05" : 8.75E-6, + "p10" : 8.75E-6, + "p25" : 4.7332999999999996E-5, + "p50" : 2.2516699999999997E-4, + "p75" : 3.5320899999999994E-4, + "p90" : 3.5320899999999994E-4, + "p95" : 3.5320899999999994E-4, + "p99" : 3.5320899999999994E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "79.58us", + "finishCpu" : "76.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.895363Z", + "lastStartTime" : "2026-03-30T07:59:03.904889Z", + "lastEndTime" : "2026-03-30T07:59:04.068845Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.650479459E9, + "p01" : 6.5787025E8, + "p05" : 6.5787025E8, + "p10" : 6.5787025E8, + "p25" : 6.60363125E8, + "p50" : 6.64850959E8, + "p75" : 6.67395125E8, + "p90" : 6.67395125E8, + "p95" : 6.67395125E8, + "p99" : 6.67395125E8, + "min" : 6.5787025E8, + "max" : 6.67395125E8, + "avg" : 6.6261986475E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.324967875E9, + "p01" : 8.31204583E8, + "p05" : 8.31204583E8, + "p10" : 8.31204583E8, + "p25" : 8.31205334E8, + "p50" : 8.31207375E8, + "p75" : 8.31350583E8, + "p90" : 8.31350583E8, + "p95" : 8.31350583E8, + "p99" : 8.31350583E8, + "min" : 8.31204583E8, + "max" : 8.31350583E8, + "avg" : 8.3124196875E8 + }, + "totalScheduledTime" : "22.88ms", + "totalCpuTime" : "9.67ms", + "totalBlockedTime" : "640.51ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "8.70kB", + "processedInputPositions" : 495, + "inputBlockedTime" : "632.63ms", + "outputDataSize" : "6.96kB", + "outputPositions" : 396, + "outputBlockedTime" : "7.88ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2719", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.70kB", + "inputPositions" : 495, + "sumSquaredInputPositions" : 61541.0, + "getOutputCalls" : 36, + "getOutputWall" : "1.12ms", + "getOutputCpu" : "282.00us", + "outputDataSize" : "8.70kB", + "outputPositions" : 495, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.099999999999999E-5, + "max" : 9.899999999999998E-5, + "p01" : 5.099999999999999E-5, + "p05" : 5.099999999999999E-5, + "p10" : 5.099999999999999E-5, + "p25" : 6.199999999999999E-5, + "p50" : 7.0E-5, + "p75" : 9.899999999999998E-5, + "p90" : 9.899999999999998E-5, + "p95" : 9.899999999999998E-5, + "p99" : 9.899999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 116.0, + "max" : 138.0, + "p01" : 116.0, + "p05" : 116.0, + "p10" : 116.0, + "p25" : 120.0, + "p50" : 121.0, + "p75" : 138.0, + "p90" : 138.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.15266904099999998, + "max" : 0.16237108299999997, + "p01" : 0.15266904099999998, + "p05" : 0.15266904099999998, + "p10" : 0.15266904099999998, + "p25" : 0.15686104199999998, + "p50" : 0.16072708299999997, + "p75" : 0.16237108299999997, + "p90" : 0.16237108299999997, + "p95" : 0.16237108299999997, + "p99" : 0.16237108299999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.591799999999999E-5, + "max" : 9.209179999999998E-4, + "p01" : 5.591799999999999E-5, + "p05" : 5.591799999999999E-5, + "p10" : 5.591799999999999E-5, + "p25" : 7.020799999999999E-5, + "p50" : 7.366699999999998E-5, + "p75" : 9.209179999999998E-4, + "p90" : 9.209179999999998E-4, + "p95" : 9.209179999999998E-4, + "p99" : 9.209179999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "632.63ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "20", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 4, + "addInputCalls" : 36, + "addInputWall" : "4.46ms", + "addInputCpu" : "2.25ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "8.70kB", + "inputPositions" : 495, + "sumSquaredInputPositions" : 61541.0, + "getOutputCalls" : 62, + "getOutputWall" : "1.79ms", + "getOutputCpu" : "1.12ms", + "outputDataSize" : "6.96kB", + "outputPositions" : 396, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 116.0, + "max" : 138.0, + "p01" : 116.0, + "p05" : 116.0, + "p10" : 116.0, + "p25" : 120.0, + "p50" : 121.0, + "p75" : 138.0, + "p90" : 138.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 4 + }, + "Group by hash update CPU time" : { + "duration" : "802415.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.650819999999999E-4, + "max" : 0.002356124, + "p01" : 8.650819999999999E-4, + "p05" : 8.650819999999999E-4, + "p10" : 8.650819999999999E-4, + "p25" : 0.0012551659999999998, + "p50" : 0.0018755829999999997, + "p75" : 0.002356124, + "p90" : 0.002356124, + "p95" : 0.002356124, + "p99" : 0.002356124, + "total" : 4 + }, + "Accumulator update CPU time" : { + "duration" : "3003832.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.769999999999999E-4, + "max" : 0.0012419999999999998, + "p01" : 5.769999999999999E-4, + "p05" : 5.769999999999999E-4, + "p10" : 5.769999999999999E-4, + "p25" : 7.019999999999999E-4, + "p50" : 9.439999999999999E-4, + "p75" : 0.0012419999999999998, + "p90" : 0.0012419999999999998, + "p95" : 0.0012419999999999998, + "p99" : 0.0012419999999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "103.83us", + "finishCpu" : "95.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 1, + "operatorId" : 3, + "planNodeId" : "517", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "102.88us", + "addInputCpu" : "111.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "6.96kB", + "inputPositions" : 396, + "sumSquaredInputPositions" : 39632.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "6.96kB", + "outputPositions" : 396, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.839999999999999E-4, + "max" : 0.0038239999999999993, + "p01" : 5.839999999999999E-4, + "p05" : 5.839999999999999E-4, + "p10" : 5.839999999999999E-4, + "p25" : 5.899999999999999E-4, + "p50" : 7.529999999999999E-4, + "p75" : 0.0038239999999999993, + "p90" : 0.0038239999999999993, + "p95" : 0.0038239999999999993, + "p99" : 0.0038239999999999993, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 88.0, + "max" : 116.0, + "p01" : 88.0, + "p05" : 88.0, + "p10" : 88.0, + "p25" : 96.0, + "p50" : 96.0, + "p75" : 116.0, + "p90" : 116.0, + "p95" : 116.0, + "p99" : 116.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0015627079999999997, + "max" : 0.0021287499999999996, + "p01" : 0.0015627079999999997, + "p05" : 0.0015627079999999997, + "p10" : 0.0015627079999999997, + "p25" : 0.0020767499999999996, + "p50" : 0.0021122499999999995, + "p75" : 0.0021287499999999996, + "p90" : 0.0021287499999999996, + "p95" : 0.0021287499999999996, + "p99" : 0.0021287499999999996, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0032368339999999996, + "max" : 0.0043879159999999995, + "p01" : 0.0032368339999999996, + "p05" : 0.0032368339999999996, + "p10" : 0.0032368339999999996, + "p25" : 0.0038102079999999994, + "p50" : 0.0038119169999999993, + "p75" : 0.0043879159999999995, + "p90" : 0.0043879159999999995, + "p95" : 0.0043879159999999995, + "p99" : 0.0043879159999999995, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "7.88ms", + "finishCalls" : 8, + "finishWall" : "15.14ms", + "finishCpu" : "5.64ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.907703Z", + "lastStartTime" : "2026-03-30T07:59:03.924234Z", + "lastEndTime" : "2026-03-30T07:59:03.940870Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.70696525E9, + "p01" : 6.70208042E8, + "p05" : 6.70208042E8, + "p10" : 6.70208042E8, + "p25" : 6.73114792E8, + "p50" : 6.76904041E8, + "p75" : 6.86738375E8, + "p90" : 6.86738375E8, + "p95" : 6.86738375E8, + "p99" : 6.86738375E8, + "min" : 6.70208042E8, + "max" : 6.86738375E8, + "avg" : 6.767413125E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.795623916E9, + "p01" : 6.86859458E8, + "p05" : 6.86859458E8, + "p10" : 6.86859458E8, + "p25" : 7.02568458E8, + "p50" : 7.0282175E8, + "p75" : 7.0337425E8, + "p90" : 7.0337425E8, + "p95" : 7.0337425E8, + "p99" : 7.0337425E8, + "min" : 6.86859458E8, + "max" : 7.0337425E8, + "avg" : 6.98905979E8 + }, + "totalScheduledTime" : "429.88us", + "totalCpuTime" : "405.00us", + "totalBlockedTime" : "26.97ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "40B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "26.97ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1998", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "40B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "47.58us", + "getOutputCpu" : "46.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.599999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.599999999999999E-5, + "p90" : 4.599999999999999E-5, + "p95" : 4.599999999999999E-5, + "p99" : 4.599999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.013879999999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0029519169999999996, + "p50" : 0.010142583999999998, + "p75" : 0.013879999999999998, + "p90" : 0.013879999999999998, + "p95" : 0.013879999999999998, + "p99" : 0.013879999999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.7582999999999995E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.7582999999999995E-5, + "p90" : 4.7582999999999995E-5, + "p95" : 4.7582999999999995E-5, + "p99" : 4.7582999999999995E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "26.97ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 96, + "averageBytesPerRequest" : 19, + "successfulRequestsCount" : 8, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 2 + } + } + }, { + "stageId" : 2, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "7.21us", + "addInputCpu" : "7.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.6999999999999996E-5, + "max" : 4.599999999999999E-5, + "p01" : 1.6999999999999996E-5, + "p05" : 1.6999999999999996E-5, + "p10" : 1.6999999999999996E-5, + "p25" : 2.0999999999999995E-5, + "p50" : 3.899999999999999E-5, + "p75" : 4.599999999999999E-5, + "p90" : 4.599999999999999E-5, + "p95" : 4.599999999999999E-5, + "p99" : 4.599999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.7457999999999998E-5, + "max" : 5.262499999999999E-5, + "p01" : 1.7457999999999998E-5, + "p05" : 1.7457999999999998E-5, + "p10" : 1.7457999999999998E-5, + "p25" : 2.4207999999999996E-5, + "p50" : 4.854199999999999E-5, + "p75" : 5.262499999999999E-5, + "p90" : 5.262499999999999E-5, + "p95" : 5.262499999999999E-5, + "p99" : 5.262499999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "135.63us", + "finishCpu" : "116.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 3, + "firstStartTime" : "2026-03-30T07:59:03.927266Z", + "lastStartTime" : "2026-03-30T07:59:03.927266Z", + "lastEndTime" : "2026-03-30T07:59:04.068167Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.89770042E8, + "p01" : 6.89770042E8, + "p05" : 6.89770042E8, + "p10" : 6.89770042E8, + "p25" : 6.89770042E8, + "p50" : 6.89770042E8, + "p75" : 6.89770042E8, + "p90" : 6.89770042E8, + "p95" : 6.89770042E8, + "p99" : 6.89770042E8, + "min" : 6.89770042E8, + "max" : 6.89770042E8, + "avg" : 6.89770042E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 8.30666209E8, + "p01" : 8.30666209E8, + "p05" : 8.30666209E8, + "p10" : 8.30666209E8, + "p25" : 8.30666209E8, + "p50" : 8.30666209E8, + "p75" : 8.30666209E8, + "p90" : 8.30666209E8, + "p95" : 8.30666209E8, + "p99" : 8.30666209E8, + "min" : 8.30666209E8, + "max" : 8.30666209E8, + "avg" : 8.30666209E8 + }, + "totalScheduledTime" : "151.21us", + "totalCpuTime" : "147.00us", + "totalBlockedTime" : "139.80ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "13.59ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "126.21ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 0, + "planNodeId" : "2571", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "10.38us", + "getOutputCpu" : "9.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 8.999999999999999E-6, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 8.999999999999999E-6, + "p90" : 8.999999999999999E-6, + "p95" : 8.999999999999999E-6, + "p99" : 8.999999999999999E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.013589499999999997, + "max" : 0.013589499999999997, + "p01" : 0.013589499999999997, + "p05" : 0.013589499999999997, + "p10" : 0.013589499999999997, + "p25" : 0.013589499999999997, + "p50" : 0.013589499999999997, + "p75" : 0.013589499999999997, + "p90" : 0.013589499999999997, + "p95" : 0.013589499999999997, + "p99" : 0.013589499999999997, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0374999999999998E-5, + "max" : 1.0374999999999998E-5, + "p01" : 1.0374999999999998E-5, + "p05" : 1.0374999999999998E-5, + "p10" : 1.0374999999999998E-5, + "p25" : 1.0374999999999998E-5, + "p50" : 1.0374999999999998E-5, + "p75" : 1.0374999999999998E-5, + "p90" : 1.0374999999999998E-5, + "p95" : 1.0374999999999998E-5, + "p99" : 1.0374999999999998E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "13.59ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 3, + "operatorId" : 1, + "planNodeId" : "1020", + "operatorType" : "NestedLoopBuildOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "12.25us", + "addInputCpu" : "12.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.1899999999999998E-4, + "max" : 1.1899999999999998E-4, + "p01" : 1.1899999999999998E-4, + "p05" : 1.1899999999999998E-4, + "p10" : 1.1899999999999998E-4, + "p25" : 1.1899999999999998E-4, + "p50" : 1.1899999999999998E-4, + "p75" : 1.1899999999999998E-4, + "p90" : 1.1899999999999998E-4, + "p95" : 1.1899999999999998E-4, + "p99" : 1.1899999999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.12620712499999998, + "max" : 0.12620712499999998, + "p01" : 0.12620712499999998, + "p05" : 0.12620712499999998, + "p10" : 0.12620712499999998, + "p25" : 0.12620712499999998, + "p50" : 0.12620712499999998, + "p75" : 0.12620712499999998, + "p90" : 0.12620712499999998, + "p95" : 0.12620712499999998, + "p99" : 0.12620712499999998, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2116699999999999E-4, + "max" : 1.2116699999999999E-4, + "p01" : 1.2116699999999999E-4, + "p05" : 1.2116699999999999E-4, + "p10" : 1.2116699999999999E-4, + "p25" : 1.2116699999999999E-4, + "p50" : 1.2116699999999999E-4, + "p75" : 1.2116699999999999E-4, + "p90" : 1.2116699999999999E-4, + "p95" : 1.2116699999999999E-4, + "p99" : 1.2116699999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "126.21ms", + "finishCalls" : 2, + "finishWall" : "108.92us", + "finishCpu" : "107.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "152B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "152B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 4, + "firstStartTime" : "2026-03-30T07:59:03.929530Z", + "lastStartTime" : "2026-03-30T07:59:03.937547Z", + "lastEndTime" : "2026-03-30T07:59:04.068221Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.786069456E9, + "p01" : 6.92032916E8, + "p05" : 6.92032916E8, + "p10" : 6.92032916E8, + "p25" : 6.94872333E8, + "p50" : 6.99114541E8, + "p75" : 7.00049666E8, + "p90" : 7.00049666E8, + "p95" : 7.00049666E8, + "p99" : 7.00049666E8, + "min" : 6.92032916E8, + "max" : 7.00049666E8, + "avg" : 6.96517364E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.265172541E9, + "p01" : 8.01993708E8, + "p05" : 8.01993708E8, + "p10" : 8.01993708E8, + "p25" : 8.02203458E8, + "p50" : 8.30252417E8, + "p75" : 8.30722958E8, + "p90" : 8.30722958E8, + "p95" : 8.30722958E8, + "p99" : 8.30722958E8, + "min" : 8.01993708E8, + "max" : 8.30722958E8, + "avg" : 8.1629313525E8 + }, + "totalScheduledTime" : "4.18ms", + "totalCpuTime" : "2.71ms", + "totalBlockedTime" : "466.10ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1016B", + "internalNetworkInputPositions" : 3, + "processedInputDataSize" : "573B", + "processedInputPositions" : 3, + "inputBlockedTime" : "409.37ms", + "outputDataSize" : "363B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 0, + "planNodeId" : "1997", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1016B", + "internalNetworkInputPositions" : 3, + "inputDataSize" : "573B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 2, + "getOutputWall" : "101.21us", + "getOutputCpu" : "96.00us", + "outputDataSize" : "573B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.2999999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.2999999999999995E-5, + "p75" : 5.2999999999999994E-5, + "p90" : 5.2999999999999994E-5, + "p95" : 5.2999999999999994E-5, + "p99" : 5.2999999999999994E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09991545799999998, + "max" : 0.10716233399999998, + "p01" : 0.09991545799999998, + "p05" : 0.09991545799999998, + "p10" : 0.09991545799999998, + "p25" : 0.10044583199999998, + "p50" : 0.10184608299999999, + "p75" : 0.10716233399999998, + "p90" : 0.10716233399999998, + "p95" : 0.10716233399999998, + "p99" : 0.10716233399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.574999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.545799999999999E-5, + "p75" : 5.574999999999999E-5, + "p90" : 5.574999999999999E-5, + "p95" : 5.574999999999999E-5, + "p99" : 5.574999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "409.37ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1136, + "averageBytesPerRequest" : 200, + "successfulRequestsCount" : 20, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 105.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 102.0, + "p75" : 104.0, + "p90" : 105.0, + "p95" : 105.0, + "p99" : 105.0, + "total" : 5 + } + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 1, + "planNodeId" : "517", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "4.46us", + "addInputCpu" : "7.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "573B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 12, + "getOutputWall" : "459.29us", + "getOutputCpu" : "396.00us", + "outputDataSize" : "600B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.8999999999999997E-5, + "max" : 3.4599999999999995E-4, + "p01" : 2.8999999999999997E-5, + "p05" : 2.8999999999999997E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 2.9999999999999994E-5, + "p50" : 1.7399999999999997E-4, + "p75" : 3.4599999999999995E-4, + "p90" : 3.4599999999999995E-4, + "p95" : 3.4599999999999995E-4, + "p99" : 3.4599999999999995E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.029907916999999996, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.028892290999999997, + "p75" : 0.029907916999999996, + "p90" : 0.029907916999999996, + "p95" : 0.029907916999999996, + "p99" : 0.029907916999999996, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2124999999999995E-5, + "max" : 6.04876E-4, + "p01" : 3.2124999999999995E-5, + "p05" : 3.2124999999999995E-5, + "p10" : 3.2124999999999995E-5, + "p25" : 4.729099999999999E-5, + "p50" : 2.1941699999999996E-4, + "p75" : 6.04876E-4, + "p90" : 6.04876E-4, + "p95" : 6.04876E-4, + "p99" : 6.04876E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "58.80ms", + "finishCalls" : 11, + "finishWall" : "439.96us", + "finishCpu" : "176.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "PROBE_OUTER", + "logHistogramProbes" : [ 0, 3, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 3, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 792, + "rleProbes" : 0, + "totalProbes" : 2 + } + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 2, + "planNodeId" : "1020", + "operatorType" : "NestedLoopJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "168.83us", + "addInputCpu" : "170.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "600B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 13, + "getOutputWall" : "666.37us", + "getOutputCpu" : "265.00us", + "outputDataSize" : "627B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 2.49E-4, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 1.3999999999999998E-5, + "p50" : 1.7199999999999998E-4, + "p75" : 2.49E-4, + "p90" : 2.49E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.004034291, + "max" : 0.011901499999999999, + "p01" : 0.004034291, + "p05" : 0.004034291, + "p10" : 0.004034291, + "p25" : 0.0048012919999999995, + "p50" : 0.009056499999999999, + "p75" : 0.011901499999999999, + "p90" : 0.011901499999999999, + "p95" : 0.011901499999999999, + "p99" : 0.011901499999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.1659999999999994E-6, + "max" : 4.5795799999999995E-4, + "p01" : 3.1659999999999994E-6, + "p05" : 3.1659999999999994E-6, + "p10" : 3.1659999999999994E-6, + "p25" : 2.4082999999999996E-5, + "p50" : 3.53624E-4, + "p75" : 4.5795799999999995E-4, + "p90" : 4.5795799999999995E-4, + "p95" : 4.5795799999999995E-4, + "p99" : 4.5795799999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "29.79ms", + "finishCalls" : 4, + "finishWall" : "3.62us", + "finishCpu" : "4.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 3, + "planNodeId" : "758", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "5.08us", + "addInputCpu" : "6.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "627B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 23, + "getOutputWall" : "1.16ms", + "getOutputCpu" : "744.00us", + "outputDataSize" : "363B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.7750999999999996E-5, + "max" : 0.0010032079999999998, + "p01" : 2.7750999999999996E-5, + "p05" : 2.7750999999999996E-5, + "p10" : 2.7750999999999996E-5, + "p25" : 6.4543E-5, + "p50" : 4.5358399999999993E-4, + "p75" : 0.0010032079999999998, + "p90" : 0.0010032079999999998, + "p95" : 0.0010032079999999998, + "p99" : 0.0010032079999999998, + "total" : 4 + }, + "Filter CPU time" : { + "duration" : "430916.00ns" + }, + "Projection CPU time" : { + "duration" : "61957.00ns" + }, + "CPU time distribution (s)" : { + "min" : 2.6999999999999996E-5, + "max" : 5.049999999999999E-4, + "p01" : 2.6999999999999996E-5, + "p05" : 2.6999999999999996E-5, + "p10" : 2.6999999999999996E-5, + "p25" : 5.099999999999999E-5, + "p50" : 2.9499999999999996E-4, + "p75" : 5.049999999999999E-4, + "p90" : 5.049999999999999E-4, + "p95" : 5.049999999999999E-4, + "p99" : 5.049999999999999E-4, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 8, + "finishWall" : "386.50us", + "finishCpu" : "128.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.41kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 2, + "pipelineId" : 4, + "operatorId" : 4, + "planNodeId" : "758", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "521.29us", + "addInputCpu" : "471.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "363B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 2.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "363B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 755 + }, + "Scheduled time distribution (s)" : { + "min" : 6.249999999999999E-7, + "max" : 4.148329999999999E-4, + "p01" : 6.249999999999999E-7, + "p05" : 6.249999999999999E-7, + "p10" : 6.249999999999999E-7, + "p25" : 9.579999999999998E-7, + "p50" : 1.28375E-4, + "p75" : 4.148329999999999E-4, + "p90" : 4.148329999999999E-4, + "p95" : 4.148329999999999E-4, + "p99" : 4.148329999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 1.0E-6, + "max" : 3.6599999999999995E-4, + "p01" : 1.0E-6, + "p05" : 1.0E-6, + "p10" : 1.0E-6, + "p25" : 1.0E-6, + "p50" : 1.1399999999999998E-4, + "p75" : 3.6599999999999995E-4, + "p90" : 3.6599999999999995E-4, + "p95" : 3.6599999999999995E-4, + "p99" : 3.6599999999999995E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 755 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "23.50us", + "finishCpu" : "11.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.3", "20260330_075902_00004_iggau.12", "20260330_075902_00004_iggau.19" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.3", + "state" : "FINISHED", + "plan" : { + "id" : "3", + "root" : { + "@type" : "join", + "id" : "1699", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1988", + "sourceFragmentIds" : [ "4" ], + "outputs" : [ { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2566", + "type" : "REPARTITION", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1989", + "sourceFragmentIds" : [ "7" ], + "outputs" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "suppkey_5" + }, + "right" : { + "type" : "bigint", + "name" : "suppkey" + } + } ], + "leftOutputSymbols" : [ { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "rightOutputSymbols" : [ { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2206" : { + "type" : "bigint", + "name" : "suppkey" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 28.8, + "outputSizeInBytes" : 5288.688, + "cpuCost" : 837914.4480000001, + "memoryCost" : 4002.66, + "networkCost" : 242028.7 + } + }, + "symbols" : [ { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "bigint", + "name" : "suppkey" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_4" + } + } ] + }, + "outputLayout" : [ { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1699" : { + "outputRowCount" : 28.8, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 28.8 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + }, + "1988" : { + "outputRowCount" : 144.0, + "symbolStatistics" : { + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 36.0 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 144.0 + }, + "6|bigint|suppkey_5" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + } + } + }, + "2566" : { + "outputRowCount" : 20.0, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|suppkey" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + }, + "1989" : { + "outputRowCount" : 20.0, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|suppkey" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + } + }, + "costs" : { + "1699" : { + "cpuCost" : 1070804.188, + "maxMemory" : 4002.66, + "maxMemoryWhenOutputting" : 3897.26, + "networkCost" : 242028.7, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 13293.728, + "maxMemory" : 3392.0, + "networkCost" : 0.0 + } + }, + "1988" : { + "cpuCost" : 977061.8600000001, + "maxMemory" : 505.26, + "maxMemoryWhenOutputting" : 505.26, + "networkCost" : 221118.30000000002, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 4613.04, + "maxMemory" : 0.0, + "networkCost" : 4613.04 + } + }, + "2566" : { + "cpuCost" : 80448.6, + "maxMemory" : 114.4, + "maxMemoryWhenOutputting" : 105.4, + "networkCost" : 20910.4, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 3392.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1989" : { + "cpuCost" : 77056.6, + "maxMemory" : 114.4, + "maxMemoryWhenOutputting" : 105.4, + "networkCost" : 20910.4, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 3392.0, + "maxMemory" : 0.0, + "networkCost" : 3392.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1699\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(suppkey_5 = suppkey)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {suppkey -> #df_2206}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1988\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[4]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_5\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2566\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"HASH\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[suppkey::bigint]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1989\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[7]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "double", "bigint", "varchar(25)", "varchar(25)", "varchar(40)", "varchar(15)", "double", "varchar(101)", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.156179Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 36, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 36, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.55MB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "74.72ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "26.75ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "13.15s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "7.21kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 36, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "4.03kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 36, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "8.73s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2635780250, + "min" : 0.0, + "max" : 4.8160552978515625E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "1001B", + "failedOutputDataSize" : "0B", + "outputPositions" : 5, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 3, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1989", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "5.57kB", + "internalNetworkInputPositions" : 20, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 114.0, + "getOutputCalls" : 13, + "getOutputWall" : "687.08us", + "getOutputCpu" : "485.00us", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.6699999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0899999999999998E-4, + "p90" : 1.1199999999999998E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 6.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.128471334, + "max" : 0.8006152079999999, + "p01" : 0.128471334, + "p05" : 0.128471334, + "p10" : 0.12999208299999998, + "p25" : 0.13204687499999998, + "p50" : 0.15154574999999998, + "p75" : 0.7998607079999999, + "p90" : 0.8002474579999999, + "p95" : 0.8006152079999999, + "p99" : 0.8006152079999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.9974999999999994E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.1558299999999998E-4, + "p90" : 1.7141599999999997E-4, + "p95" : 2.9974999999999994E-4, + "p99" : 2.9974999999999994E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.93s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 2312, + "averageBytesPerRequest" : 295, + "successfulRequestsCount" : 76, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 796.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 793.0, + "p75" : 796.0, + "p90" : 796.0, + "p95" : 796.0, + "p99" : 796.0, + "total" : 12 + } + } + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 16, + "getOutputWall" : "299.83us", + "getOutputCpu" : "184.00us", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 3.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 1.4999999999999997E-5, + "p75" : 2.5999999999999995E-5, + "p90" : 2.7999999999999996E-5, + "p95" : 3.699999999999999E-5, + "p99" : 3.699999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.11726629099999998, + "max" : 0.7975223749999999, + "p01" : 0.11726629099999998, + "p05" : 0.11726629099999998, + "p10" : 0.11796520799999999, + "p25" : 0.12213608299999998, + "p50" : 0.12655408299999998, + "p75" : 0.7936654989999998, + "p90" : 0.7971340839999999, + "p95" : 0.7975223749999999, + "p99" : 0.7975223749999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 9.462499999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 9.083E-6, + "p50" : 1.6248999999999996E-5, + "p75" : 3.2582999999999996E-5, + "p90" : 6.5835E-5, + "p95" : 9.462499999999998E-5, + "p99" : 9.462499999999998E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.16s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1988", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.63kB", + "internalNetworkInputPositions" : 16, + "inputDataSize" : "736B", + "inputPositions" : 16, + "sumSquaredInputPositions" : 30.0, + "getOutputCalls" : 10, + "getOutputWall" : "1.40ms", + "getOutputCpu" : "740.00us", + "outputDataSize" : "736B", + "outputPositions" : 16, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.2299999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.699999999999999E-5, + "p50" : 5.599999999999999E-5, + "p75" : 9.699999999999999E-5, + "p90" : 1.1899999999999998E-4, + "p95" : 1.2299999999999998E-4, + "p99" : 1.2299999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.08021416599999999, + "max" : 0.7744502089999998, + "p01" : 0.08021416599999999, + "p05" : 0.08021416599999999, + "p10" : 0.08116320899999999, + "p25" : 0.08386887599999998, + "p50" : 0.09693979199999998, + "p75" : 0.7730822499999999, + "p90" : 0.7742327499999999, + "p95" : 0.7744502089999998, + "p99" : 0.7744502089999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.928749999999999E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.829199999999999E-5, + "p50" : 5.9124999999999994E-5, + "p75" : 1.5362499999999998E-4, + "p90" : 2.0358299999999996E-4, + "p95" : 5.928749999999999E-4, + "p99" : 5.928749999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.80s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 288, + "averageBytesPerRequest" : 85, + "successfulRequestsCount" : 76, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 767.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 90.0, + "p90" : 762.0, + "p95" : 767.0, + "p99" : 767.0, + "total" : 13 + } + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "89.75us", + "addInputCpu" : "95.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1001B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1001B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.166999999999998E-6, + "max" : 4.607919999999999E-4, + "p01" : 8.166999999999998E-6, + "p05" : 8.166999999999998E-6, + "p10" : 9.291999999999998E-6, + "p25" : 1.0582999999999998E-5, + "p50" : 1.5457999999999997E-5, + "p75" : 1.4575E-4, + "p90" : 2.9033299999999993E-4, + "p95" : 4.607919999999999E-4, + "p99" : 4.607919999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.8799999999999995E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.6E-5, + "p75" : 1.4699999999999997E-4, + "p90" : 1.7599999999999997E-4, + "p95" : 2.8799999999999995E-4, + "p99" : 2.8799999999999995E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.04ms", + "finishCpu" : "753.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1616 + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 10, + "addInputWall" : "51.54us", + "addInputCpu" : "54.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "736B", + "inputPositions" : 16, + "sumSquaredInputPositions" : 30.0, + "getOutputCalls" : 38, + "getOutputWall" : "1.88ms", + "getOutputCpu" : "1.35ms", + "outputDataSize" : "1001B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 2.9699999999999996E-4, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 5.7999999999999994E-5, + "p25" : 1.1899999999999998E-4, + "p50" : 1.4299999999999998E-4, + "p75" : 1.8599999999999997E-4, + "p90" : 2.2099999999999998E-4, + "p95" : 2.9699999999999996E-4, + "p99" : 2.9699999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.041987791, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.026454832999999997, + "p50" : 0.030589292999999997, + "p75" : 0.038588873999999995, + "p90" : 0.041660332999999994, + "p95" : 0.041987791, + "p99" : 0.041987791, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.8541999999999995E-5, + "max" : 3.8799999999999994E-4, + "p01" : 2.8541999999999995E-5, + "p05" : 2.8541999999999995E-5, + "p10" : 8.149999999999999E-5, + "p25" : 1.2108199999999998E-4, + "p50" : 1.8933199999999998E-4, + "p75" : 2.7458399999999997E-4, + "p90" : 3.0754199999999995E-4, + "p95" : 3.8799999999999994E-4, + "p99" : 3.8799999999999994E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "327.43ms", + "finishCalls" : 36, + "finishWall" : "357.91us", + "finishCpu" : "328.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 11, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 65, + "rleProbes" : 0, + "totalProbes" : 10 + } + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 16, + "addInputWall" : "291.84us", + "addInputCpu" : "248.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.759999999999999E-4, + "max" : 0.0046619999999999995, + "p01" : 4.759999999999999E-4, + "p05" : 4.759999999999999E-4, + "p10" : 4.7699999999999994E-4, + "p25" : 6.559999999999999E-4, + "p50" : 8.329999999999999E-4, + "p75" : 0.0036629999999999996, + "p90" : 0.0038209999999999993, + "p95" : 0.0046619999999999995, + "p99" : 0.0046619999999999995, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 6.447909999999999E-4, + "max" : 0.0022672919999999997, + "p01" : 6.447909999999999E-4, + "p05" : 6.447909999999999E-4, + "p10" : 8.054159999999999E-4, + "p25" : 8.513749999999999E-4, + "p50" : 0.0017069999999999998, + "p75" : 0.0020589589999999995, + "p90" : 0.0022567919999999997, + "p95" : 0.0022672919999999997, + "p99" : 0.0022672919999999997, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.004245998999999999, + "max" : 0.0071693339999999986, + "p01" : 0.004245998999999999, + "p05" : 0.004245998999999999, + "p10" : 0.004357333, + "p25" : 0.004526084, + "p50" : 0.0053637089999999995, + "p75" : 0.006033416999999999, + "p90" : 0.006539374999999999, + "p95" : 0.0071693339999999986, + "p99" : 0.0071693339999999986, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "18.07ms", + "finishCalls" : 24, + "finishWall" : "63.74ms", + "finishCpu" : "18.35ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 13, + "addInputWall" : "615.21us", + "addInputCpu" : "605.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 114.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 2.67E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 5.999999999999999E-6, + "p25" : 8.0E-6, + "p50" : 6.699999999999999E-5, + "p75" : 1.2299999999999998E-4, + "p90" : 2.6599999999999996E-4, + "p95" : 2.67E-4, + "p99" : 2.67E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 6.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.499999999999999E-6, + "max" : 2.8804199999999996E-4, + "p01" : 6.499999999999999E-6, + "p05" : 6.499999999999999E-6, + "p10" : 6.749999999999999E-6, + "p25" : 8.958999999999998E-6, + "p50" : 6.712499999999999E-5, + "p75" : 1.2195899999999999E-4, + "p90" : 2.6683199999999994E-4, + "p95" : 2.8804199999999996E-4, + "p99" : 2.8804199999999996E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "411.34us", + "finishCpu" : "392.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 16, + "addInputWall" : "309.71us", + "addInputCpu" : "203.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.31kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 37, + "getOutputWall" : "346.71us", + "getOutputCpu" : "295.00us", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.9999999999999998E-5, + "max" : 2.5199999999999995E-4, + "p01" : 1.9999999999999998E-5, + "p05" : 1.9999999999999998E-5, + "p10" : 4.599999999999999E-5, + "p25" : 7.899999999999998E-5, + "p50" : 9.599999999999999E-5, + "p75" : 1.4799999999999997E-4, + "p90" : 1.79E-4, + "p95" : 2.5199999999999995E-4, + "p99" : 2.5199999999999995E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3373999999999997E-5, + "max" : 3.8970799999999995E-4, + "p01" : 2.3373999999999997E-5, + "p05" : 2.3373999999999997E-5, + "p10" : 4.858299999999999E-5, + "p25" : 8.116599999999999E-5, + "p50" : 9.979299999999998E-5, + "p75" : 1.5729099999999997E-4, + "p90" : 1.8929199999999998E-4, + "p95" : 3.8970799999999995E-4, + "p99" : 3.8970799999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "882.83us", + "finishCpu" : "858.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.3.1.0", + "taskInstanceId" : 8266578819470469019, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.3.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "527.82kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.033437Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 875683750 + } + }, + "noMoreSplits" : [ "1989", "1988" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.157771Z", + "firstStartTime" : "2026-03-30T07:59:03.867331Z", + "lastStartTime" : "2026-03-30T07:59:03.926135Z", + "lastEndTime" : "2026-03-30T07:59:04.031Z", + "endTime" : "2026-03-30T07:59:04.033415Z", + "elapsedTime" : "873.11ms", + "queuedTime" : "707.02ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "527.82kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "21.43ms", + "totalCpuTime" : "8.79ms", + "totalBlockedTime" : "1.47s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.85kB", + "internalNetworkInputPositions" : 14, + "processedInputDataSize" : "1.72kB", + "processedInputPositions" : 14, + "inputBlockedTime" : "904.88ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.867331Z", + "lastStartTime" : "2026-03-30T07:59:03.891302Z", + "lastEndTime" : "2026-03-30T07:59:04.024269Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.704842458E9, + "p01" : 6.60594541E8, + "p05" : 6.60594541E8, + "p10" : 6.60594541E8, + "p25" : 6.78026584E8, + "p50" : 6.81660708E8, + "p75" : 6.84560625E8, + "p90" : 6.84560625E8, + "p95" : 6.84560625E8, + "p99" : 6.84560625E8, + "min" : 6.60594541E8, + "max" : 6.84560625E8, + "avg" : 6.762106145E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.269547459E9, + "p01" : 8.17216458E8, + "p05" : 8.17216458E8, + "p10" : 8.17216458E8, + "p25" : 8.17371084E8, + "p50" : 8.1743375E8, + "p75" : 8.17526167E8, + "p90" : 8.17526167E8, + "p95" : 8.17526167E8, + "p99" : 8.17526167E8, + "min" : 8.17216458E8, + "max" : 8.17526167E8, + "avg" : 8.1738686475E8 + }, + "totalScheduledTime" : "1.04ms", + "totalCpuTime" : "812.00us", + "totalBlockedTime" : "551.42ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.36kB", + "internalNetworkInputPositions" : 9, + "processedInputDataSize" : "1.50kB", + "processedInputPositions" : 9, + "inputBlockedTime" : "551.42ms", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1989", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.36kB", + "internalNetworkInputPositions" : 9, + "inputDataSize" : "1.50kB", + "inputPositions" : 9, + "sumSquaredInputPositions" : 53.0, + "getOutputCalls" : 5, + "getOutputWall" : "415.33us", + "getOutputCpu" : "221.00us", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.1199999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0899999999999998E-4, + "p75" : 1.1199999999999998E-4, + "p90" : 1.1199999999999998E-4, + "p95" : 1.1199999999999998E-4, + "p99" : 1.1199999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 7.0, + "p90" : 7.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.12999208299999998, + "max" : 0.15154574999999998, + "p01" : 0.12999208299999998, + "p05" : 0.12999208299999998, + "p10" : 0.12999208299999998, + "p25" : 0.13318699999999997, + "p50" : 0.13669891699999998, + "p75" : 0.15154574999999998, + "p90" : 0.15154574999999998, + "p95" : 0.15154574999999998, + "p99" : 0.15154574999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.9974999999999994E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.1558299999999998E-4, + "p75" : 2.9974999999999994E-4, + "p90" : 2.9974999999999994E-4, + "p95" : 2.9974999999999994E-4, + "p99" : 2.9974999999999994E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "551.42ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 2312, + "averageBytesPerRequest" : 341, + "successfulRequestsCount" : 28, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 148.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 4.0, + "p75" : 146.0, + "p90" : 148.0, + "p95" : 148.0, + "p99" : 148.0, + "total" : 7 + } + } + }, { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "179.46us", + "addInputCpu" : "186.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.50kB", + "inputPositions" : 9, + "sumSquaredInputPositions" : 53.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 1.2299999999999998E-4, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 9.799999999999998E-5, + "p50" : 1.1699999999999998E-4, + "p75" : 1.2299999999999998E-4, + "p90" : 1.2299999999999998E-4, + "p95" : 1.2299999999999998E-4, + "p99" : 1.2299999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 7.0, + "p90" : 7.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4541999999999997E-5, + "max" : 1.2195899999999999E-4, + "p01" : 1.4541999999999997E-5, + "p05" : 1.4541999999999997E-5, + "p10" : 1.4541999999999997E-5, + "p25" : 9.612499999999999E-5, + "p50" : 1.1987499999999999E-4, + "p75" : 1.2195899999999999E-4, + "p90" : 1.2195899999999999E-4, + "p95" : 1.2195899999999999E-4, + "p99" : 1.2195899999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "173.04us", + "finishCpu" : "166.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.894627Z", + "lastStartTime" : "2026-03-30T07:59:03.904900Z", + "lastEndTime" : "2026-03-30T07:59:04.031177Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.772706333E9, + "p01" : 6.87883083E8, + "p05" : 6.87883083E8, + "p10" : 6.87883083E8, + "p25" : 6.91079667E8, + "p50" : 6.95589667E8, + "p75" : 6.98153916E8, + "p90" : 6.98153916E8, + "p95" : 6.98153916E8, + "p99" : 6.98153916E8, + "min" : 6.87883083E8, + "max" : 6.98153916E8, + "avg" : 6.9317658325E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.297135458E9, + "p01" : 8.24180917E8, + "p05" : 8.24180917E8, + "p10" : 8.24180917E8, + "p25" : 8.2421925E8, + "p50" : 8.24304166E8, + "p75" : 8.24431125E8, + "p90" : 8.24431125E8, + "p95" : 8.24431125E8, + "p99" : 8.24431125E8, + "min" : 8.24180917E8, + "max" : 8.24431125E8, + "avg" : 8.242838645E8 + }, + "totalScheduledTime" : "18.42ms", + "totalCpuTime" : "6.96ms", + "totalBlockedTime" : "496.90ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.50kB", + "processedInputPositions" : 9, + "inputBlockedTime" : "493.73ms", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "outputBlockedTime" : "3.15ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.50kB", + "inputPositions" : 9, + "sumSquaredInputPositions" : 27.0, + "getOutputCalls" : 7, + "getOutputWall" : "188.25us", + "getOutputCpu" : "87.00us", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 3.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.1999999999999996E-5, + "p50" : 2.7999999999999996E-5, + "p75" : 3.699999999999999E-5, + "p90" : 3.699999999999999E-5, + "p95" : 3.699999999999999E-5, + "p99" : 3.699999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.11796520799999999, + "max" : 0.12838975099999997, + "p01" : 0.11796520799999999, + "p05" : 0.11796520799999999, + "p10" : 0.11796520799999999, + "p25" : 0.12213608299999998, + "p50" : 0.12524366599999998, + "p75" : 0.12838975099999997, + "p90" : 0.12838975099999997, + "p95" : 0.12838975099999997, + "p99" : 0.12838975099999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 9.462499999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.7791999999999998E-5, + "p50" : 6.5835E-5, + "p75" : 9.462499999999998E-5, + "p90" : 9.462499999999998E-5, + "p95" : 9.462499999999998E-5, + "p99" : 9.462499999999998E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "493.73ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 7, + "addInputWall" : "179.75us", + "addInputCpu" : "92.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.50kB", + "inputPositions" : 9, + "sumSquaredInputPositions" : 27.0, + "getOutputCalls" : 14, + "getOutputWall" : "128.21us", + "getOutputCpu" : "84.00us", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.599999999999999E-5, + "max" : 2.5199999999999995E-4, + "p01" : 4.599999999999999E-5, + "p05" : 4.599999999999999E-5, + "p10" : 4.599999999999999E-5, + "p25" : 7.5E-5, + "p50" : 8.999999999999999E-5, + "p75" : 2.5199999999999995E-4, + "p90" : 2.5199999999999995E-4, + "p95" : 2.5199999999999995E-4, + "p99" : 2.5199999999999995E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.858299999999999E-5, + "max" : 3.8970799999999995E-4, + "p01" : 4.858299999999999E-5, + "p05" : 4.858299999999999E-5, + "p10" : 4.858299999999999E-5, + "p25" : 7.633299999999999E-5, + "p50" : 8.487499999999999E-5, + "p75" : 3.8970799999999995E-4, + "p90" : 3.8970799999999995E-4, + "p95" : 3.8970799999999995E-4, + "p99" : 3.8970799999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "291.54us", + "finishCpu" : "287.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 7, + "addInputWall" : "104.46us", + "addInputCpu" : "102.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.50kB", + "inputPositions" : 9, + "sumSquaredInputPositions" : 27.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1.50kB", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 7.639999999999999E-4, + "max" : 0.0038209999999999993, + "p01" : 7.639999999999999E-4, + "p05" : 7.639999999999999E-4, + "p10" : 7.639999999999999E-4, + "p25" : 8.329999999999999E-4, + "p50" : 8.589999999999998E-4, + "p75" : 0.0038209999999999993, + "p90" : 0.0038209999999999993, + "p95" : 0.0038209999999999993, + "p99" : 0.0038209999999999993, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 6.447909999999999E-4, + "max" : 8.513749999999999E-4, + "p01" : 6.447909999999999E-4, + "p05" : 6.447909999999999E-4, + "p10" : 6.447909999999999E-4, + "p25" : 8.054159999999999E-4, + "p50" : 8.504579999999999E-4, + "p75" : 8.513749999999999E-4, + "p90" : 8.513749999999999E-4, + "p95" : 8.513749999999999E-4, + "p99" : 8.513749999999999E-4, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.004245998999999999, + "max" : 0.00453725, + "p01" : 0.004245998999999999, + "p05" : 0.004245998999999999, + "p10" : 0.004245998999999999, + "p25" : 0.004357333, + "p50" : 0.004364333, + "p75" : 0.00453725, + "p90" : 0.00453725, + "p95" : 0.00453725, + "p99" : 0.00453725, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.15ms", + "finishCalls" : 8, + "finishWall" : "17.40ms", + "finishCpu" : "6.18ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.908055Z", + "lastStartTime" : "2026-03-30T07:59:03.926134Z", + "lastEndTime" : "2026-03-30T07:59:04.030699Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.839879042E9, + "p01" : 7.0130725E8, + "p05" : 7.0130725E8, + "p10" : 7.0130725E8, + "p25" : 7.04755083E8, + "p50" : 7.14439584E8, + "p75" : 7.19377125E8, + "p90" : 7.19377125E8, + "p95" : 7.19377125E8, + "p99" : 7.19377125E8, + "min" : 7.0130725E8, + "max" : 7.19377125E8, + "avg" : 7.099697605E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.273836E9, + "p01" : 8.02204E8, + "p05" : 8.02204E8, + "p10" : 8.02204E8, + "p25" : 8.2384125E8, + "p50" : 8.23845E8, + "p75" : 8.2394575E8, + "p90" : 8.2394575E8, + "p95" : 8.2394575E8, + "p99" : 8.2394575E8, + "min" : 8.02204E8, + "max" : 8.2394575E8, + "avg" : 8.18459E8 + }, + "totalScheduledTime" : "1.96ms", + "totalCpuTime" : "1.02ms", + "totalBlockedTime" : "419.15ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "510B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "230B", + "processedInputPositions" : 5, + "inputBlockedTime" : "353.45ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1988", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "510B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "230B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 11.0, + "getOutputCalls" : 3, + "getOutputWall" : "267.21us", + "getOutputCpu" : "204.00us", + "outputDataSize" : "230B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.099999999999999E-5, + "p50" : 5.599999999999999E-5, + "p75" : 9.699999999999999E-5, + "p90" : 9.699999999999999E-5, + "p95" : 9.699999999999999E-5, + "p99" : 9.699999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08021416599999999, + "max" : 0.09720054299999999, + "p01" : 0.08021416599999999, + "p05" : 0.08021416599999999, + "p10" : 0.08021416599999999, + "p25" : 0.08386887599999998, + "p50" : 0.09216825099999999, + "p75" : 0.09720054299999999, + "p90" : 0.09720054299999999, + "p95" : 0.09720054299999999, + "p99" : 0.09720054299999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.5362499999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.445799999999999E-5, + "p50" : 5.9124999999999994E-5, + "p75" : 1.5362499999999998E-4, + "p90" : 1.5362499999999998E-4, + "p95" : 1.5362499999999998E-4, + "p99" : 1.5362499999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "353.45ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 288, + "averageBytesPerRequest" : 84, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 91.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 79.0, + "p75" : 85.0, + "p90" : 91.0, + "p95" : 91.0, + "p99" : 91.0, + "total" : 6 + } + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "11.33us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "230B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 11.0, + "getOutputCalls" : 11, + "getOutputWall" : "846.67us", + "getOutputCpu" : "412.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 2.2099999999999998E-4, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 2.5999999999999995E-5, + "p25" : 1.29E-4, + "p50" : 1.4299999999999998E-4, + "p75" : 2.2099999999999998E-4, + "p90" : 2.2099999999999998E-4, + "p95" : 2.2099999999999998E-4, + "p99" : 2.2099999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.038588873999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.026043624999999997, + "p50" : 0.031049749999999994, + "p75" : 0.038588873999999995, + "p90" : 0.038588873999999995, + "p95" : 0.038588873999999995, + "p99" : 0.038588873999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.8541999999999995E-5, + "max" : 3.8799999999999994E-4, + "p01" : 2.8541999999999995E-5, + "p05" : 2.8541999999999995E-5, + "p10" : 2.8541999999999995E-5, + "p25" : 2.6516599999999995E-4, + "p50" : 2.7458399999999997E-4, + "p75" : 3.8799999999999994E-4, + "p90" : 3.8799999999999994E-4, + "p95" : 3.8799999999999994E-4, + "p99" : 3.8799999999999994E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "95.68ms", + "finishCalls" : 10, + "finishWall" : "98.29us", + "finishCpu" : "89.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 5, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 27, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.166999999999998E-6, + "max" : 1.5457999999999997E-5, + "p01" : 8.166999999999998E-6, + "p05" : 8.166999999999998E-6, + "p10" : 8.166999999999998E-6, + "p25" : 1.0582999999999998E-5, + "p50" : 1.2540999999999999E-5, + "p75" : 1.5457999999999997E-5, + "p90" : 1.5457999999999997E-5, + "p95" : 1.5457999999999997E-5, + "p99" : 1.5457999999999997E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.6E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.1999999999999999E-5, + "p75" : 1.6E-5, + "p90" : 1.6E-5, + "p95" : 1.6E-5, + "p99" : 1.6E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "46.75us", + "finishCpu" : "48.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.3.2.0", + "taskInstanceId" : -204540692622168107, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.3.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "604B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "527.82kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.038088Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 3, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 4.8160552978515625E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 879877416 + } + }, + "noMoreSplits" : [ "1989", "1988" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.158051Z", + "firstStartTime" : "2026-03-30T07:59:03.218054Z", + "lastStartTime" : "2026-03-30T07:59:03.927065Z", + "lastEndTime" : "2026-03-30T07:59:04.035Z", + "endTime" : "2026-03-30T07:59:04.038163Z", + "elapsedTime" : "878.01ms", + "queuedTime" : "57.90ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "527.82kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "27.03ms", + "totalCpuTime" : "8.83ms", + "totalBlockedTime" : "2.11s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.24kB", + "internalNetworkInputPositions" : 11, + "processedInputDataSize" : "1.26kB", + "processedInputPositions" : 11, + "inputBlockedTime" : "1.55s", + "outputDataSize" : "604B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.218054Z", + "lastStartTime" : "2026-03-30T07:59:03.893659Z", + "lastEndTime" : "2026-03-30T07:59:04.024780Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.048433875E9, + "p01" : 7730542.0, + "p05" : 7730542.0, + "p10" : 7730542.0, + "p25" : 6.77515916E8, + "p50" : 6.79861458E8, + "p75" : 6.83325959E8, + "p90" : 6.83325959E8, + "p95" : 6.83325959E8, + "p99" : 6.83325959E8, + "min" : 7730542.0, + "max" : 6.83325959E8, + "avg" : 5.1210846875E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.257354166E9, + "p01" : 8.14240833E8, + "p05" : 8.14240833E8, + "p10" : 8.14240833E8, + "p25" : 8.14280583E8, + "p50" : 8.14383125E8, + "p75" : 8.14449625E8, + "p90" : 8.14449625E8, + "p95" : 8.14449625E8, + "p99" : 8.14449625E8, + "min" : 8.14240833E8, + "max" : 8.14449625E8, + "avg" : 8.143385415E8 + }, + "totalScheduledTime" : "627.42us", + "totalCpuTime" : "603.00us", + "totalBlockedTime" : "1.19s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.74kB", + "internalNetworkInputPositions" : 6, + "processedInputDataSize" : "1.04kB", + "processedInputPositions" : 6, + "inputBlockedTime" : "1.19s", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1989", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.74kB", + "internalNetworkInputPositions" : 6, + "inputDataSize" : "1.04kB", + "inputPositions" : 6, + "sumSquaredInputPositions" : 36.0, + "getOutputCalls" : 4, + "getOutputWall" : "100.33us", + "getOutputCpu" : "97.00us", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.699999999999999E-5, + "p90" : 9.699999999999999E-5, + "p95" : 9.699999999999999E-5, + "p99" : 9.699999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 6.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 6.0, + "p90" : 6.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.128471334, + "max" : 0.7998607079999999, + "p01" : 0.128471334, + "p05" : 0.128471334, + "p10" : 0.128471334, + "p25" : 0.13144637599999998, + "p50" : 0.13204687499999998, + "p75" : 0.7998607079999999, + "p90" : 0.7998607079999999, + "p95" : 0.7998607079999999, + "p99" : 0.7998607079999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.0033399999999999E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0033399999999999E-4, + "p90" : 1.0033399999999999E-4, + "p95" : 1.0033399999999999E-4, + "p99" : 1.0033399999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.19s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 2016, + "averageBytesPerRequest" : 293, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 796.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 794.0, + "p75" : 796.0, + "p90" : 796.0, + "p95" : 796.0, + "p99" : 796.0, + "total" : 6 + } + } + }, { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "173.21us", + "addInputCpu" : "175.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.04kB", + "inputPositions" : 6, + "sumSquaredInputPositions" : 36.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 2.67E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 8.0E-6, + "p50" : 1.8999999999999998E-5, + "p75" : 2.67E-4, + "p90" : 2.67E-4, + "p95" : 2.67E-4, + "p99" : 2.67E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 6.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 6.0, + "p90" : 6.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.791999999999999E-6, + "max" : 2.6683199999999994E-4, + "p01" : 6.791999999999999E-6, + "p05" : 6.791999999999999E-6, + "p10" : 6.791999999999999E-6, + "p25" : 8.958999999999998E-6, + "p50" : 2.3041999999999997E-5, + "p75" : 2.6683199999999994E-4, + "p90" : 2.6683199999999994E-4, + "p95" : 2.6683199999999994E-4, + "p99" : 2.6683199999999994E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "132.42us", + "finishCpu" : "126.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.896403Z", + "lastStartTime" : "2026-03-30T07:59:03.906283Z", + "lastEndTime" : "2026-03-30T07:59:04.035968Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.763315708E9, + "p01" : 6.86069375E8, + "p05" : 6.86069375E8, + "p10" : 6.86069375E8, + "p25" : 6.88193417E8, + "p50" : 6.93104666E8, + "p75" : 6.9594825E8, + "p90" : 6.9594825E8, + "p95" : 6.9594825E8, + "p99" : 6.9594825E8, + "min" : 6.86069375E8, + "max" : 6.9594825E8, + "avg" : 6.90828927E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.29932175E9, + "p01" : 8.23987417E8, + "p05" : 8.23987417E8, + "p10" : 8.23987417E8, + "p25" : 8.2448825E8, + "p50" : 8.25213166E8, + "p75" : 8.25632917E8, + "p90" : 8.25632917E8, + "p95" : 8.25632917E8, + "p99" : 8.25632917E8, + "min" : 8.23987417E8, + "max" : 8.25632917E8, + "avg" : 8.248304375E8 + }, + "totalScheduledTime" : "24.84ms", + "totalCpuTime" : "7.00ms", + "totalBlockedTime" : "496.59ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.04kB", + "processedInputPositions" : 6, + "inputBlockedTime" : "489.96ms", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "outputBlockedTime" : "6.63ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.04kB", + "inputPositions" : 6, + "sumSquaredInputPositions" : 14.0, + "getOutputCalls" : 5, + "getOutputWall" : "73.33us", + "getOutputCpu" : "63.00us", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.5999999999999995E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.2999999999999998E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 2.5999999999999995E-5, + "p90" : 2.5999999999999995E-5, + "p95" : 2.5999999999999995E-5, + "p99" : 2.5999999999999995E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.11726629099999998, + "max" : 0.12655408299999998, + "p01" : 0.11726629099999998, + "p05" : 0.11726629099999998, + "p10" : 0.11726629099999998, + "p25" : 0.11998487499999998, + "p50" : 0.126153209, + "p75" : 0.12655408299999998, + "p90" : 0.12655408299999998, + "p95" : 0.12655408299999998, + "p99" : 0.12655408299999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 3.2582999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.3916999999999997E-5, + "p50" : 2.6833999999999998E-5, + "p75" : 3.2582999999999996E-5, + "p90" : 3.2582999999999996E-5, + "p95" : 3.2582999999999996E-5, + "p99" : 3.2582999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "489.96ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "75.54us", + "addInputCpu" : "58.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.04kB", + "inputPositions" : 6, + "sumSquaredInputPositions" : 14.0, + "getOutputCalls" : 12, + "getOutputWall" : "69.67us", + "getOutputCpu" : "72.00us", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.9999999999999998E-5, + "max" : 1.4199999999999998E-4, + "p01" : 1.9999999999999998E-5, + "p05" : 1.9999999999999998E-5, + "p10" : 1.9999999999999998E-5, + "p25" : 7.899999999999998E-5, + "p50" : 1.4099999999999998E-4, + "p75" : 1.4199999999999998E-4, + "p90" : 1.4199999999999998E-4, + "p95" : 1.4199999999999998E-4, + "p99" : 1.4199999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3373999999999997E-5, + "max" : 1.5729099999999997E-4, + "p01" : 2.3373999999999997E-5, + "p05" : 2.3373999999999997E-5, + "p10" : 2.3373999999999997E-5, + "p25" : 8.116599999999999E-5, + "p50" : 1.43875E-4, + "p75" : 1.5729099999999997E-4, + "p90" : 1.5729099999999997E-4, + "p95" : 1.5729099999999997E-4, + "p99" : 1.5729099999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "260.50us", + "finishCpu" : "252.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "128.21us", + "addInputCpu" : "87.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.04kB", + "inputPositions" : 6, + "sumSquaredInputPositions" : 14.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1.04kB", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.759999999999999E-4, + "max" : 0.0046619999999999995, + "p01" : 4.759999999999999E-4, + "p05" : 4.759999999999999E-4, + "p10" : 4.759999999999999E-4, + "p25" : 6.189999999999999E-4, + "p50" : 6.999999999999999E-4, + "p75" : 0.0046619999999999995, + "p90" : 0.0046619999999999995, + "p95" : 0.0046619999999999995, + "p99" : 0.0046619999999999995, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0013539579999999997, + "max" : 0.0018977079999999997, + "p01" : 0.0013539579999999997, + "p05" : 0.0013539579999999997, + "p10" : 0.0013539579999999997, + "p25" : 0.0016265419999999997, + "p50" : 0.0017484169999999997, + "p75" : 0.0018977079999999997, + "p90" : 0.0018977079999999997, + "p95" : 0.0018977079999999997, + "p99" : 0.0018977079999999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.004526084, + "max" : 0.0071693339999999986, + "p01" : 0.004526084, + "p05" : 0.004526084, + "p10" : 0.004526084, + "p25" : 0.006033416999999999, + "p50" : 0.006539374999999999, + "p75" : 0.0071693339999999986, + "p90" : 0.0071693339999999986, + "p95" : 0.0071693339999999986, + "p99" : 0.0071693339999999986, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "6.63ms", + "finishCalls" : 8, + "finishWall" : "24.14ms", + "finishCpu" : "6.37ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.909456Z", + "lastStartTime" : "2026-03-30T07:59:03.927064Z", + "lastEndTime" : "2026-03-30T07:59:04.033763Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.83291175E9, + "p01" : 6.99120041E8, + "p05" : 6.99120041E8, + "p10" : 6.99120041E8, + "p25" : 7.03887125E8, + "p50" : 7.13177459E8, + "p75" : 7.16727125E8, + "p90" : 7.16727125E8, + "p95" : 7.16727125E8, + "p99" : 7.16727125E8, + "min" : 6.99120041E8, + "max" : 7.16727125E8, + "avg" : 7.082279375E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.267358E9, + "p01" : 7.98050167E8, + "p05" : 7.98050167E8, + "p10" : 7.98050167E8, + "p25" : 8.22830375E8, + "p50" : 8.23051333E8, + "p75" : 8.23426125E8, + "p90" : 8.23426125E8, + "p95" : 8.23426125E8, + "p99" : 8.23426125E8, + "min" : 7.98050167E8, + "max" : 8.23426125E8, + "avg" : 8.168395E8 + }, + "totalScheduledTime" : "1.56ms", + "totalCpuTime" : "1.23ms", + "totalBlockedTime" : "425.31ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "510B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "230B", + "processedInputPositions" : 5, + "inputBlockedTime" : "354.78ms", + "outputDataSize" : "604B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1988", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "510B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "230B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 3, + "getOutputWall" : "178.88us", + "getOutputCpu" : "164.00us", + "outputDataSize" : "230B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.5E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.199999999999999E-5, + "p50" : 4.699999999999999E-5, + "p75" : 7.5E-5, + "p90" : 7.5E-5, + "p95" : 7.5E-5, + "p99" : 7.5E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08116320899999999, + "max" : 0.09693979199999998, + "p01" : 0.08116320899999999, + "p05" : 0.08116320899999999, + "p10" : 0.08116320899999999, + "p25" : 0.08355504199999998, + "p50" : 0.09312408299999998, + "p75" : 0.09693979199999998, + "p90" : 0.09693979199999998, + "p95" : 0.09693979199999998, + "p99" : 0.09693979199999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.741599999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.3166999999999995E-5, + "p50" : 4.829199999999999E-5, + "p75" : 8.741599999999999E-5, + "p90" : 8.741599999999999E-5, + "p95" : 8.741599999999999E-5, + "p99" : 8.741599999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "354.78ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 240, + "averageBytesPerRequest" : 84, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 90.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 77.0, + "p75" : 88.0, + "p90" : 90.0, + "p95" : 90.0, + "p99" : 90.0, + "total" : 6 + } + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "6.92us", + "addInputCpu" : "9.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "230B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 13, + "getOutputWall" : "389.17us", + "getOutputCpu" : "362.00us", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.7999999999999994E-5, + "max" : 1.8599999999999997E-4, + "p01" : 5.7999999999999994E-5, + "p05" : 5.7999999999999994E-5, + "p10" : 5.7999999999999994E-5, + "p25" : 8.999999999999999E-5, + "p50" : 1.1899999999999998E-4, + "p75" : 1.8599999999999997E-4, + "p90" : 1.8599999999999997E-4, + "p95" : 1.8599999999999997E-4, + "p99" : 1.8599999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.041660332999999994, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.027294166999999998, + "p50" : 0.030589292999999997, + "p75" : 0.041660332999999994, + "p90" : 0.041660332999999994, + "p95" : 0.041660332999999994, + "p99" : 0.041660332999999994, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.149999999999999E-5, + "max" : 1.8933199999999998E-4, + "p01" : 8.149999999999999E-5, + "p05" : 8.149999999999999E-5, + "p10" : 8.149999999999999E-5, + "p25" : 9.445899999999998E-5, + "p50" : 1.2108199999999998E-4, + "p75" : 1.8933199999999998E-4, + "p90" : 1.8933199999999998E-4, + "p95" : 1.8933199999999998E-4, + "p99" : 1.8933199999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "99.54ms", + "finishCalls" : 12, + "finishWall" : "90.29us", + "finishCpu" : "82.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2, 3, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 3, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 18, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "33.29us", + "addInputCpu" : "35.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "604B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "604B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.291999999999998E-6, + "max" : 4.607919999999999E-4, + "p01" : 9.291999999999998E-6, + "p05" : 9.291999999999998E-6, + "p10" : 9.291999999999998E-6, + "p25" : 2.5707999999999995E-5, + "p50" : 1.4575E-4, + "p75" : 4.607919999999999E-4, + "p90" : 4.607919999999999E-4, + "p95" : 4.607919999999999E-4, + "p99" : 4.607919999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 1.7599999999999997E-4, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 2.5999999999999995E-5, + "p50" : 1.4699999999999997E-4, + "p75" : 1.7599999999999997E-4, + "p90" : 1.7599999999999997E-4, + "p95" : 1.7599999999999997E-4, + "p99" : 1.7599999999999997E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "608.25us", + "finishCpu" : "324.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1616 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.3.0.0", + "taskInstanceId" : -1004159877085488484, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.3.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "397B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "533.09kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.038081Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 3.337860107421875E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 880219084 + } + }, + "noMoreSplits" : [ "1989", "1988" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.156803Z", + "firstStartTime" : "2026-03-30T07:59:03.218635Z", + "lastStartTime" : "2026-03-30T07:59:03.233647Z", + "lastEndTime" : "2026-03-30T07:59:04.036Z", + "endTime" : "2026-03-30T07:59:04.038363Z", + "elapsedTime" : "878.83ms", + "queuedTime" : "59.10ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "533.09kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "26.26ms", + "totalCpuTime" : "9.13ms", + "totalBlockedTime" : "9.57s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.12kB", + "internalNetworkInputPositions" : 11, + "processedInputDataSize" : "1.04kB", + "processedInputPositions" : 11, + "inputBlockedTime" : "6.28s", + "outputDataSize" : "397B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.218635Z", + "lastStartTime" : "2026-03-30T07:59:03.225926Z", + "lastEndTime" : "2026-03-30T07:59:04.025518Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 5.7195833E7, + "p01" : 1.0639667E7, + "p05" : 1.0639667E7, + "p10" : 1.0639667E7, + "p25" : 1.09405E7, + "p50" : 1.7700583E7, + "p75" : 1.7915083E7, + "p90" : 1.7915083E7, + "p95" : 1.7915083E7, + "p99" : 1.7915083E7, + "min" : 1.0639667E7, + "max" : 1.7915083E7, + "avg" : 1.429895825E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.268533167E9, + "p01" : 8.16951958E8, + "p05" : 8.16951958E8, + "p10" : 8.16951958E8, + "p25" : 8.17006541E8, + "p50" : 8.17066834E8, + "p75" : 8.17507834E8, + "p90" : 8.17507834E8, + "p95" : 8.17507834E8, + "p99" : 8.17507834E8, + "min" : 8.16951958E8, + "max" : 8.17507834E8, + "avg" : 8.1713329175E8 + }, + "totalScheduledTime" : "779.83us", + "totalCpuTime" : "736.00us", + "totalBlockedTime" : "3.19s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.48kB", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "793B", + "processedInputPositions" : 5, + "inputBlockedTime" : "3.19s", + "outputDataSize" : "793B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1989", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "1.48kB", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "793B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 4, + "getOutputWall" : "171.42us", + "getOutputCpu" : "167.00us", + "outputDataSize" : "793B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.6699999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.6699999999999997E-4, + "p90" : 1.6699999999999997E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7940042929999999, + "max" : 0.8006152079999999, + "p01" : 0.7940042929999999, + "p05" : 0.7940042929999999, + "p10" : 0.7940042929999999, + "p25" : 0.7948057499999999, + "p50" : 0.8002474579999999, + "p75" : 0.8006152079999999, + "p90" : 0.8006152079999999, + "p95" : 0.8006152079999999, + "p99" : 0.8006152079999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.7141599999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.7141599999999997E-4, + "p90" : 1.7141599999999997E-4, + "p95" : 1.7141599999999997E-4, + "p99" : 1.7141599999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.19s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1752, + "averageBytesPerRequest" : 248, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 796.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 3.0, + "p50" : 793.0, + "p75" : 795.0, + "p90" : 796.0, + "p95" : 796.0, + "p99" : 796.0, + "total" : 6 + } + } + }, { + "stageId" : 3, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "262.54us", + "addInputCpu" : "244.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "793B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "793B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 2.6599999999999996E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 6.699999999999999E-5, + "p75" : 2.6599999999999996E-4, + "p90" : 2.6599999999999996E-4, + "p95" : 2.6599999999999996E-4, + "p99" : 2.6599999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.499999999999999E-6, + "max" : 2.8804199999999996E-4, + "p01" : 6.499999999999999E-6, + "p05" : 6.499999999999999E-6, + "p10" : 6.499999999999999E-6, + "p25" : 6.749999999999999E-6, + "p50" : 6.712499999999999E-5, + "p75" : 2.8804199999999996E-4, + "p90" : 2.8804199999999996E-4, + "p95" : 2.8804199999999996E-4, + "p99" : 2.8804199999999996E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "105.88us", + "finishCpu" : "100.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.226124Z", + "lastStartTime" : "2026-03-30T07:59:03.230382Z", + "lastEndTime" : "2026-03-30T07:59:04.036483Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 8.2258833E7, + "p01" : 1.8111625E7, + "p05" : 1.8111625E7, + "p10" : 1.8111625E7, + "p25" : 2.0332167E7, + "p50" : 2.1446916E7, + "p75" : 2.2368125E7, + "p90" : 2.2368125E7, + "p95" : 2.2368125E7, + "p99" : 2.2368125E7, + "min" : 1.8111625E7, + "max" : 2.2368125E7, + "avg" : 2.056470825E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.308152374E9, + "p01" : 8.26517583E8, + "p05" : 8.26517583E8, + "p10" : 8.26517583E8, + "p25" : 8.26558041E8, + "p50" : 8.26615834E8, + "p75" : 8.28460916E8, + "p90" : 8.28460916E8, + "p95" : 8.28460916E8, + "p99" : 8.28460916E8, + "min" : 8.26517583E8, + "max" : 8.28460916E8, + "avg" : 8.270380935E8 + }, + "totalScheduledTime" : "22.94ms", + "totalCpuTime" : "6.53ms", + "totalBlockedTime" : "3.19s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "793B", + "processedInputPositions" : 5, + "inputBlockedTime" : "3.18s", + "outputDataSize" : "793B", + "outputPositions" : 5, + "outputBlockedTime" : "8.29ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2566", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "793B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 4, + "getOutputWall" : "38.25us", + "getOutputCpu" : "34.00us", + "outputDataSize" : "793B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4999999999999997E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 1.0999999999999998E-5, + "p75" : 1.4999999999999997E-5, + "p90" : 1.4999999999999997E-5, + "p95" : 1.4999999999999997E-5, + "p99" : 1.4999999999999997E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7919344169999999, + "max" : 0.7975223749999999, + "p01" : 0.7919344169999999, + "p05" : 0.7919344169999999, + "p10" : 0.7919344169999999, + "p25" : 0.7936654989999998, + "p50" : 0.7971340839999999, + "p75" : 0.7975223749999999, + "p90" : 0.7975223749999999, + "p95" : 0.7975223749999999, + "p99" : 0.7975223749999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.6248999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 9.083E-6, + "p50" : 1.2916999999999998E-5, + "p75" : 1.6248999999999996E-5, + "p90" : 1.6248999999999996E-5, + "p95" : 1.6248999999999996E-5, + "p99" : 1.6248999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.18s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "54.42us", + "addInputCpu" : "53.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "793B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 11, + "getOutputWall" : "148.83us", + "getOutputCpu" : "139.00us", + "outputDataSize" : "793B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.799999999999998E-5, + "max" : 1.79E-4, + "p01" : 8.799999999999998E-5, + "p05" : 8.799999999999998E-5, + "p10" : 8.799999999999998E-5, + "p25" : 9.599999999999999E-5, + "p50" : 1.4799999999999997E-4, + "p75" : 1.79E-4, + "p90" : 1.79E-4, + "p95" : 1.79E-4, + "p99" : 1.79E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 9.129099999999999E-5, + "max" : 1.8929199999999998E-4, + "p01" : 9.129099999999999E-5, + "p05" : 9.129099999999999E-5, + "p10" : 9.129099999999999E-5, + "p25" : 9.979299999999998E-5, + "p50" : 1.5366599999999998E-4, + "p75" : 1.8929199999999998E-4, + "p90" : 1.8929199999999998E-4, + "p95" : 1.8929199999999998E-4, + "p99" : 1.8929199999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "330.79us", + "finishCpu" : "319.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 3, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "59.17us", + "addInputCpu" : "59.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "793B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "793B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.7699999999999994E-4, + "max" : 0.0036629999999999996, + "p01" : 4.7699999999999994E-4, + "p05" : 4.7699999999999994E-4, + "p10" : 4.7699999999999994E-4, + "p25" : 6.559999999999999E-4, + "p50" : 0.0010669999999999998, + "p75" : 0.0036629999999999996, + "p90" : 0.0036629999999999996, + "p95" : 0.0036629999999999996, + "p99" : 0.0036629999999999996, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0017069999999999998, + "max" : 0.0022672919999999997, + "p01" : 0.0017069999999999998, + "p05" : 0.0017069999999999998, + "p10" : 0.0017069999999999998, + "p25" : 0.0020589589999999995, + "p50" : 0.0022567919999999997, + "p75" : 0.0022672919999999997, + "p90" : 0.0022672919999999997, + "p95" : 0.0022672919999999997, + "p99" : 0.0022672919999999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.005279290999999999, + "max" : 0.005929416999999999, + "p01" : 0.005279290999999999, + "p05" : 0.005279290999999999, + "p10" : 0.005279290999999999, + "p25" : 0.0053637089999999995, + "p50" : 0.005684291999999999, + "p75" : 0.005929416999999999, + "p90" : 0.005929416999999999, + "p95" : 0.005929416999999999, + "p99" : 0.005929416999999999, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "8.29ms", + "finishCalls" : 8, + "finishWall" : "22.20ms", + "finishCpu" : "5.80ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.231986Z", + "lastStartTime" : "2026-03-30T07:59:03.233646Z", + "lastEndTime" : "2026-03-30T07:59:04.033773Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 9.8375208E7, + "p01" : 2.3971458E7, + "p05" : 2.3971458E7, + "p10" : 2.3971458E7, + "p25" : 2.4167583E7, + "p50" : 2.4605E7, + "p75" : 2.5631167E7, + "p90" : 2.5631167E7, + "p95" : 2.5631167E7, + "p99" : 2.5631167E7, + "min" : 2.3971458E7, + "max" : 2.5631167E7, + "avg" : 2.4593802E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.301673251E9, + "p01" : 8.24917459E8, + "p05" : 8.24917459E8, + "p10" : 8.24917459E8, + "p25" : 8.25395167E8, + "p50" : 8.2560975E8, + "p75" : 8.25750875E8, + "p90" : 8.25750875E8, + "p95" : 8.25750875E8, + "p99" : 8.25750875E8, + "min" : 8.24917459E8, + "max" : 8.25750875E8, + "avg" : 8.2541831275E8 + }, + "totalScheduledTime" : "2.54ms", + "totalCpuTime" : "1.87ms", + "totalBlockedTime" : "3.19s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "652B", + "internalNetworkInputPositions" : 6, + "processedInputDataSize" : "276B", + "processedInputPositions" : 6, + "inputBlockedTime" : "3.09s", + "outputDataSize" : "397B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1988", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "652B", + "internalNetworkInputPositions" : 6, + "inputDataSize" : "276B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 10.0, + "getOutputCalls" : 4, + "getOutputWall" : "952.13us", + "getOutputCpu" : "372.00us", + "outputDataSize" : "276B", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.199999999999999E-5, + "max" : 1.2299999999999998E-4, + "p01" : 5.199999999999999E-5, + "p05" : 5.199999999999999E-5, + "p10" : 5.199999999999999E-5, + "p25" : 7.799999999999999E-5, + "p50" : 1.1899999999999998E-4, + "p75" : 1.2299999999999998E-4, + "p90" : 1.2299999999999998E-4, + "p95" : 1.2299999999999998E-4, + "p99" : 1.2299999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7726227499999999, + "max" : 0.7744502089999998, + "p01" : 0.7726227499999999, + "p05" : 0.7726227499999999, + "p10" : 0.7726227499999999, + "p25" : 0.7730822499999999, + "p50" : 0.7742327499999999, + "p75" : 0.7744502089999998, + "p90" : 0.7744502089999998, + "p95" : 0.7744502089999998, + "p99" : 0.7744502089999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.4124999999999994E-5, + "max" : 5.928749999999999E-4, + "p01" : 5.4124999999999994E-5, + "p05" : 5.4124999999999994E-5, + "p10" : 5.4124999999999994E-5, + "p25" : 1.0154199999999998E-4, + "p50" : 2.0358299999999996E-4, + "p75" : 5.928749999999999E-4, + "p90" : 5.928749999999999E-4, + "p95" : 5.928749999999999E-4, + "p99" : 5.928749999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.09s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 240, + "averageBytesPerRequest" : 89, + "successfulRequestsCount" : 28, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 767.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 3.0, + "p75" : 762.0, + "p90" : 767.0, + "p95" : 767.0, + "p99" : 767.0, + "total" : 7 + } + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1699", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "33.29us", + "addInputCpu" : "27.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "276B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 10.0, + "getOutputCalls" : 14, + "getOutputWall" : "641.50us", + "getOutputCpu" : "572.00us", + "outputDataSize" : "397B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.2199999999999998E-4, + "max" : 2.9699999999999996E-4, + "p01" : 1.2199999999999998E-4, + "p05" : 1.2199999999999998E-4, + "p10" : 1.2199999999999998E-4, + "p25" : 1.6599999999999997E-4, + "p50" : 1.7099999999999998E-4, + "p75" : 2.9699999999999996E-4, + "p90" : 2.9699999999999996E-4, + "p95" : 2.9699999999999996E-4, + "p99" : 2.9699999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.026454832999999997, + "max" : 0.041987791, + "p01" : 0.026454832999999997, + "p05" : 0.026454832999999997, + "p10" : 0.026454832999999997, + "p25" : 0.029424123999999996, + "p50" : 0.03434008399999999, + "p75" : 0.041987791, + "p90" : 0.041987791, + "p95" : 0.041987791, + "p99" : 0.041987791, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2233399999999998E-4, + "max" : 3.0754199999999995E-4, + "p01" : 1.2233399999999998E-4, + "p05" : 1.2233399999999998E-4, + "p10" : 1.2233399999999998E-4, + "p25" : 1.8679199999999997E-4, + "p50" : 2.2745899999999998E-4, + "p75" : 3.0754199999999995E-4, + "p90" : 3.0754199999999995E-4, + "p95" : 3.0754199999999995E-4, + "p99" : 3.0754199999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "132.21ms", + "finishCalls" : 14, + "finishWall" : "169.33us", + "finishCpu" : "157.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 4, 2, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 2, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 20, + "rleProbes" : 0, + "totalProbes" : 4 + } + }, { + "stageId" : 3, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1699", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "56.46us", + "addInputCpu" : "60.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "397B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 2.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "397B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.957999999999999E-6, + "max" : 2.9033299999999993E-4, + "p01" : 9.957999999999999E-6, + "p05" : 9.957999999999999E-6, + "p10" : 9.957999999999999E-6, + "p25" : 1.2999999999999998E-5, + "p50" : 1.2733299999999998E-4, + "p75" : 2.9033299999999993E-4, + "p90" : 2.9033299999999993E-4, + "p95" : 2.9033299999999993E-4, + "p99" : 2.9033299999999993E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 1.0999999999999998E-5, + "max" : 2.8799999999999995E-4, + "p01" : 1.0999999999999998E-5, + "p05" : 1.0999999999999998E-5, + "p10" : 1.0999999999999998E-5, + "p25" : 1.3999999999999998E-5, + "p50" : 1.28E-4, + "p75" : 2.8799999999999995E-4, + "p90" : 2.8799999999999995E-4, + "p95" : 2.8799999999999995E-4, + "p99" : 2.8799999999999995E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "384.17us", + "finishCpu" : "381.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1120 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.4", "20260330_075902_00004_iggau.7" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.12", + "state" : "FINISHED", + "plan" : { + "id" : "12", + "root" : { + "@type" : "aggregation", + "id" : "2723", + "source" : { + "@type" : "project", + "id" : "637", + "source" : { + "@type" : "join", + "id" : "1721", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1994", + "sourceFragmentIds" : [ "13" ], + "outputs" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "bigint", + "name" : "suppkey_17" + }, { + "type" : "double", + "name" : "supplycost_19" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2569", + "type" : "REPARTITION", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey_22" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey_22" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1995", + "sourceFragmentIds" : [ "14" ], + "outputs" : [ { + "type" : "bigint", + "name" : "suppkey_22" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "suppkey_22" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "suppkey_17" + }, + "right" : { + "type" : "bigint", + "name" : "suppkey_22" + } + } ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "supplycost_19" + } ], + "rightOutputSymbols" : [ ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2227" : { + "type" : "bigint", + "name" : "suppkey_22" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 1600.0, + "outputSizeInBytes" : 28800.0, + "cpuCost" : 684694.0, + "memoryCost" : 225.0, + "networkCost" : 218484.0 + } + }, + "assignments" : { + "assignments" : { + "6|double|supplycost_19" : { + "@type" : "reference", + "type" : "double", + "name" : "supplycost_19" + }, + "6|bigint|partkey_16" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_16" + }, + "7|boolean|non_null" : { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAE=" + } + } + } + }, + "aggregations" : { + "6|double|min_41" : { + "resolvedFunction" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "min" + }, + "returnType" : "double", + "argumentTypes" : [ "double" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "min(t):t", + "functionKind" : "AGGREGATE", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : true, + "argumentNullable" : [ false ] + }, + "typeDependencies" : { + "double" : "double" + }, + "functionDependencies" : [ { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$operator$comparison_unordered_last" + }, + "returnType" : "integer", + "argumentTypes" : [ "double", "double" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$operator$comparison_unordered_last(t,t):integer", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + } ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "double", + "name" : "supplycost_19" + } ], + "distinct" : false, + "mask" : { + "type" : "boolean", + "name" : "non_null" + } + } + }, + "groupingSets" : { + "groupingKeys" : [ { + "type" : "bigint", + "name" : "partkey_16" + } ], + "groupingSetCount" : 1, + "globalGroupingSets" : [ ] + }, + "preGroupedSymbols" : [ ], + "step" : "PARTIAL", + "isInputReducingAggregation" : true + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "min_41" + }, { + "type" : "double", + "name" : "supplycost_19" + }, { + "type" : "boolean", + "name" : "non_null" + }, { + "type" : "bigint", + "name" : "suppkey_17" + }, { + "type" : "bigint", + "name" : "suppkey_22" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_16" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "double", + "name" : "min_41" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2723" : { + "outputRowCount" : 1600.0, + "symbolStatistics" : { + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + } + } + }, + "637" : { + "outputRowCount" : 1600.0, + "symbolStatistics" : { + "7|boolean|non_null" : { + "lowValue" : 1.0, + "highValue" : 1.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + }, + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + }, + "6|double|supplycost_19" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + } + } + }, + "1721" : { + "outputRowCount" : 1600.0, + "symbolStatistics" : { + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + }, + "6|double|supplycost_19" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1600.0 + } + } + }, + "1994" : { + "outputRowCount" : 8000.0, + "symbolStatistics" : { + "6|bigint|suppkey_17" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "6|double|supplycost_19" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 7665.0 + } + } + }, + "2569" : { + "outputRowCount" : 20.0, + "symbolStatistics" : { + "6|bigint|suppkey_22" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + } + } + }, + "1995" : { + "outputRowCount" : 20.0, + "symbolStatistics" : { + "6|bigint|suppkey_22" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + } + } + } + }, + "costs" : { + "2723" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "maxMemoryWhenOutputting" : "NaN", + "networkCost" : "NaN", + "rootNodeLocalCostEstimate" : { + "cpuCost" : "NaN", + "maxMemory" : "NaN", + "networkCost" : "NaN" + } + }, + "637" : { + "cpuCost" : 934935.0, + "maxMemory" : 225.0, + "maxMemoryWhenOutputting" : 180.0, + "networkCost" : 218484.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 32000.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1721" : { + "cpuCost" : 902935.0, + "maxMemory" : 225.0, + "maxMemoryWhenOutputting" : 180.0, + "networkCost" : 218484.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 244980.0, + "maxMemory" : 180.0, + "networkCost" : 0.0 + } + }, + "1994" : { + "cpuCost" : 648000.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 216000.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "networkCost" : 216000.0 + } + }, + "2569" : { + "cpuCost" : 9955.0, + "maxMemory" : 54.0, + "maxMemoryWhenOutputting" : 45.0, + "networkCost" : 2484.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 180.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1995" : { + "cpuCost" : 9775.0, + "maxMemory" : 54.0, + "maxMemoryWhenOutputting" : 45.0, + "networkCost" : 2484.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 180.0, + "maxMemory" : 0.0, + "networkCost" : 180.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2723\",\n \"name\" : \"Aggregate\",\n \"descriptor\" : {\n \"type\" : \"PARTIAL\",\n \"keys\" : \"[partkey_16]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"min_41\"\n } ],\n \"details\" : [ \"min_41 := min(supplycost_19) (mask = non_null)\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"637\",\n \"name\" : \"Project\",\n \"descriptor\" : { },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"supplycost_19\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"boolean\",\n \"name\" : \"non_null\"\n } ],\n \"details\" : [ \"non_null := boolean 'true'\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1721\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(suppkey_17 = suppkey_22)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost_19\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {suppkey_22 -> #df_2227}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1994\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[13]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_17\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost_19\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2569\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"HASH\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[suppkey_22::bigint]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_22\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1995\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[14]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_22\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "double" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.144870Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 36, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 36, + "cumulativeUserMemory" : 312473.354, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.51MB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "157.86ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "57.60ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "12.69s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "188.78kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 8020, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "211.11kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 8020, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "7.89s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2717041708, + "min" : 0.0, + "max" : 4.355907440185547E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.318213427028449E-6 + }, + "outputDataSize" : "25.84kB", + "failedOutputDataSize" : "0B", + "outputPositions" : 1470, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 12, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1995", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "650B", + "internalNetworkInputPositions" : 20, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 68.0, + "getOutputCalls" : 14, + "getOutputWall" : "615.38us", + "getOutputCpu" : "529.00us", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.3599999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.699999999999999E-5, + "p75" : 9.099999999999999E-5, + "p90" : 1.1699999999999998E-4, + "p95" : 1.3599999999999997E-4, + "p99" : 1.3599999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 4.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.11572470899999998, + "max" : 0.8070745839999999, + "p01" : 0.11572470899999998, + "p05" : 0.11572470899999998, + "p10" : 0.131845792, + "p25" : 0.13423195799999998, + "p50" : 0.14066441699999999, + "p75" : 0.8021149989999998, + "p90" : 0.8064129599999998, + "p95" : 0.8070745839999999, + "p99" : 0.8070745839999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.0658299999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.987499999999999E-5, + "p75" : 9.420899999999999E-5, + "p90" : 1.2025099999999998E-4, + "p95" : 2.0658299999999998E-4, + "p99" : 2.0658299999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.29s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 328, + "averageBytesPerRequest" : 28, + "successfulRequestsCount" : 80, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 811.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 5.0, + "p75" : 143.0, + "p90" : 808.0, + "p95" : 811.0, + "p99" : 811.0, + "total" : 14 + } + } + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 17, + "getOutputWall" : "493.83us", + "getOutputCpu" : "415.00us", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4499999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 1.1999999999999999E-5, + "p75" : 7.799999999999999E-5, + "p90" : 1.0099999999999999E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.09948866599999999, + "max" : 0.8146652919999999, + "p01" : 0.09948866599999999, + "p05" : 0.09948866599999999, + "p10" : 0.10812016599999999, + "p25" : 0.12052233299999998, + "p50" : 0.13026149899999998, + "p75" : 0.8123456239999999, + "p90" : 0.8146314159999999, + "p95" : 0.8146652919999999, + "p99" : 0.8146652919999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.0404099999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.541999999999999E-6, + "p50" : 1.3249999999999999E-5, + "p75" : 8.0124E-5, + "p90" : 1.0670899999999998E-4, + "p95" : 2.0404099999999997E-4, + "p99" : 2.0404099999999997E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.21s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1994", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "188.14kB", + "internalNetworkInputPositions" : 8000, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7158922.0, + "getOutputCalls" : 9, + "getOutputWall" : "2.59ms", + "getOutputCpu" : "918.00us", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.8699999999999996E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.099999999999999E-5, + "p50" : 7.399999999999998E-5, + "p75" : 1.0999999999999999E-4, + "p90" : 1.4799999999999997E-4, + "p95" : 1.8699999999999996E-4, + "p99" : 1.8699999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1021.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 813.0, + "p50" : 841.0, + "p75" : 969.0, + "p90" : 970.0, + "p95" : 1021.0, + "p99" : 1021.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.05938216599999999, + "max" : 0.7531150829999999, + "p01" : 0.05938216599999999, + "p05" : 0.05938216599999999, + "p10" : 0.06855529199999999, + "p25" : 0.072638292, + "p50" : 0.08432829099999999, + "p75" : 0.7512770419999999, + "p90" : 0.7516588749999998, + "p95" : 0.7531150829999999, + "p99" : 0.7531150829999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0017153749999999997, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.329199999999999E-5, + "p50" : 8.024999999999999E-5, + "p75" : 1.52584E-4, + "p90" : 1.9649999999999998E-4, + "p95" : 0.0017153749999999997, + "p99" : 0.0017153749999999997, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.60s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 46808, + "averageBytesPerRequest" : 10698, + "successfulRequestsCount" : 72, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 746.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 2.0, + "p25" : 6.0, + "p50" : 24.0, + "p75" : 716.0, + "p90" : 745.0, + "p95" : 746.0, + "p99" : 746.0, + "total" : 12 + } + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 3, + "planNodeId" : "2723", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "88.65ms", + "addInputCpu" : "22.20ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "31.25kB", + "inputPositions" : 1600, + "sumSquaredInputPositions" : 303124.0, + "getOutputCalls" : 85, + "getOutputWall" : "26.58ms", + "getOutputCpu" : "8.70ms", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 249.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 131.0, + "p50" : 156.0, + "p75" : 234.0, + "p90" : 237.0, + "p95" : 249.0, + "p99" : 249.0, + "total" : 12 + }, + "Group by hash update CPU time" : { + "duration" : "2419293.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.000999999999999E-6, + "max" : 0.013733875999999997, + "p01" : 6.000999999999999E-6, + "p05" : 6.000999999999999E-6, + "p10" : 7.249999999999999E-6, + "p25" : 0.011455833999999998, + "p50" : 0.012631415999999998, + "p75" : 0.013467583999999998, + "p90" : 0.013701541999999999, + "p95" : 0.013733875999999997, + "p99" : 0.013733875999999997, + "total" : 12 + }, + "Accumulator update CPU time" : { + "duration" : "16879874.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 0.005127, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 0.0024239999999999995, + "p50" : 0.0028959999999999997, + "p75" : 0.004011, + "p90" : 0.004129999999999999, + "p95" : 0.005127, + "p99" : 0.005127, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 39, + "finishWall" : "136.33us", + "finishCpu" : "154.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 4, + "planNodeId" : "2723", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "560.26us", + "addInputCpu" : "403.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "25.84kB", + "inputPositions" : 1470, + "sumSquaredInputPositions" : 253648.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "25.84kB", + "outputPositions" : 1470, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.082999999999999E-6, + "max" : 8.299999999999999E-4, + "p01" : 8.082999999999999E-6, + "p05" : 8.082999999999999E-6, + "p10" : 8.125E-6, + "p25" : 1.8587499999999998E-4, + "p50" : 3.14667E-4, + "p75" : 4.395009999999999E-4, + "p90" : 4.905409999999999E-4, + "p95" : 8.299999999999999E-4, + "p99" : 8.299999999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 222.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 118.0, + "p50" : 138.0, + "p75" : 210.0, + "p90" : 215.0, + "p95" : 222.0, + "p99" : 222.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 3.3099999999999997E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 1.8399999999999997E-4, + "p50" : 2.4499999999999994E-4, + "p75" : 3.0E-4, + "p90" : 3.2599999999999996E-4, + "p95" : 3.3099999999999997E-4, + "p99" : 3.3099999999999997E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "2.99ms", + "finishCpu" : "1.98ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 14616 + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "637", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "80.00us", + "addInputCpu" : "96.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "40.63kB", + "inputPositions" : 1600, + "sumSquaredInputPositions" : 303124.0, + "getOutputCalls" : 67, + "getOutputWall" : "4.20ms", + "getOutputCpu" : "2.06ms", + "outputDataSize" : "31.25kB", + "outputPositions" : 1600, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 6.499999999999999E-4, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 1.5699999999999997E-4, + "p50" : 1.8799999999999996E-4, + "p75" : 3.29E-4, + "p90" : 4.6799999999999994E-4, + "p95" : 6.499999999999999E-4, + "p99" : 6.499999999999999E-4, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3540999999999998E-5, + "max" : 0.0012689569999999998, + "p01" : 1.3540999999999998E-5, + "p05" : 1.3540999999999998E-5, + "p10" : 1.5582999999999996E-5, + "p25" : 1.68666E-4, + "p50" : 2.74626E-4, + "p75" : 6.513329999999999E-4, + "p90" : 9.849589999999999E-4, + "p95" : 0.0012689569999999998, + "p99" : 0.0012689569999999998, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 249.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 131.0, + "p50" : 156.0, + "p75" : 234.0, + "p90" : 237.0, + "p95" : 249.0, + "p99" : 249.0, + "total" : 12 + }, + "Projection CPU time" : { + "duration" : "1236755.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 30, + "finishWall" : "526.29us", + "finishCpu" : "534.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "7.67kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "7.67kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "32.54us", + "addInputCpu" : "63.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7158922.0, + "getOutputCalls" : 42, + "getOutputWall" : "21.76ms", + "getOutputCpu" : "12.54ms", + "outputDataSize" : "40.63kB", + "outputPositions" : 1600, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 0.0022709999999999996, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 4.0999999999999994E-5, + "p25" : 7.359999999999999E-4, + "p50" : 0.001308, + "p75" : 0.0018399999999999998, + "p90" : 0.0022089999999999996, + "p95" : 0.0022709999999999996, + "p99" : 0.0022709999999999996, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1021.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 813.0, + "p50" : 841.0, + "p75" : 969.0, + "p90" : 970.0, + "p95" : 1021.0, + "p99" : 1021.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.09428079099999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.043154833, + "p50" : 0.050401749999999995, + "p75" : 0.08016391699999999, + "p90" : 0.08345512499999999, + "p95" : 0.09428079099999999, + "p99" : 0.09428079099999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4832999999999998E-5, + "max" : 0.004159209, + "p01" : 2.4832999999999998E-5, + "p05" : 2.4832999999999998E-5, + "p10" : 4.820899999999999E-5, + "p25" : 8.952919999999999E-4, + "p50" : 0.0018311259999999998, + "p75" : 0.0032656669999999994, + "p90" : 0.0037345829999999997, + "p95" : 0.004159209, + "p99" : 0.004159209, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "555.49ms", + "finishCalls" : 37, + "finishWall" : "530.59us", + "finishCpu" : "421.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 6400, 1600, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 1600, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 60, + "rleProbes" : 0, + "totalProbes" : 9 + } + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1721", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 17, + "addInputWall" : "237.58us", + "addInputCpu" : "225.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.199999999999999E-5, + "max" : 2.0699999999999996E-4, + "p01" : 4.199999999999999E-5, + "p05" : 4.199999999999999E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 5.999999999999999E-5, + "p50" : 8.499999999999999E-5, + "p75" : 1.8999999999999998E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 2.0699999999999996E-4, + "p99" : 2.0699999999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.012351291999999998, + "max" : 0.019742041999999998, + "p01" : 0.012351291999999998, + "p05" : 0.012351291999999998, + "p10" : 0.013287874999999998, + "p25" : 0.013856124999999999, + "p50" : 0.014365957999999998, + "p75" : 0.015704874999999997, + "p90" : 0.015810499999999998, + "p95" : 0.019742041999999998, + "p99" : 0.019742041999999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 4.108299999999999E-5, + "max" : 2.1158199999999998E-4, + "p01" : 4.108299999999999E-5, + "p05" : 4.108299999999999E-5, + "p10" : 5.516699999999999E-5, + "p25" : 5.9915999999999994E-5, + "p50" : 8.291499999999999E-5, + "p75" : 1.8849999999999997E-4, + "p90" : 1.9283299999999997E-4, + "p95" : 2.1158199999999998E-4, + "p99" : 2.1158199999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "177.79ms", + "finishCalls" : 24, + "finishWall" : "1.06ms", + "finishCpu" : "1.06ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 14, + "addInputWall" : "788.71us", + "addInputCpu" : "768.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 68.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 2.8E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 2.3999999999999997E-5, + "p50" : 8.699999999999999E-5, + "p75" : 1.9099999999999998E-4, + "p90" : 2.5299999999999997E-4, + "p95" : 2.8E-4, + "p99" : 2.8E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 4.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.499999999999998E-6, + "max" : 2.9254199999999996E-4, + "p01" : 8.499999999999998E-6, + "p05" : 8.499999999999998E-6, + "p10" : 8.999999999999999E-6, + "p25" : 2.7416999999999995E-5, + "p50" : 8.824999999999999E-5, + "p75" : 1.9304099999999997E-4, + "p90" : 2.6229099999999995E-4, + "p95" : 2.9254199999999996E-4, + "p99" : 2.9254199999999996E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "489.83us", + "finishCpu" : "456.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 17, + "addInputWall" : "224.59us", + "addInputCpu" : "200.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 50.0, + "getOutputCalls" : 42, + "getOutputWall" : "320.92us", + "getOutputCpu" : "314.00us", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.5999999999999994E-5, + "max" : 2.7199999999999994E-4, + "p01" : 3.5999999999999994E-5, + "p05" : 3.5999999999999994E-5, + "p10" : 6.299999999999999E-5, + "p25" : 7.999999999999999E-5, + "p50" : 1.0499999999999999E-4, + "p75" : 1.7199999999999998E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 2.7199999999999994E-4, + "p99" : 2.7199999999999994E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.862599999999999E-5, + "max" : 5.779599999999999E-4, + "p01" : 3.862599999999999E-5, + "p05" : 3.862599999999999E-5, + "p10" : 6.587399999999999E-5, + "p25" : 8.358299999999999E-5, + "p50" : 1.1025099999999999E-4, + "p75" : 2.8295999999999996E-4, + "p90" : 3.9862499999999995E-4, + "p95" : 5.779599999999999E-4, + "p99" : 5.779599999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.63ms", + "finishCpu" : "905.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.12.2.0", + "taskInstanceId" : -915351723077403244, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.12.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "7.86kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "515.36kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.056517Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 447, + "totalPagesSent" : 9, + "utilization" : { + "min" : 0.0, + "max" : 3.070831298828125E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.5543438463113126E-7, + "p90" : 6.041027318586754E-7, + "p95" : 6.869921809345234E-7, + "p99" : 7.533037401952018E-7, + "total" : 905887250 + } + }, + "noMoreSplits" : [ "1995", "1994" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.146804Z", + "firstStartTime" : "2026-03-30T07:59:03.881021Z", + "lastStartTime" : "2026-03-30T07:59:03.928041Z", + "lastEndTime" : "2026-03-30T07:59:04.050Z", + "endTime" : "2026-03-30T07:59:04.059219Z", + "elapsedTime" : "904.38ms", + "queuedTime" : "726.12ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "515.36kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "54.66ms", + "totalCpuTime" : "18.47ms", + "totalBlockedTime" : "1.48s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "60.40kB", + "internalNetworkInputPositions" : 2566, + "processedInputDataSize" : "67.55kB", + "processedInputPositions" : 2566, + "inputBlockedTime" : "822.69ms", + "outputDataSize" : "7.86kB", + "outputPositions" : 447, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.881020Z", + "lastStartTime" : "2026-03-30T07:59:03.906768Z", + "lastEndTime" : "2026-03-30T07:59:04.026152Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.656878332E9, + "p01" : 6.53664416E8, + "p05" : 6.53664416E8, + "p10" : 6.53664416E8, + "p25" : 6.60529625E8, + "p50" : 6.63274916E8, + "p75" : 6.79409375E8, + "p90" : 6.79409375E8, + "p95" : 6.79409375E8, + "p99" : 6.79409375E8, + "min" : 6.53664416E8, + "max" : 6.79409375E8, + "avg" : 6.64219583E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.192280874E9, + "p01" : 7.97805208E8, + "p05" : 7.97805208E8, + "p10" : 7.97805208E8, + "p25" : 7.97840375E8, + "p50" : 7.97841541E8, + "p75" : 7.9879375E8, + "p90" : 7.9879375E8, + "p95" : 7.9879375E8, + "p99" : 7.9879375E8, + "min" : 7.97805208E8, + "max" : 7.9879375E8, + "avg" : 7.980702185E8 + }, + "totalScheduledTime" : "808.75us", + "totalCpuTime" : "780.00us", + "totalBlockedTime" : "522.47ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "188B", + "internalNetworkInputPositions" : 6, + "processedInputDataSize" : "54B", + "processedInputPositions" : 6, + "inputBlockedTime" : "522.47ms", + "outputDataSize" : "54B", + "outputPositions" : 6, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1995", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "188B", + "internalNetworkInputPositions" : 6, + "inputDataSize" : "54B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 20.0, + "getOutputCalls" : 4, + "getOutputWall" : "115.71us", + "getOutputCpu" : "111.00us", + "outputDataSize" : "54B", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.899999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 5.199999999999999E-5, + "p75" : 5.899999999999999E-5, + "p90" : 5.899999999999999E-5, + "p95" : 5.899999999999999E-5, + "p99" : 5.899999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.11572470899999998, + "max" : 0.14066441699999999, + "p01" : 0.11572470899999998, + "p05" : 0.11572470899999998, + "p10" : 0.11572470899999998, + "p25" : 0.131845792, + "p50" : 0.13423195799999998, + "p75" : 0.14066441699999999, + "p90" : 0.14066441699999999, + "p95" : 0.14066441699999999, + "p99" : 0.14066441699999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 6.179099999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 5.391699999999999E-5, + "p75" : 6.179099999999999E-5, + "p90" : 6.179099999999999E-5, + "p95" : 6.179099999999999E-5, + "p99" : 6.179099999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "522.47ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 224, + "averageBytesPerRequest" : 29, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 138.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 3.0, + "p50" : 131.0, + "p75" : 133.0, + "p90" : 138.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 6 + } + } + }, { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "186.38us", + "addInputCpu" : "188.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "54B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 20.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "54B", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 2.8E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 8.999999999999999E-6, + "p50" : 1.1599999999999999E-4, + "p75" : 2.8E-4, + "p90" : 2.8E-4, + "p95" : 2.8E-4, + "p99" : 2.8E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.9254199999999996E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0207999999999998E-5, + "p50" : 1.1579099999999999E-4, + "p75" : 2.9254199999999996E-4, + "p90" : 2.9254199999999996E-4, + "p95" : 2.9254199999999996E-4, + "p99" : 2.9254199999999996E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "241.17us", + "finishCpu" : "225.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.893934Z", + "lastStartTime" : "2026-03-30T07:59:03.923966Z", + "lastEndTime" : "2026-03-30T07:59:04.047606Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.73257375E9, + "p01" : 6.66570709E8, + "p05" : 6.66570709E8, + "p10" : 6.66570709E8, + "p25" : 6.82887083E8, + "p50" : 6.86515083E8, + "p75" : 6.96600875E8, + "p90" : 6.96600875E8, + "p95" : 6.96600875E8, + "p99" : 6.96600875E8, + "min" : 6.66570709E8, + "max" : 6.96600875E8, + "avg" : 6.831434375E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.279876791E9, + "p01" : 8.19672291E8, + "p05" : 8.19672291E8, + "p10" : 8.19672291E8, + "p25" : 8.19881E8, + "p50" : 8.20083375E8, + "p75" : 8.20240125E8, + "p90" : 8.20240125E8, + "p95" : 8.20240125E8, + "p99" : 8.20240125E8, + "min" : 8.19672291E8, + "max" : 8.20240125E8, + "avg" : 8.1996919775E8 + }, + "totalScheduledTime" : "1.15ms", + "totalCpuTime" : "1.12ms", + "totalBlockedTime" : "516.62ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "54B", + "processedInputPositions" : 6, + "inputBlockedTime" : "454.63ms", + "outputDataSize" : "54B", + "outputPositions" : 6, + "outputBlockedTime" : "61.98ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "54B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 14.0, + "getOutputCalls" : 5, + "getOutputWall" : "45.25us", + "getOutputCpu" : "40.00us", + "outputDataSize" : "54B", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 2.2999999999999997E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 8.999999999999999E-6, + "p75" : 2.2999999999999997E-5, + "p90" : 2.2999999999999997E-5, + "p95" : 2.2999999999999997E-5, + "p99" : 2.2999999999999997E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09948866599999999, + "max" : 0.13126704099999997, + "p01" : 0.09948866599999999, + "p05" : 0.09948866599999999, + "p10" : 0.09948866599999999, + "p25" : 0.10812016599999999, + "p50" : 0.11575724999999998, + "p75" : 0.13126704099999997, + "p90" : 0.13126704099999997, + "p95" : 0.13126704099999997, + "p99" : 0.13126704099999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.5539999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.541999999999999E-6, + "p50" : 1.1166999999999998E-5, + "p75" : 2.5539999999999996E-5, + "p90" : 2.5539999999999996E-5, + "p95" : 2.5539999999999996E-5, + "p99" : 2.5539999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "454.63ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "41.13us", + "addInputCpu" : "40.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "54B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 14.0, + "getOutputCalls" : 13, + "getOutputWall" : "87.67us", + "getOutputCpu" : "83.00us", + "outputDataSize" : "54B", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.299999999999999E-5, + "max" : 1.9399999999999997E-4, + "p01" : 6.299999999999999E-5, + "p05" : 6.299999999999999E-5, + "p10" : 6.299999999999999E-5, + "p25" : 1.0299999999999998E-4, + "p50" : 1.0799999999999998E-4, + "p75" : 1.9399999999999997E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 1.9399999999999997E-4, + "p99" : 1.9399999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.587399999999999E-5, + "max" : 2.0079099999999997E-4, + "p01" : 6.587399999999999E-5, + "p05" : 6.587399999999999E-5, + "p10" : 6.587399999999999E-5, + "p25" : 1.0795799999999999E-4, + "p50" : 1.1025099999999999E-4, + "p75" : 2.0079099999999997E-4, + "p90" : 2.0079099999999997E-4, + "p95" : 2.0079099999999997E-4, + "p99" : 2.0079099999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "356.08us", + "finishCpu" : "345.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1721", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "47.58us", + "addInputCpu" : "47.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "54B", + "inputPositions" : 6, + "sumSquaredInputPositions" : 14.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "54B", + "outputPositions" : 6, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.699999999999999E-5, + "max" : 1.8999999999999998E-4, + "p01" : 5.699999999999999E-5, + "p05" : 5.699999999999999E-5, + "p10" : 5.699999999999999E-5, + "p25" : 6.299999999999999E-5, + "p50" : 1.7699999999999997E-4, + "p75" : 1.8999999999999998E-4, + "p90" : 1.8999999999999998E-4, + "p95" : 1.8999999999999998E-4, + "p99" : 1.8999999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.013576957999999998, + "max" : 0.019742041999999998, + "p01" : 0.013576957999999998, + "p05" : 0.013576957999999998, + "p10" : 0.013576957999999998, + "p25" : 0.014295416999999998, + "p50" : 0.014365957999999998, + "p75" : 0.019742041999999998, + "p90" : 0.019742041999999998, + "p95" : 0.019742041999999998, + "p99" : 0.019742041999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.783399999999999E-5, + "max" : 1.8849999999999997E-4, + "p01" : 5.783399999999999E-5, + "p05" : 5.783399999999999E-5, + "p10" : 5.783399999999999E-5, + "p25" : 6.254199999999998E-5, + "p50" : 1.8491699999999996E-4, + "p75" : 1.8849999999999997E-4, + "p90" : 1.8849999999999997E-4, + "p95" : 1.8849999999999997E-4, + "p99" : 1.8849999999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "61.98ms", + "finishCalls" : 8, + "finishWall" : "446.21us", + "finishCpu" : "440.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.897079Z", + "lastStartTime" : "2026-03-30T07:59:03.928040Z", + "lastEndTime" : "2026-03-30T07:59:04.050183Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.720438708E9, + "p01" : 6.69712667E8, + "p05" : 6.69712667E8, + "p10" : 6.69712667E8, + "p25" : 6.734675E8, + "p50" : 6.7658575E8, + "p75" : 7.00672791E8, + "p90" : 7.00672791E8, + "p95" : 7.00672791E8, + "p99" : 7.00672791E8, + "min" : 6.69712667E8, + "max" : 7.00672791E8, + "avg" : 6.80109677E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.23128375E9, + "p01" : 7.63309666E8, + "p05" : 7.63309666E8, + "p10" : 7.63309666E8, + "p25" : 8.22525125E8, + "p50" : 8.2263375E8, + "p75" : 8.22815209E8, + "p90" : 8.22815209E8, + "p95" : 8.22815209E8, + "p99" : 8.22815209E8, + "min" : 7.63309666E8, + "max" : 8.22815209E8, + "avg" : 8.078209375E8 + }, + "totalScheduledTime" : "52.71ms", + "totalCpuTime" : "16.57ms", + "totalBlockedTime" : "438.48ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "60.21kB", + "internalNetworkInputPositions" : 2560, + "processedInputDataSize" : "67.50kB", + "processedInputPositions" : 2560, + "inputBlockedTime" : "300.22ms", + "outputDataSize" : "7.86kB", + "outputPositions" : 447, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1994", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "60.21kB", + "internalNetworkInputPositions" : 2560, + "inputDataSize" : "67.50kB", + "inputPositions" : 2560, + "sumSquaredInputPositions" : 2185522.0, + "getOutputCalls" : 3, + "getOutputWall" : "1.92ms", + "getOutputCpu" : "348.00us", + "outputDataSize" : "67.50kB", + "outputPositions" : 2560, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.8699999999999996E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.099999999999999E-5, + "p50" : 1.0999999999999999E-4, + "p75" : 1.8699999999999996E-4, + "p90" : 1.8699999999999996E-4, + "p95" : 1.8699999999999996E-4, + "p99" : 1.8699999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 879.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 840.0, + "p50" : 841.0, + "p75" : 879.0, + "p90" : 879.0, + "p95" : 879.0, + "p99" : 879.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.05938216599999999, + "max" : 0.08466683399999998, + "p01" : 0.05938216599999999, + "p05" : 0.05938216599999999, + "p10" : 0.05938216599999999, + "p25" : 0.077673208, + "p50" : 0.07849662499999999, + "p75" : 0.08466683399999998, + "p90" : 0.08466683399999998, + "p95" : 0.08466683399999998, + "p99" : 0.08466683399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0017153749999999997, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.329199999999999E-5, + "p50" : 1.52584E-4, + "p75" : 0.0017153749999999997, + "p90" : 0.0017153749999999997, + "p95" : 0.0017153749999999997, + "p99" : 0.0017153749999999997, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "300.22ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 40616, + "averageBytesPerRequest" : 10273, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 81.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 5.0, + "p50" : 47.0, + "p75" : 80.0, + "p90" : 81.0, + "p95" : 81.0, + "p99" : 81.0, + "total" : 6 + } + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "13.17us", + "addInputCpu" : "29.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "67.50kB", + "inputPositions" : 2560, + "sumSquaredInputPositions" : 2185522.0, + "getOutputCalls" : 14, + "getOutputWall" : "7.45ms", + "getOutputCpu" : "4.07ms", + "outputDataSize" : "12.19kB", + "outputPositions" : 480, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 7.599999999999999E-5, + "max" : 0.0015159999999999998, + "p01" : 7.599999999999999E-5, + "p05" : 7.599999999999999E-5, + "p10" : 7.599999999999999E-5, + "p25" : 0.001308, + "p50" : 0.0013839999999999998, + "p75" : 0.0015159999999999998, + "p90" : 0.0015159999999999998, + "p95" : 0.0015159999999999998, + "p99" : 0.0015159999999999998, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 879.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 840.0, + "p50" : 841.0, + "p75" : 879.0, + "p90" : 879.0, + "p95" : 879.0, + "p99" : 879.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.08016391699999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.04839816599999999, + "p50" : 0.050401749999999995, + "p75" : 0.08016391699999999, + "p90" : 0.08016391699999999, + "p95" : 0.08016391699999999, + "p99" : 0.08016391699999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.45416E-4, + "max" : 0.0032656669999999994, + "p01" : 1.45416E-4, + "p05" : 1.45416E-4, + "p10" : 1.45416E-4, + "p25" : 0.0018311259999999998, + "p50" : 0.0024823309999999995, + "p75" : 0.0032656669999999994, + "p90" : 0.0032656669999999994, + "p95" : 0.0032656669999999994, + "p99" : 0.0032656669999999994, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "178.96ms", + "finishCalls" : 12, + "finishWall" : "258.37us", + "finishCpu" : "187.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2080, 480, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 480, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 18, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "637", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "12.67us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "12.19kB", + "inputPositions" : 480, + "sumSquaredInputPositions" : 76832.0, + "getOutputCalls" : 22, + "getOutputWall" : "1.85ms", + "getOutputCpu" : "842.00us", + "outputDataSize" : "9.38kB", + "outputPositions" : 480, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.8999999999999998E-5, + "max" : 4.6799999999999994E-4, + "p01" : 1.8999999999999998E-5, + "p05" : 1.8999999999999998E-5, + "p10" : 1.8999999999999998E-5, + "p25" : 1.8299999999999998E-4, + "p50" : 3.29E-4, + "p75" : 4.6799999999999994E-4, + "p90" : 4.6799999999999994E-4, + "p95" : 4.6799999999999994E-4, + "p99" : 4.6799999999999994E-4, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.7667E-5, + "max" : 9.849589999999999E-4, + "p01" : 1.7667E-5, + "p05" : 1.7667E-5, + "p10" : 1.7667E-5, + "p25" : 3.5945899999999996E-4, + "p50" : 6.356669999999999E-4, + "p75" : 9.849589999999999E-4, + "p90" : 9.849589999999999E-4, + "p95" : 9.849589999999999E-4, + "p99" : 9.849589999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 164.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 156.0, + "p50" : 160.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 4 + }, + "Projection CPU time" : { + "duration" : "845334.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 10, + "finishWall" : "130.79us", + "finishCpu" : "135.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.09kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.09kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 3, + "planNodeId" : "2723", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "30.15ms", + "addInputCpu" : "6.83ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9.38kB", + "inputPositions" : 480, + "sumSquaredInputPositions" : 76832.0, + "getOutputCalls" : 28, + "getOutputWall" : "9.17ms", + "getOutputCpu" : "2.98ms", + "outputDataSize" : "7.86kB", + "outputPositions" : 447, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 164.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 156.0, + "p50" : 160.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 4 + }, + "Group by hash update CPU time" : { + "duration" : "757792.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.332999999999998E-6, + "max" : 0.013467583999999998, + "p01" : 8.332999999999998E-6, + "p05" : 8.332999999999998E-6, + "p10" : 8.332999999999998E-6, + "p25" : 0.012631415999999998, + "p50" : 0.013264247999999998, + "p75" : 0.013467583999999998, + "p90" : 0.013467583999999998, + "p95" : 0.013467583999999998, + "p99" : 0.013467583999999998, + "total" : 4 + }, + "Accumulator update CPU time" : { + "duration" : "5580457.00ns" + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 0.004129999999999999, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 0.0024239999999999995, + "p50" : 0.0033009999999999997, + "p75" : 0.004129999999999999, + "p90" : 0.004129999999999999, + "p95" : 0.004129999999999999, + "p99" : 0.004129999999999999, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 13, + "finishWall" : "49.71us", + "finishCpu" : "54.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 4, + "planNodeId" : "2723", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "321.13us", + "addInputCpu" : "158.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "7.86kB", + "inputPositions" : 447, + "sumSquaredInputPositions" : 66825.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "7.86kB", + "outputPositions" : 447, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6499999999999997E-5, + "max" : 4.905409999999999E-4, + "p01" : 2.6499999999999997E-5, + "p05" : 2.6499999999999997E-5, + "p10" : 2.6499999999999997E-5, + "p25" : 4.197079999999999E-4, + "p50" : 4.395009999999999E-4, + "p75" : 4.905409999999999E-4, + "p90" : 4.905409999999999E-4, + "p95" : 4.905409999999999E-4, + "p99" : 4.905409999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 159.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 138.0, + "p50" : 150.0, + "p75" : 159.0, + "p90" : 159.0, + "p95" : 159.0, + "p99" : 159.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 2.4999999999999998E-5, + "max" : 2.9599999999999993E-4, + "p01" : 2.4999999999999998E-5, + "p05" : 2.4999999999999998E-5, + "p10" : 2.4999999999999998E-5, + "p25" : 2.1399999999999997E-4, + "p50" : 2.4499999999999994E-4, + "p75" : 2.9599999999999993E-4, + "p90" : 2.9599999999999993E-4, + "p95" : 2.9599999999999993E-4, + "p99" : 2.9599999999999993E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "1.06ms", + "finishCpu" : "622.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 10304 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.12.0.0", + "taskInstanceId" : -249899988538767616, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.12.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "6.61kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "515.30kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.056308Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 376, + "totalPagesSent" : 9, + "utilization" : { + "min" : 0.0, + "max" : 2.613067626953125E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.796293617806021E-8, + "p90" : 2.99451148494709E-8, + "p95" : 3.393917440660779E-8, + "p99" : 3.7134422052317303E-8, + "total" : 904383583 + } + }, + "noMoreSplits" : [ "1995", "1994" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.145282Z", + "firstStartTime" : "2026-03-30T07:59:03.204445Z", + "lastStartTime" : "2026-03-30T07:59:03.230896Z", + "lastEndTime" : "2026-03-30T07:59:04.050Z", + "endTime" : "2026-03-30T07:59:04.059147Z", + "elapsedTime" : "902.76ms", + "queuedTime" : "48.06ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 312473.354, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "515.30kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "43.92ms", + "totalCpuTime" : "15.85ms", + "totalBlockedTime" : "9.68s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "58.51kB", + "internalNetworkInputPositions" : 2485, + "processedInputDataSize" : "65.43kB", + "processedInputPositions" : 2485, + "inputBlockedTime" : "6.22s", + "outputDataSize" : "6.61kB", + "outputPositions" : 376, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.204445Z", + "lastStartTime" : "2026-03-30T07:59:03.204600Z", + "lastEndTime" : "2026-03-30T07:59:04.032296Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 1.8527541E7, + "p01" : 4559291.0, + "p05" : 4559291.0, + "p10" : 4559291.0, + "p25" : 4613375.0, + "p50" : 4651375.0, + "p75" : 4703500.0, + "p90" : 4703500.0, + "p95" : 4703500.0, + "p99" : 4703500.0, + "min" : 4559291.0, + "max" : 4703500.0, + "avg" : 4631885.25 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.31001E9, + "p01" : 8.25840458E8, + "p05" : 8.25840458E8, + "p10" : 8.25840458E8, + "p25" : 8.25888417E8, + "p50" : 8.25889583E8, + "p75" : 8.32391542E8, + "p90" : 8.32391542E8, + "p95" : 8.32391542E8, + "p99" : 8.32391542E8, + "min" : 8.25840458E8, + "max" : 8.32391542E8, + "avg" : 8.275025E8 + }, + "totalScheduledTime" : "1.07ms", + "totalCpuTime" : "919.00us", + "totalBlockedTime" : "3.22s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "180B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "45B", + "processedInputPositions" : 5, + "inputBlockedTime" : "3.22s", + "outputDataSize" : "45B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1995", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "180B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 4, + "getOutputWall" : "300.79us", + "getOutputCpu" : "227.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.3599999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 9.099999999999999E-5, + "p75" : 1.3599999999999997E-4, + "p90" : 1.3599999999999997E-4, + "p95" : 1.3599999999999997E-4, + "p99" : 1.3599999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.8020312089999999, + "max" : 0.8070745839999999, + "p01" : 0.8020312089999999, + "p05" : 0.8020312089999999, + "p10" : 0.8020312089999999, + "p25" : 0.8021149989999998, + "p50" : 0.8064129599999998, + "p75" : 0.8070745839999999, + "p90" : 0.8070745839999999, + "p95" : 0.8070745839999999, + "p99" : 0.8070745839999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.0658299999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 9.420899999999999E-5, + "p75" : 2.0658299999999998E-4, + "p90" : 2.0658299999999998E-4, + "p95" : 2.0658299999999998E-4, + "p99" : 2.0658299999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.22s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 216, + "averageBytesPerRequest" : 29, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 811.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 3.0, + "p50" : 807.0, + "p75" : 808.0, + "p90" : 811.0, + "p95" : 811.0, + "p99" : 811.0, + "total" : 6 + } + } + }, { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "173.08us", + "addInputCpu" : "167.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 1.9099999999999998E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 2.3999999999999997E-5, + "p50" : 6.4E-5, + "p75" : 1.9099999999999998E-4, + "p90" : 1.9099999999999998E-4, + "p95" : 1.9099999999999998E-4, + "p99" : 1.9099999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.499999999999998E-6, + "max" : 1.9304099999999997E-4, + "p01" : 8.499999999999998E-6, + "p05" : 8.499999999999998E-6, + "p10" : 8.499999999999998E-6, + "p25" : 2.7416999999999995E-5, + "p50" : 7.220799999999998E-5, + "p75" : 1.9304099999999997E-4, + "p90" : 1.9304099999999997E-4, + "p95" : 1.9304099999999997E-4, + "p99" : 1.9304099999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "128.08us", + "finishCpu" : "119.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.216541Z", + "lastStartTime" : "2026-03-30T07:59:03.217884Z", + "lastEndTime" : "2026-03-30T07:59:04.047586Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 7.0154667E7, + "p01" : 1.6642542E7, + "p05" : 1.6642542E7, + "p10" : 1.6642542E7, + "p25" : 1.7737375E7, + "p50" : 1.779175E7, + "p75" : 1.7983E7, + "p90" : 1.7983E7, + "p95" : 1.7983E7, + "p99" : 1.7983E7, + "min" : 1.6642542E7, + "max" : 1.7983E7, + "avg" : 1.753866675E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.389927667E9, + "p01" : 8.47260459E8, + "p05" : 8.47260459E8, + "p10" : 8.47260459E8, + "p25" : 8.47418125E8, + "p50" : 8.47571708E8, + "p75" : 8.47677375E8, + "p90" : 8.47677375E8, + "p95" : 8.47677375E8, + "p99" : 8.47677375E8, + "min" : 8.47260459E8, + "max" : 8.47677375E8, + "avg" : 8.4748191675E8 + }, + "totalScheduledTime" : "1.04ms", + "totalCpuTime" : "1.01ms", + "totalBlockedTime" : "3.31s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "45B", + "processedInputPositions" : 5, + "inputBlockedTime" : "3.25s", + "outputDataSize" : "45B", + "outputPositions" : 5, + "outputBlockedTime" : "53.42ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 4, + "getOutputWall" : "103.75us", + "getOutputCpu" : "98.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.799999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 8.0E-6, + "p50" : 1.1999999999999999E-5, + "p75" : 7.799999999999999E-5, + "p90" : 7.799999999999999E-5, + "p95" : 7.799999999999999E-5, + "p99" : 7.799999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.8113835839999999, + "max" : 0.8146652919999999, + "p01" : 0.8113835839999999, + "p05" : 0.8113835839999999, + "p10" : 0.8113835839999999, + "p25" : 0.8123456239999999, + "p50" : 0.8146314159999999, + "p75" : 0.8146652919999999, + "p90" : 0.8146652919999999, + "p95" : 0.8146652919999999, + "p99" : 0.8146652919999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.0124E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0374999999999998E-5, + "p50" : 1.3249999999999999E-5, + "p75" : 8.0124E-5, + "p90" : 8.0124E-5, + "p95" : 8.0124E-5, + "p99" : 8.0124E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.25s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "56.42us", + "addInputCpu" : "55.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 11, + "getOutputWall" : "139.50us", + "getOutputCpu" : "132.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 7.199999999999999E-5, + "max" : 1.1899999999999998E-4, + "p01" : 7.199999999999999E-5, + "p05" : 7.199999999999999E-5, + "p10" : 7.199999999999999E-5, + "p25" : 7.999999999999999E-5, + "p50" : 1.0499999999999999E-4, + "p75" : 1.1899999999999998E-4, + "p90" : 1.1899999999999998E-4, + "p95" : 1.1899999999999998E-4, + "p99" : 1.1899999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 7.587499999999999E-5, + "max" : 1.2337499999999998E-4, + "p01" : 7.587499999999999E-5, + "p05" : 7.587499999999999E-5, + "p10" : 7.587499999999999E-5, + "p25" : 8.358299999999999E-5, + "p50" : 1.0999999999999999E-4, + "p75" : 1.2337499999999998E-4, + "p90" : 1.2337499999999998E-4, + "p95" : 1.2337499999999998E-4, + "p99" : 1.2337499999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "196.92us", + "finishCpu" : "189.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1721", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "92.67us", + "addInputCpu" : "81.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-5, + "max" : 1.9399999999999997E-4, + "p01" : 5.999999999999999E-5, + "p05" : 5.999999999999999E-5, + "p10" : 5.999999999999999E-5, + "p25" : 6.699999999999999E-5, + "p50" : 8.799999999999998E-5, + "p75" : 1.9399999999999997E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 1.9399999999999997E-4, + "p99" : 1.9399999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.012351291999999998, + "max" : 0.013920707999999999, + "p01" : 0.012351291999999998, + "p05" : 0.012351291999999998, + "p10" : 0.012351291999999998, + "p25" : 0.013287874999999998, + "p50" : 0.013856124999999999, + "p75" : 0.013920707999999999, + "p90" : 0.013920707999999999, + "p95" : 0.013920707999999999, + "p99" : 0.013920707999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.9915999999999994E-5, + "max" : 1.9283299999999997E-4, + "p01" : 5.9915999999999994E-5, + "p05" : 5.9915999999999994E-5, + "p10" : 5.9915999999999994E-5, + "p25" : 6.683399999999999E-5, + "p50" : 9.825099999999999E-5, + "p75" : 1.9283299999999997E-4, + "p90" : 1.9283299999999997E-4, + "p95" : 1.9283299999999997E-4, + "p99" : 1.9283299999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "53.42ms", + "finishCalls" : 8, + "finishWall" : "325.17us", + "finishCpu" : "328.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.228316Z", + "lastStartTime" : "2026-03-30T07:59:03.230896Z", + "lastEndTime" : "2026-03-30T07:59:04.050370Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 1.18571626E8, + "p01" : 2.8413625E7, + "p05" : 2.8413625E7, + "p10" : 2.8413625E7, + "p25" : 2.8537542E7, + "p50" : 3.0631375E7, + "p75" : 3.0989084E7, + "p90" : 3.0989084E7, + "p95" : 3.0989084E7, + "p99" : 3.0989084E7, + "min" : 2.8413625E7, + "max" : 3.0989084E7, + "avg" : 2.96429065E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.33779075E9, + "p01" : 7.87428917E8, + "p05" : 7.87428917E8, + "p10" : 7.87428917E8, + "p25" : 8.49896417E8, + "p50" : 8.50005708E8, + "p75" : 8.50459708E8, + "p90" : 8.50459708E8, + "p95" : 8.50459708E8, + "p99" : 8.50459708E8, + "min" : 7.87428917E8, + "max" : 8.50459708E8, + "avg" : 8.344476875E8 + }, + "totalScheduledTime" : "41.81ms", + "totalCpuTime" : "13.92ms", + "totalBlockedTime" : "3.15s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "58.34kB", + "internalNetworkInputPositions" : 2480, + "processedInputDataSize" : "65.39kB", + "processedInputPositions" : 2480, + "inputBlockedTime" : "3.01s", + "outputDataSize" : "6.61kB", + "outputPositions" : 376, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1994", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "58.34kB", + "internalNetworkInputPositions" : 2480, + "inputDataSize" : "65.39kB", + "inputPositions" : 2480, + "sumSquaredInputPositions" : 2051098.0, + "getOutputCalls" : 3, + "getOutputWall" : "217.21us", + "getOutputCpu" : "208.00us", + "outputDataSize" : "65.39kB", + "outputPositions" : 2480, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.999999999999999E-5, + "p50" : 7.399999999999998E-5, + "p75" : 7.399999999999998E-5, + "p90" : 7.399999999999998E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 852.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 813.0, + "p50" : 815.0, + "p75" : 852.0, + "p90" : 852.0, + "p95" : 852.0, + "p99" : 852.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7500568329999999, + "max" : 0.7531150829999999, + "p01" : 0.7500568329999999, + "p05" : 0.7500568329999999, + "p10" : 0.7500568329999999, + "p25" : 0.7512770419999999, + "p50" : 0.7516588749999998, + "p75" : 0.7531150829999999, + "p90" : 0.7531150829999999, + "p95" : 0.7531150829999999, + "p99" : 0.7531150829999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.024999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 6.1916E-5, + "p50" : 7.504199999999999E-5, + "p75" : 8.024999999999999E-5, + "p90" : 8.024999999999999E-5, + "p95" : 8.024999999999999E-5, + "p99" : 8.024999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.01s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 39344, + "averageBytesPerRequest" : 9953, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 746.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 2.0, + "p50" : 716.0, + "p75" : 745.0, + "p90" : 746.0, + "p95" : 746.0, + "p99" : 746.0, + "total" : 6 + } + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "7.83us", + "addInputCpu" : "9.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "65.39kB", + "inputPositions" : 2480, + "sumSquaredInputPositions" : 2051098.0, + "getOutputCalls" : 14, + "getOutputWall" : "3.39ms", + "getOutputCpu" : "2.26ms", + "outputDataSize" : "10.16kB", + "outputPositions" : 400, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.3999999999999997E-5, + "max" : 8.269999999999998E-4, + "p01" : 2.3999999999999997E-5, + "p05" : 2.3999999999999997E-5, + "p10" : 2.3999999999999997E-5, + "p25" : 7.359999999999999E-4, + "p50" : 7.869999999999999E-4, + "p75" : 8.269999999999998E-4, + "p90" : 8.269999999999998E-4, + "p95" : 8.269999999999998E-4, + "p99" : 8.269999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 852.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 813.0, + "p50" : 815.0, + "p75" : 852.0, + "p90" : 852.0, + "p95" : 852.0, + "p99" : 852.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.08345512499999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.053787999999999996, + "p50" : 0.05557474899999999, + "p75" : 0.08345512499999999, + "p90" : 0.08345512499999999, + "p95" : 0.08345512499999999, + "p99" : 0.08345512499999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4832999999999998E-5, + "max" : 0.0015556259999999998, + "p01" : 2.4832999999999998E-5, + "p05" : 2.4832999999999998E-5, + "p10" : 2.4832999999999998E-5, + "p25" : 8.952919999999999E-4, + "p50" : 0.0010368349999999998, + "p75" : 0.0015556259999999998, + "p90" : 0.0015556259999999998, + "p95" : 0.0015556259999999998, + "p99" : 0.0015556259999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "192.82ms", + "finishCalls" : 13, + "finishWall" : "113.30us", + "finishCpu" : "108.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2080, 400, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 400, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 15, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "637", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "58.75us", + "addInputCpu" : "63.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "10.16kB", + "inputPositions" : 400, + "sumSquaredInputPositions" : 53366.0, + "getOutputCalls" : 23, + "getOutputWall" : "421.50us", + "getOutputCpu" : "411.00us", + "outputDataSize" : "7.81kB", + "outputPositions" : 400, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 2.7699999999999996E-4, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 1.5999999999999999E-4, + "p50" : 2.3099999999999998E-4, + "p75" : 2.7699999999999996E-4, + "p90" : 2.7699999999999996E-4, + "p95" : 2.7699999999999996E-4, + "p99" : 2.7699999999999996E-4, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5582999999999996E-5, + "max" : 2.74626E-4, + "p01" : 1.5582999999999996E-5, + "p05" : 1.5582999999999996E-5, + "p10" : 1.5582999999999996E-5, + "p25" : 1.68666E-4, + "p50" : 2.2720599999999998E-4, + "p75" : 2.74626E-4, + "p90" : 2.74626E-4, + "p95" : 2.74626E-4, + "p99" : 2.74626E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 138.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 131.0, + "p50" : 131.0, + "p75" : 138.0, + "p90" : 138.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 4 + }, + "Projection CPU time" : { + "duration" : "75130.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 10, + "finishWall" : "205.83us", + "finishCpu" : "208.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.09kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "4.09kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 3, + "planNodeId" : "2723", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "26.66ms", + "addInputCpu" : "6.13ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "7.81kB", + "inputPositions" : 400, + "sumSquaredInputPositions" : 53366.0, + "getOutputCalls" : 29, + "getOutputWall" : "8.65ms", + "getOutputCpu" : "2.98ms", + "outputDataSize" : "6.61kB", + "outputPositions" : 376, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 138.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 131.0, + "p50" : 131.0, + "p75" : 138.0, + "p90" : 138.0, + "p95" : 138.0, + "p99" : 138.0, + "total" : 4 + }, + "Group by hash update CPU time" : { + "duration" : "1019084.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 7.249999999999999E-6, + "max" : 0.012028499999999998, + "p01" : 7.249999999999999E-6, + "p05" : 7.249999999999999E-6, + "p10" : 7.249999999999999E-6, + "p25" : 0.011455833999999998, + "p50" : 0.011859874999999999, + "p75" : 0.012028499999999998, + "p90" : 0.012028499999999998, + "p95" : 0.012028499999999998, + "p99" : 0.012028499999999998, + "total" : 4 + }, + "Accumulator update CPU time" : { + "duration" : "5444792.00ns" + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 0.0037779999999999992, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 0.0026459999999999995, + "p50" : 0.0027239999999999994, + "p75" : 0.0037779999999999992, + "p90" : 0.0037779999999999992, + "p95" : 0.0037779999999999992, + "p99" : 0.0037779999999999992, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 13, + "finishWall" : "41.54us", + "finishCpu" : "47.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 4, + "planNodeId" : "2723", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "123.13us", + "addInputCpu" : "127.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "6.61kB", + "inputPositions" : 376, + "sumSquaredInputPositions" : 47214.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "6.61kB", + "outputPositions" : 376, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.125E-6, + "max" : 8.299999999999999E-4, + "p01" : 8.125E-6, + "p05" : 8.125E-6, + "p10" : 8.125E-6, + "p25" : 2.70625E-4, + "p50" : 3.4979099999999996E-4, + "p75" : 8.299999999999999E-4, + "p90" : 8.299999999999999E-4, + "p95" : 8.299999999999999E-4, + "p99" : 8.299999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 131.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 118.0, + "p50" : 127.0, + "p75" : 131.0, + "p90" : 131.0, + "p95" : 131.0, + "p99" : 131.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 3.3099999999999997E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 2.47E-4, + "p50" : 3.2599999999999996E-4, + "p75" : 3.3099999999999997E-4, + "p90" : 3.3099999999999997E-4, + "p95" : 3.3099999999999997E-4, + "p99" : 3.3099999999999997E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "1.34ms", + "finishCpu" : "785.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 8768 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.12.1.0", + "taskInstanceId" : 4095914589313968391, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.12.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "11.37kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "515.36kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.056345Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 647, + "totalPagesSent" : 9, + "utilization" : { + "min" : 0.0, + "max" : 4.355907440185547E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 6.182026264933923E-6, + "total" : 906770875 + } + }, + "noMoreSplits" : [ "1995", "1994" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.146746Z", + "firstStartTime" : "2026-03-30T07:59:03.875627Z", + "lastStartTime" : "2026-03-30T07:59:03.925249Z", + "lastEndTime" : "2026-03-30T07:59:04.049Z", + "endTime" : "2026-03-30T07:59:04.059223Z", + "elapsedTime" : "904.32ms", + "queuedTime" : "720.72ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "515.36kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "59.28ms", + "totalCpuTime" : "23.28ms", + "totalBlockedTime" : "1.53s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "69.86kB", + "internalNetworkInputPositions" : 2969, + "processedInputDataSize" : "78.13kB", + "processedInputPositions" : 2969, + "inputBlockedTime" : "846.14ms", + "outputDataSize" : "11.37kB", + "outputPositions" : 647, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.875626Z", + "lastStartTime" : "2026-03-30T07:59:03.891641Z", + "lastEndTime" : "2026-03-30T07:59:04.030537Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.658951166E9, + "p01" : 6.55066583E8, + "p05" : 6.55066583E8, + "p10" : 6.55066583E8, + "p25" : 6.64890208E8, + "p50" : 6.67917083E8, + "p75" : 6.71077292E8, + "p90" : 6.71077292E8, + "p95" : 6.71077292E8, + "p99" : 6.71077292E8, + "min" : 6.55066583E8, + "max" : 6.71077292E8, + "avg" : 6.647377915E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.238933125E9, + "p01" : 8.09585875E8, + "p05" : 8.09585875E8, + "p10" : 8.09585875E8, + "p25" : 8.09630125E8, + "p50" : 8.09743875E8, + "p75" : 8.0997325E8, + "p90" : 8.0997325E8, + "p95" : 8.0997325E8, + "p99" : 8.0997325E8, + "min" : 8.09585875E8, + "max" : 8.0997325E8, + "avg" : 8.0973328125E8 + }, + "totalScheduledTime" : "1.74ms", + "totalCpuTime" : "1.16ms", + "totalBlockedTime" : "551.64ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "282B", + "internalNetworkInputPositions" : 9, + "processedInputDataSize" : "81B", + "processedInputPositions" : 9, + "inputBlockedTime" : "551.64ms", + "outputDataSize" : "81B", + "outputPositions" : 9, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1995", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "282B", + "internalNetworkInputPositions" : 9, + "inputDataSize" : "81B", + "inputPositions" : 9, + "sumSquaredInputPositions" : 35.0, + "getOutputCalls" : 6, + "getOutputWall" : "198.88us", + "getOutputCpu" : "191.00us", + "outputDataSize" : "81B", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.1699999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.6999999999999996E-5, + "p50" : 4.699999999999999E-5, + "p75" : 1.1699999999999998E-4, + "p90" : 1.1699999999999998E-4, + "p95" : 1.1699999999999998E-4, + "p99" : 1.1699999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 3.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.132600958, + "max" : 0.14592858399999997, + "p01" : 0.132600958, + "p05" : 0.132600958, + "p10" : 0.132600958, + "p25" : 0.13500449999999997, + "p50" : 0.138107458, + "p75" : 0.14592858399999997, + "p90" : 0.14592858399999997, + "p95" : 0.14592858399999997, + "p99" : 0.14592858399999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.2025099999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 2.8749999999999997E-5, + "p50" : 4.987499999999999E-5, + "p75" : 1.2025099999999998E-4, + "p90" : 1.2025099999999998E-4, + "p95" : 1.2025099999999998E-4, + "p99" : 1.2025099999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "551.64ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 328, + "averageBytesPerRequest" : 32, + "successfulRequestsCount" : 32, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 143.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 140.0, + "p90" : 143.0, + "p95" : 143.0, + "p99" : 143.0, + "total" : 8 + } + } + }, { + "stageId" : 12, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 6, + "addInputWall" : "429.25us", + "addInputCpu" : "413.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "81B", + "inputPositions" : 9, + "sumSquaredInputPositions" : 35.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "81B", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 7.999999999999999E-5, + "max" : 2.5299999999999997E-4, + "p01" : 7.999999999999999E-5, + "p05" : 7.999999999999999E-5, + "p10" : 7.999999999999999E-5, + "p25" : 8.699999999999999E-5, + "p50" : 1.0499999999999999E-4, + "p75" : 2.5299999999999997E-4, + "p90" : 2.5299999999999997E-4, + "p95" : 2.5299999999999997E-4, + "p99" : 2.5299999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0, + "p50" : 3.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.225E-5, + "max" : 2.6229099999999995E-4, + "p01" : 8.225E-5, + "p05" : 8.225E-5, + "p10" : 8.225E-5, + "p25" : 8.824999999999999E-5, + "p50" : 1.1704199999999998E-4, + "p75" : 2.6229099999999995E-4, + "p90" : 2.6229099999999995E-4, + "p95" : 2.6229099999999995E-4, + "p99" : 2.6229099999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "120.58us", + "finishCpu" : "112.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.895751Z", + "lastStartTime" : "2026-03-30T07:59:03.905727Z", + "lastEndTime" : "2026-03-30T07:59:04.047699Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.719778708E9, + "p01" : 6.75186166E8, + "p05" : 6.75186166E8, + "p10" : 6.75186166E8, + "p25" : 6.77641208E8, + "p50" : 6.82090875E8, + "p75" : 6.84860459E8, + "p90" : 6.84860459E8, + "p95" : 6.84860459E8, + "p99" : 6.84860459E8, + "min" : 6.75186166E8, + "max" : 6.84860459E8, + "avg" : 6.79944677E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.307019916E9, + "p01" : 8.26655625E8, + "p05" : 8.26655625E8, + "p10" : 8.26655625E8, + "p25" : 8.26665E8, + "p50" : 8.26832583E8, + "p75" : 8.26866708E8, + "p90" : 8.26866708E8, + "p95" : 8.26866708E8, + "p99" : 8.26866708E8, + "min" : 8.26655625E8, + "max" : 8.26866708E8, + "avg" : 8.26754979E8 + }, + "totalScheduledTime" : "2.17ms", + "totalCpuTime" : "1.36ms", + "totalBlockedTime" : "569.40ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "81B", + "processedInputPositions" : 9, + "inputBlockedTime" : "507.03ms", + "outputDataSize" : "81B", + "outputPositions" : 9, + "outputBlockedTime" : "62.39ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2569", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "81B", + "inputPositions" : 9, + "sumSquaredInputPositions" : 27.0, + "getOutputCalls" : 8, + "getOutputWall" : "344.83us", + "getOutputCpu" : "277.00us", + "outputDataSize" : "81B", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4499999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0999999999999995E-5, + "p50" : 1.0099999999999999E-4, + "p75" : 1.4499999999999997E-4, + "p90" : 1.4499999999999997E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.12052233299999998, + "max" : 0.13026149899999998, + "p01" : 0.12052233299999998, + "p05" : 0.12052233299999998, + "p10" : 0.12052233299999998, + "p25" : 0.12756987499999997, + "p50" : 0.12867887499999997, + "p75" : 0.13026149899999998, + "p90" : 0.13026149899999998, + "p95" : 0.13026149899999998, + "p99" : 0.13026149899999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.0404099999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.408299999999999E-5, + "p50" : 1.0670899999999998E-4, + "p75" : 2.0404099999999997E-4, + "p90" : 2.0404099999999997E-4, + "p95" : 2.0404099999999997E-4, + "p99" : 2.0404099999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "507.03ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 8, + "addInputWall" : "127.04us", + "addInputCpu" : "105.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "81B", + "inputPositions" : 9, + "sumSquaredInputPositions" : 27.0, + "getOutputCalls" : 18, + "getOutputWall" : "93.75us", + "getOutputCpu" : "99.00us", + "outputDataSize" : "81B", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.5999999999999994E-5, + "max" : 2.7199999999999994E-4, + "p01" : 3.5999999999999994E-5, + "p05" : 3.5999999999999994E-5, + "p10" : 3.5999999999999994E-5, + "p25" : 9.499999999999999E-5, + "p50" : 1.7199999999999998E-4, + "p75" : 2.7199999999999994E-4, + "p90" : 2.7199999999999994E-4, + "p95" : 2.7199999999999994E-4, + "p99" : 2.7199999999999994E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.862599999999999E-5, + "max" : 5.779599999999999E-4, + "p01" : 3.862599999999999E-5, + "p05" : 3.862599999999999E-5, + "p10" : 3.862599999999999E-5, + "p25" : 2.8295999999999996E-4, + "p50" : 3.9862499999999995E-4, + "p75" : 5.779599999999999E-4, + "p90" : 5.779599999999999E-4, + "p95" : 5.779599999999999E-4, + "p99" : 5.779599999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "1.08ms", + "finishCpu" : "371.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1721", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 8, + "addInputWall" : "97.33us", + "addInputCpu" : "97.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "81B", + "inputPositions" : 9, + "sumSquaredInputPositions" : 27.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "81B", + "outputPositions" : 9, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.199999999999999E-5, + "max" : 2.0699999999999996E-4, + "p01" : 4.199999999999999E-5, + "p05" : 4.199999999999999E-5, + "p10" : 4.199999999999999E-5, + "p25" : 5.4999999999999995E-5, + "p50" : 8.499999999999999E-5, + "p75" : 2.0699999999999996E-4, + "p90" : 2.0699999999999996E-4, + "p95" : 2.0699999999999996E-4, + "p99" : 2.0699999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.015295291999999999, + "max" : 0.015810499999999998, + "p01" : 0.015295291999999999, + "p05" : 0.015295291999999999, + "p10" : 0.015295291999999999, + "p25" : 0.015582833999999999, + "p50" : 0.015704874999999997, + "p75" : 0.015810499999999998, + "p90" : 0.015810499999999998, + "p95" : 0.015810499999999998, + "p99" : 0.015810499999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.108299999999999E-5, + "max" : 2.1158199999999998E-4, + "p01" : 4.108299999999999E-5, + "p05" : 4.108299999999999E-5, + "p10" : 4.108299999999999E-5, + "p25" : 5.516699999999999E-5, + "p50" : 8.291499999999999E-5, + "p75" : 2.1158199999999998E-4, + "p90" : 2.1158199999999998E-4, + "p95" : 2.1158199999999998E-4, + "p99" : 2.1158199999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "62.39ms", + "finishCalls" : 8, + "finishWall" : "293.42us", + "finishCpu" : "292.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.908784Z", + "lastStartTime" : "2026-03-30T07:59:03.925249Z", + "lastEndTime" : "2026-03-30T07:59:04.049888Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.784436875E9, + "p01" : 6.87914625E8, + "p05" : 6.87914625E8, + "p10" : 6.87914625E8, + "p25" : 6.90708375E8, + "p50" : 7.01438792E8, + "p75" : 7.04375083E8, + "p90" : 7.04375083E8, + "p95" : 7.04375083E8, + "p99" : 7.04375083E8, + "min" : 6.87914625E8, + "max" : 7.04375083E8, + "avg" : 6.9610921875E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.261521125E9, + "p01" : 7.74504083E8, + "p05" : 7.74504083E8, + "p10" : 7.74504083E8, + "p25" : 8.28989125E8, + "p50" : 8.29012375E8, + "p75" : 8.29015542E8, + "p90" : 8.29015542E8, + "p95" : 8.29015542E8, + "p99" : 8.29015542E8, + "min" : 7.74504083E8, + "max" : 8.29015542E8, + "avg" : 8.1538028125E8 + }, + "totalScheduledTime" : "55.37ms", + "totalCpuTime" : "20.76ms", + "totalBlockedTime" : "412.46ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "69.59kB", + "internalNetworkInputPositions" : 2960, + "processedInputDataSize" : "78.05kB", + "processedInputPositions" : 2960, + "inputBlockedTime" : "294.50ms", + "outputDataSize" : "11.37kB", + "outputPositions" : 647, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1994", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "69.59kB", + "internalNetworkInputPositions" : 2960, + "inputDataSize" : "78.05kB", + "inputPositions" : 2960, + "sumSquaredInputPositions" : 2922302.0, + "getOutputCalls" : 3, + "getOutputWall" : "453.88us", + "getOutputCpu" : "362.00us", + "outputDataSize" : "78.05kB", + "outputPositions" : 2960, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4799999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.0399999999999998E-4, + "p50" : 1.0999999999999999E-4, + "p75" : 1.4799999999999997E-4, + "p90" : 1.4799999999999997E-4, + "p95" : 1.4799999999999997E-4, + "p99" : 1.4799999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1021.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 969.0, + "p50" : 970.0, + "p75" : 1021.0, + "p90" : 1021.0, + "p95" : 1021.0, + "p99" : 1021.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.06855529199999999, + "max" : 0.08432829099999999, + "p01" : 0.06855529199999999, + "p05" : 0.06855529199999999, + "p10" : 0.06855529199999999, + "p25" : 0.06898158299999999, + "p50" : 0.072638292, + "p75" : 0.08432829099999999, + "p90" : 0.08432829099999999, + "p95" : 0.08432829099999999, + "p99" : 0.08432829099999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.9649999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 1.2204199999999998E-4, + "p50" : 1.35333E-4, + "p75" : 1.9649999999999998E-4, + "p90" : 1.9649999999999998E-4, + "p95" : 1.9649999999999998E-4, + "p99" : 1.9649999999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "294.50ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 46808, + "averageBytesPerRequest" : 11873, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 6.0, + "max" : 75.0, + "p01" : 6.0, + "p05" : 6.0, + "p10" : 6.0, + "p25" : 7.0, + "p50" : 24.0, + "p75" : 74.0, + "p90" : 75.0, + "p95" : 75.0, + "p99" : 75.0, + "total" : 6 + } + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1721", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "11.54us", + "addInputCpu" : "25.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "78.05kB", + "inputPositions" : 2960, + "sumSquaredInputPositions" : 2922302.0, + "getOutputCalls" : 14, + "getOutputWall" : "10.92ms", + "getOutputCpu" : "6.21ms", + "outputDataSize" : "18.28kB", + "outputPositions" : 720, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.0999999999999994E-5, + "max" : 0.0022709999999999996, + "p01" : 4.0999999999999994E-5, + "p05" : 4.0999999999999994E-5, + "p10" : 4.0999999999999994E-5, + "p25" : 0.0018399999999999998, + "p50" : 0.0022089999999999996, + "p75" : 0.0022709999999999996, + "p90" : 0.0022709999999999996, + "p95" : 0.0022709999999999996, + "p99" : 0.0022709999999999996, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1021.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 969.0, + "p50" : 970.0, + "p75" : 1021.0, + "p90" : 1021.0, + "p95" : 1021.0, + "p99" : 1021.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.09428079099999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.043154833, + "p50" : 0.046274290999999995, + "p75" : 0.09428079099999999, + "p90" : 0.09428079099999999, + "p95" : 0.09428079099999999, + "p99" : 0.09428079099999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.820899999999999E-5, + "max" : 0.004159209, + "p01" : 4.820899999999999E-5, + "p05" : 4.820899999999999E-5, + "p10" : 4.820899999999999E-5, + "p25" : 0.0031466259999999996, + "p50" : 0.0037345829999999997, + "p75" : 0.004159209, + "p90" : 0.004159209, + "p95" : 0.004159209, + "p99" : 0.004159209, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "183.71ms", + "finishCalls" : 12, + "finishWall" : "158.92us", + "finishCpu" : "126.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2240, 720, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 720, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 27, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "637", + "operatorType" : "FilterAndProjectOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "8.58us", + "addInputCpu" : "11.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "18.28kB", + "inputPositions" : 720, + "sumSquaredInputPositions" : 172926.0, + "getOutputCalls" : 22, + "getOutputWall" : "1.93ms", + "getOutputCpu" : "807.00us", + "outputDataSize" : "14.06kB", + "outputPositions" : 720, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 6.499999999999999E-4, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 1.5699999999999997E-4, + "p50" : 1.8799999999999996E-4, + "p75" : 6.499999999999999E-4, + "p90" : 6.499999999999999E-4, + "p95" : 6.499999999999999E-4, + "p99" : 6.499999999999999E-4, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3540999999999998E-5, + "max" : 0.0012689569999999998, + "p01" : 1.3540999999999998E-5, + "p05" : 1.3540999999999998E-5, + "p10" : 1.3540999999999998E-5, + "p25" : 1.9562499999999997E-4, + "p50" : 6.513329999999999E-4, + "p75" : 0.0012689569999999998, + "p90" : 0.0012689569999999998, + "p95" : 0.0012689569999999998, + "p99" : 0.0012689569999999998, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 249.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 234.0, + "p50" : 237.0, + "p75" : 249.0, + "p90" : 249.0, + "p95" : 249.0, + "p99" : 249.0, + "total" : 4 + }, + "Projection CPU time" : { + "duration" : "316291.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 10, + "finishWall" : "189.67us", + "finishCpu" : "191.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "7.67kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "7.67kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 3, + "planNodeId" : "2723", + "operatorType" : "HashAggregationOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "31.84ms", + "addInputCpu" : "9.24ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "14.06kB", + "inputPositions" : 720, + "sumSquaredInputPositions" : 172926.0, + "getOutputCalls" : 28, + "getOutputWall" : "8.76ms", + "getOutputCpu" : "2.74ms", + "outputDataSize" : "11.37kB", + "outputPositions" : 647, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 249.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 234.0, + "p50" : 237.0, + "p75" : 249.0, + "p90" : 249.0, + "p95" : 249.0, + "p99" : 249.0, + "total" : 4 + }, + "Group by hash update CPU time" : { + "duration" : "642417.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.000999999999999E-6, + "max" : 0.013733875999999997, + "p01" : 6.000999999999999E-6, + "p05" : 6.000999999999999E-6, + "p10" : 6.000999999999999E-6, + "p25" : 0.013207332999999998, + "p50" : 0.013701541999999999, + "p75" : 0.013733875999999997, + "p90" : 0.013733875999999997, + "p95" : 0.013733875999999997, + "p99" : 0.013733875999999997, + "total" : 4 + }, + "Accumulator update CPU time" : { + "duration" : "5854625.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 0.005127, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 0.0028959999999999997, + "p50" : 0.004011, + "p75" : 0.005127, + "p90" : 0.005127, + "p95" : 0.005127, + "p99" : 0.005127, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 13, + "finishWall" : "45.08us", + "finishCpu" : "53.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "305.27kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "305.27kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 12, + "pipelineId" : 2, + "operatorId" : 4, + "planNodeId" : "2723", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "116.00us", + "addInputCpu" : "118.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11.37kB", + "inputPositions" : 647, + "sumSquaredInputPositions" : 139609.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "11.37kB", + "outputPositions" : 647, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.082999999999999E-6, + "max" : 3.14667E-4, + "p01" : 8.082999999999999E-6, + "p05" : 8.082999999999999E-6, + "p10" : 8.082999999999999E-6, + "p25" : 1.8587499999999998E-4, + "p50" : 2.0129199999999997E-4, + "p75" : 3.14667E-4, + "p90" : 3.14667E-4, + "p95" : 3.14667E-4, + "p99" : 3.14667E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 222.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 210.0, + "p50" : 215.0, + "p75" : 222.0, + "p90" : 222.0, + "p95" : 222.0, + "p99" : 222.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 3.0E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 1.8399999999999997E-4, + "p50" : 2.0199999999999998E-4, + "p75" : 3.0E-4, + "p90" : 3.0E-4, + "p95" : 3.0E-4, + "p99" : 3.0E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "593.92us", + "finishCpu" : "576.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 14616 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.13", "20260330_075902_00004_iggau.14" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.19", + "state" : "FINISHED", + "plan" : { + "id" : "19", + "root" : { + "@type" : "aggregation", + "id" : "1019", + "source" : { + "@type" : "values", + "id" : "1018", + "outputSymbols" : [ { + "type" : "double", + "name" : "null" + }, { + "type" : "boolean", + "name" : "null_39" + } ], + "rowCount" : 1, + "rows" : [ { + "@type" : "row", + "items" : [ { + "@type" : "constant", + "type" : "double", + "valueAsBlock" : "CgAAAExPTkdfQVJSQVkBAAAAAYAAAAAA" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAYAAAAAA" + } ], + "type" : "row(double,boolean)" + } ] + }, + "aggregations" : { + "6|double|min_40" : { + "resolvedFunction" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "min" + }, + "returnType" : "double", + "argumentTypes" : [ "double" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "min(t):t", + "functionKind" : "AGGREGATE", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : true, + "argumentNullable" : [ false ] + }, + "typeDependencies" : { + "double" : "double" + }, + "functionDependencies" : [ { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$operator$comparison_unordered_last" + }, + "returnType" : "integer", + "argumentTypes" : [ "double", "double" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$operator$comparison_unordered_last(t,t):integer", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + } ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "double", + "name" : "null" + } ], + "distinct" : false, + "mask" : { + "type" : "boolean", + "name" : "null_39" + } + } + }, + "groupingSets" : { + "groupingKeys" : [ ], + "groupingSetCount" : 1, + "globalGroupingSets" : [ 0 ] + }, + "preGroupedSymbols" : [ ], + "step" : "SINGLE", + "isInputReducingAggregation" : false + }, + "symbols" : [ { + "type" : "double", + "name" : "min_40" + }, { + "type" : "double", + "name" : "null" + }, { + "type" : "boolean", + "name" : "null_39" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "BROADCAST" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "double", + "name" : "min_40" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1019" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { } + }, + "1018" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "7|boolean|null_39" : { + "lowValue" : "NaN", + "highValue" : "NaN", + "nullsFraction" : 1.0, + "averageRowSize" : 0.0, + "distinctValuesCount" : 0.0 + }, + "6|double|null" : { + "lowValue" : "NaN", + "highValue" : "NaN", + "nullsFraction" : 1.0, + "averageRowSize" : 0.0, + "distinctValuesCount" : 0.0 + } + } + } + }, + "costs" : { + "1019" : { + "cpuCost" : 2.0, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 2.0, + "maxMemory" : 9.0, + "networkCost" : 0.0 + } + }, + "1018" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1019\",\n \"name\" : \"Aggregate\",\n \"descriptor\" : {\n \"type\" : \"\",\n \"keys\" : \"\"\n },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"min_40\"\n } ],\n \"details\" : [ \"min_40 := min(null) (mask = null_39)\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1018\",\n \"name\" : \"Values\",\n \"descriptor\" : { },\n \"outputs\" : [ {\n \"type\" : \"double\",\n \"name\" : \"null\"\n }, {\n \"type\" : \"boolean\",\n \"name\" : \"null_39\"\n } ],\n \"details\" : [ \"(null::double, null::boolean)\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "double" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.138263Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 1, + "runningTasks" : 0, + "completedTasks" : 1, + "failedTasks" : 0, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "cumulativeUserMemory" : 35752.147183999994, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "104B", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "501.21us", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "500.00us", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "11B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 1, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 768986583, + "min" : 0.0, + "max" : 4.9591064453125E-7, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 4.9591064453125E-7 + }, + "outputDataSize" : "9B", + "failedOutputDataSize" : "0B", + "outputPositions" : 1, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 19, + "tasks" : 1, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1018", + "operatorType" : "ValuesOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.46us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "11B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 9.999999999999999E-6, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1458999999999998E-5, + "max" : 1.1458999999999998E-5, + "p01" : 1.1458999999999998E-5, + "p05" : 1.1458999999999998E-5, + "p10" : 1.1458999999999998E-5, + "p25" : 1.1458999999999998E-5, + "p50" : 1.1458999999999998E-5, + "p75" : 1.1458999999999998E-5, + "p90" : 1.1458999999999998E-5, + "p95" : 1.1458999999999998E-5, + "p99" : 1.1458999999999998E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "1019", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "142.58us", + "addInputCpu" : "142.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 28 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4458399999999998E-4, + "max" : 1.4458399999999998E-4, + "p01" : 1.4458399999999998E-4, + "p05" : 1.4458399999999998E-4, + "p10" : 1.4458399999999998E-4, + "p25" : 1.4458399999999998E-4, + "p50" : 1.4458399999999998E-4, + "p75" : 1.4458399999999998E-4, + "p90" : 1.4458399999999998E-4, + "p95" : 1.4458399999999998E-4, + "p99" : 1.4458399999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 1.4499999999999997E-4, + "max" : 1.4499999999999997E-4, + "p01" : 1.4499999999999997E-4, + "p05" : 1.4499999999999997E-4, + "p10" : 1.4499999999999997E-4, + "p25" : 1.4499999999999997E-4, + "p50" : 1.4499999999999997E-4, + "p75" : 1.4499999999999997E-4, + "p90" : 1.4499999999999997E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 28 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "2.00us", + "finishCpu" : "3.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1019", + "operatorType" : "AggregationOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "130.04us", + "addInputCpu" : "130.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "178.21us", + "getOutputCpu" : "178.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Group by hash update CPU time" : { + "duration" : "0.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.1741599999999994E-4, + "max" : 3.1741599999999994E-4, + "p01" : 3.1741599999999994E-4, + "p05" : 3.1741599999999994E-4, + "p10" : 3.1741599999999994E-4, + "p25" : 3.1741599999999994E-4, + "p50" : 3.1741599999999994E-4, + "p75" : 3.1741599999999994E-4, + "p90" : 3.1741599999999994E-4, + "p95" : 3.1741599999999994E-4, + "p99" : 3.1741599999999994E-4, + "total" : 1 + }, + "Accumulator update CPU time" : { + "duration" : "0.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.18E-4, + "max" : 3.18E-4, + "p01" : 3.18E-4, + "p05" : 3.18E-4, + "p10" : 3.18E-4, + "p25" : 3.18E-4, + "p50" : 3.18E-4, + "p75" : 3.18E-4, + "p90" : 3.18E-4, + "p95" : 3.18E-4, + "p99" : 3.18E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "9.17us", + "finishCpu" : "10.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "24B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "24B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.19.0.0", + "taskInstanceId" : 7710677468387925042, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.19.0.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 4, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "9B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "104B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.914225Z", + "outputBuffers" : { + "type" : "BROADCAST", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 4.9591064453125E-7, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 4.9591064453125E-7, + "total" : 768986583 + } + }, + "noMoreSplits" : [ ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.139943Z", + "firstStartTime" : "2026-03-30T07:59:03.884858Z", + "lastStartTime" : "2026-03-30T07:59:03.884858Z", + "lastEndTime" : "2026-03-30T07:59:03.885Z", + "endTime" : "2026-03-30T07:59:03.921474Z", + "elapsedTime" : "764.99ms", + "queuedTime" : "727.51ms", + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "cumulativeUserMemory" : 35752.147183999994, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "104B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "501.21us", + "totalCpuTime" : "500.00us", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "11B", + "processedInputPositions" : 1, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.884858Z", + "lastStartTime" : "2026-03-30T07:59:03.884858Z", + "lastEndTime" : "2026-03-30T07:59:03.885359Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.57550125E8, + "p01" : 6.57550125E8, + "p05" : 6.57550125E8, + "p10" : 6.57550125E8, + "p25" : 6.57550125E8, + "p50" : 6.57550125E8, + "p75" : 6.57550125E8, + "p90" : 6.57550125E8, + "p95" : 6.57550125E8, + "p99" : 6.57550125E8, + "min" : 6.57550125E8, + "max" : 6.57550125E8, + "avg" : 6.57550125E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 6.58050583E8, + "p01" : 6.58050583E8, + "p05" : 6.58050583E8, + "p10" : 6.58050583E8, + "p25" : 6.58050583E8, + "p50" : 6.58050583E8, + "p75" : 6.58050583E8, + "p90" : 6.58050583E8, + "p95" : 6.58050583E8, + "p99" : 6.58050583E8, + "min" : 6.58050583E8, + "max" : 6.58050583E8, + "avg" : 6.58050583E8 + }, + "totalScheduledTime" : "501.21us", + "totalCpuTime" : "500.00us", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "11B", + "processedInputPositions" : 1, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1018", + "operatorType" : "ValuesOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.46us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "11B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 9.999999999999999E-6, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1458999999999998E-5, + "max" : 1.1458999999999998E-5, + "p01" : 1.1458999999999998E-5, + "p05" : 1.1458999999999998E-5, + "p10" : 1.1458999999999998E-5, + "p25" : 1.1458999999999998E-5, + "p50" : 1.1458999999999998E-5, + "p75" : 1.1458999999999998E-5, + "p90" : 1.1458999999999998E-5, + "p95" : 1.1458999999999998E-5, + "p99" : 1.1458999999999998E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1019", + "operatorType" : "AggregationOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "130.04us", + "addInputCpu" : "130.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "11B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "178.21us", + "getOutputCpu" : "178.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Group by hash update CPU time" : { + "duration" : "0.00ns" + }, + "Input rows processed without partial aggregation enabled" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.1741599999999994E-4, + "max" : 3.1741599999999994E-4, + "p01" : 3.1741599999999994E-4, + "p05" : 3.1741599999999994E-4, + "p10" : 3.1741599999999994E-4, + "p25" : 3.1741599999999994E-4, + "p50" : 3.1741599999999994E-4, + "p75" : 3.1741599999999994E-4, + "p90" : 3.1741599999999994E-4, + "p95" : 3.1741599999999994E-4, + "p99" : 3.1741599999999994E-4, + "total" : 1 + }, + "Accumulator update CPU time" : { + "duration" : "0.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.18E-4, + "max" : 3.18E-4, + "p01" : 3.18E-4, + "p05" : 3.18E-4, + "p10" : 3.18E-4, + "p25" : 3.18E-4, + "p50" : 3.18E-4, + "p75" : 3.18E-4, + "p90" : 3.18E-4, + "p95" : 3.18E-4, + "p99" : 3.18E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "9.17us", + "finishCpu" : "10.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "24B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "24B", + "spilledDataSize" : "0B" + }, { + "stageId" : 19, + "pipelineId" : 0, + "operatorId" : 2, + "planNodeId" : "1019", + "operatorType" : "TaskOutputOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "142.58us", + "addInputCpu" : "142.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 28 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4458399999999998E-4, + "max" : 1.4458399999999998E-4, + "p01" : 1.4458399999999998E-4, + "p05" : 1.4458399999999998E-4, + "p10" : 1.4458399999999998E-4, + "p25" : 1.4458399999999998E-4, + "p50" : 1.4458399999999998E-4, + "p75" : 1.4458399999999998E-4, + "p90" : 1.4458399999999998E-4, + "p95" : 1.4458399999999998E-4, + "p99" : 1.4458399999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "CPU time distribution (s)" : { + "min" : 1.4499999999999997E-4, + "max" : 1.4499999999999997E-4, + "p01" : 1.4499999999999997E-4, + "p05" : 1.4499999999999997E-4, + "p10" : 1.4499999999999997E-4, + "p25" : 1.4499999999999997E-4, + "p50" : 1.4499999999999997E-4, + "p75" : 1.4499999999999997E-4, + "p90" : 1.4499999999999997E-4, + "p95" : 1.4499999999999997E-4, + "p99" : 1.4499999999999997E-4, + "total" : 1 + }, + "exchangeSerializerInputBytes" : { + "total" : 28 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "2.00us", + "finishCpu" : "3.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "72B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "72B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.4", + "state" : "FINISHED", + "plan" : { + "id" : "4", + "root" : { + "@type" : "join", + "id" : "1698", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1982", + "sourceFragmentIds" : [ "5" ], + "outputs" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2563", + "type" : "GATHER", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1983", + "sourceFragmentIds" : [ "6" ], + "outputs" : [ { + "type" : "bigint", + "name" : "partkey" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "partkey" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "partkey_4" + }, + "right" : { + "type" : "bigint", + "name" : "partkey" + } + } ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + } ], + "rightOutputSymbols" : [ { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2207" : { + "type" : "bigint", + "name" : "partkey" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 144.0, + "outputSizeInBytes" : 4613.04, + "cpuCost" : 756954.0800000001, + "memoryCost" : 505.26, + "networkCost" : 216505.26 + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "bigint", + "name" : "partkey" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey_5" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + }, { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1698" : { + "outputRowCount" : 144.0, + "symbolStatistics" : { + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 36.0 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 144.0 + }, + "6|bigint|suppkey_5" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + } + } + }, + "1982" : { + "outputRowCount" : 8000.0, + "symbolStatistics" : { + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 7665.0 + }, + "6|bigint|suppkey_5" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + } + } + }, + "2563" : { + "outputRowCount" : 36.0, + "symbolStatistics" : { + "6|bigint|partkey" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 36.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + } + } + }, + "1983" : { + "outputRowCount" : 36.0, + "symbolStatistics" : { + "6|bigint|partkey" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 36.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + } + } + } + }, + "costs" : { + "1698" : { + "cpuCost" : 972448.8200000001, + "maxMemory" : 505.26, + "maxMemoryWhenOutputting" : 505.26, + "networkCost" : 216505.26, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 221118.30000000002, + "maxMemory" : 505.26, + "networkCost" : 0.0 + } + }, + "1982" : { + "cpuCost" : 648000.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 216000.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "networkCost" : 216000.0 + } + }, + "2563" : { + "cpuCost" : 103330.51999999999, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 505.26, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1983" : { + "cpuCost" : 103330.51999999999, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 505.26, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 505.26, + "maxMemory" : 0.0, + "networkCost" : 505.26 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1698\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(partkey_4 = partkey)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_5\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {partkey -> #df_2207}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1982\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[5]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_5\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2563\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"SINGLE\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1983\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[6]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "double", "bigint", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.152469Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 27, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 27, + "cumulativeUserMemory" : 3739610.329168, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "453.31kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "55.36ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "22.19ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "6.68s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "188.49kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 8004, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "211.05kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 8004, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "5.74s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2538519833, + "min" : 0.0, + "max" : 4.673004150390625E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "736B", + "failedOutputDataSize" : "0B", + "outputPositions" : 16, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 4, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1983", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "352B", + "internalNetworkInputPositions" : 4, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 4, + "getOutputWall" : "238.13us", + "getOutputCpu" : "219.00us", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 6.099999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.199999999999999E-5, + "p90" : 5.899999999999999E-5, + "p95" : 6.099999999999999E-5, + "p99" : 6.099999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.057828624999999995, + "max" : 0.7363123739999999, + "p01" : 0.057828624999999995, + "p05" : 0.057828624999999995, + "p10" : 0.06126708299999999, + "p25" : 0.06173058299999999, + "p50" : 0.06799045899999999, + "p75" : 0.7346089999999998, + "p90" : 0.7348338749999999, + "p95" : 0.7363123739999999, + "p99" : 0.7363123739999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.1125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.416699999999999E-5, + "p90" : 6.358399999999999E-5, + "p95" : 7.1125E-5, + "p99" : 7.1125E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.44s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 144, + "averageBytesPerRequest" : 24, + "successfulRequestsCount" : 52, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 720.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 9.0, + "p50" : 68.0, + "p75" : 700.0, + "p90" : 720.0, + "p95" : 720.0, + "p99" : 720.0, + "total" : 9 + } + } + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 6.0, + "getOutputCalls" : 4, + "getOutputWall" : "123.92us", + "getOutputCpu" : "107.00us", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.7999999999999996E-5, + "max" : 4.7999999999999994E-5, + "p01" : 2.7999999999999996E-5, + "p05" : 2.7999999999999996E-5, + "p10" : 2.7999999999999996E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 4.7999999999999994E-5, + "p90" : 4.7999999999999994E-5, + "p95" : 4.7999999999999994E-5, + "p99" : 4.7999999999999994E-5, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.05484678999999999, + "max" : 0.7392351249999999, + "p01" : 0.05484678999999999, + "p05" : 0.05484678999999999, + "p10" : 0.05484678999999999, + "p25" : 0.05484678999999999, + "p50" : 0.08089366699999999, + "p75" : 0.7392351249999999, + "p90" : 0.7392351249999999, + "p95" : 0.7392351249999999, + "p99" : 0.7392351249999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 3.095899999999999E-5, + "max" : 5.191799999999999E-5, + "p01" : 3.095899999999999E-5, + "p05" : 3.095899999999999E-5, + "p10" : 3.095899999999999E-5, + "p25" : 3.095899999999999E-5, + "p50" : 4.104199999999999E-5, + "p75" : 5.191799999999999E-5, + "p90" : 5.191799999999999E-5, + "p95" : 5.191799999999999E-5, + "p99" : 5.191799999999999E-5, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "874.98ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1982", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "188.14kB", + "internalNetworkInputPositions" : 8000, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7123840.0, + "getOutputCalls" : 9, + "getOutputWall" : "1.17ms", + "getOutputCpu" : "633.00us", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.3499999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.9999999999999996E-5, + "p50" : 5.2999999999999994E-5, + "p75" : 8.199999999999999E-5, + "p90" : 9.099999999999999E-5, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 972.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 832.0, + "p50" : 880.0, + "p75" : 900.0, + "p90" : 908.0, + "p95" : 972.0, + "p99" : 972.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.045249915999999994, + "max" : 0.7435253759999999, + "p01" : 0.045249915999999994, + "p05" : 0.045249915999999994, + "p10" : 0.06371895799999999, + "p25" : 0.07764058299999999, + "p50" : 0.09043091599999999, + "p75" : 0.09416045799999999, + "p90" : 0.7404093319999999, + "p95" : 0.7435253759999999, + "p99" : 0.7435253759999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.87833E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.2083E-5, + "p50" : 5.583299999999999E-5, + "p75" : 8.312499999999999E-5, + "p90" : 1.39167E-4, + "p95" : 5.87833E-4, + "p99" : 5.87833E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.30s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 42416, + "averageBytesPerRequest" : 10698, + "successfulRequestsCount" : 72, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 739.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 6.0, + "p25" : 11.0, + "p50" : 43.0, + "p75" : 709.0, + "p90" : 718.0, + "p95" : 739.0, + "p99" : 739.0, + "total" : 12 + } + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "132.12us", + "addInputCpu" : "138.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "736B", + "inputPositions" : 16, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "736B", + "outputPositions" : 16, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.749999999999998E-6, + "max" : 3.0554199999999996E-4, + "p01" : 9.749999999999998E-6, + "p05" : 9.749999999999998E-6, + "p10" : 9.957999999999999E-6, + "p25" : 1.0791999999999998E-5, + "p50" : 1.7832999999999997E-5, + "p75" : 2.0437499999999997E-4, + "p90" : 2.1337499999999997E-4, + "p95" : 3.0554199999999996E-4, + "p99" : 3.0554199999999996E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 3.09E-4, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.8999999999999998E-5, + "p75" : 2.0499999999999997E-4, + "p90" : 2.1199999999999998E-4, + "p95" : 3.09E-4, + "p99" : 3.09E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "926.67us", + "finishCpu" : "917.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1568 + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 9, + "addInputWall" : "21.71us", + "addInputCpu" : "32.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 7123840.0, + "getOutputCalls" : 45, + "getOutputWall" : "10.20ms", + "getOutputCpu" : "4.56ms", + "outputDataSize" : "736B", + "outputPositions" : 16, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0999999999999995E-5, + "max" : 9.289999999999998E-4, + "p01" : 2.0999999999999995E-5, + "p05" : 2.0999999999999995E-5, + "p10" : 3.0999999999999995E-5, + "p25" : 3.0799999999999995E-4, + "p50" : 4.429999999999999E-4, + "p75" : 6.399999999999999E-4, + "p90" : 8.999999999999999E-4, + "p95" : 9.289999999999998E-4, + "p99" : 9.289999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 972.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 832.0, + "p50" : 880.0, + "p75" : 900.0, + "p90" : 908.0, + "p95" : 972.0, + "p99" : 972.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.04249837499999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.018338959, + "p75" : 0.036063624999999995, + "p90" : 0.037008666999999995, + "p95" : 0.04249837499999999, + "p99" : 0.04249837499999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3333999999999997E-5, + "max" : 0.0025425409999999997, + "p01" : 2.3333999999999997E-5, + "p05" : 2.3333999999999997E-5, + "p10" : 3.7625999999999995E-5, + "p25" : 3.4129199999999993E-4, + "p50" : 7.846659999999998E-4, + "p75" : 0.0019749579999999997, + "p90" : 0.0024037509999999995, + "p95" : 0.0025425409999999997, + "p99" : 0.0025425409999999997, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "196.87ms", + "finishCalls" : 22, + "finishWall" : "821.55us", + "finishCpu" : "398.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 7984, 16, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 16, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 12, + "rleProbes" : 0, + "totalProbes" : 9 + } + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 3, + "addInputCalls" : 4, + "addInputWall" : "107.84us", + "addInputCpu" : "110.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 6.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0036009999999999996, + "max" : 0.004325999999999999, + "p01" : 0.0036009999999999996, + "p05" : 0.0036009999999999996, + "p10" : 0.0036009999999999996, + "p25" : 0.0036009999999999996, + "p50" : 0.0038359999999999996, + "p75" : 0.004325999999999999, + "p90" : 0.004325999999999999, + "p95" : 0.004325999999999999, + "p99" : 0.004325999999999999, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.003915375, + "max" : 0.024687583999999995, + "p01" : 0.003915375, + "p05" : 0.003915375, + "p10" : 0.003915375, + "p25" : 0.003915375, + "p50" : 0.0055704579999999995, + "p75" : 0.024687583999999995, + "p90" : 0.024687583999999995, + "p95" : 0.024687583999999995, + "p99" : 0.024687583999999995, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.006241333999999999, + "max" : 0.023815541999999995, + "p01" : 0.006241333999999999, + "p05" : 0.006241333999999999, + "p10" : 0.006241333999999999, + "p25" : 0.006241333999999999, + "p50" : 0.006840166999999999, + "p75" : 0.023815541999999995, + "p90" : 0.023815541999999995, + "p95" : 0.023815541999999995, + "p99" : 0.023815541999999995, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "34.18ms", + "finishCalls" : 7, + "finishWall" : "36.78ms", + "finishCpu" : "11.65ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 4, + "addInputWall" : "110.25us", + "addInputCpu" : "112.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 1.0399999999999998E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 4.2999999999999995E-5, + "p90" : 7.599999999999999E-5, + "p95" : 1.0399999999999998E-4, + "p99" : 1.0399999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.541999999999999E-6, + "max" : 1.2237499999999998E-4, + "p01" : 8.541999999999999E-6, + "p05" : 8.541999999999999E-6, + "p10" : 1.0374999999999998E-5, + "p25" : 1.2999999999999998E-5, + "p50" : 3.691699999999999E-5, + "p75" : 5.895899999999999E-5, + "p90" : 7.762499999999999E-5, + "p95" : 1.2237499999999998E-4, + "p99" : 1.2237499999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "373.42us", + "finishCpu" : "296.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 4, + "addInputWall" : "155.04us", + "addInputCpu" : "115.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 6.0, + "getOutputCalls" : 10, + "getOutputWall" : "105.01us", + "getOutputCpu" : "66.00us", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3399999999999998E-4, + "max" : 2.8199999999999997E-4, + "p01" : 1.3399999999999998E-4, + "p05" : 1.3399999999999998E-4, + "p10" : 1.3399999999999998E-4, + "p25" : 1.3399999999999998E-4, + "p50" : 1.7299999999999998E-4, + "p75" : 2.8199999999999997E-4, + "p90" : 2.8199999999999997E-4, + "p95" : 2.8199999999999997E-4, + "p99" : 2.8199999999999997E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5283299999999998E-4, + "max" : 3.6362299999999993E-4, + "p01" : 1.5283299999999998E-4, + "p05" : 1.5283299999999998E-4, + "p10" : 1.5283299999999998E-4, + "p25" : 1.5283299999999998E-4, + "p50" : 1.7462499999999998E-4, + "p75" : 3.6362299999999993E-4, + "p90" : 3.6362299999999993E-4, + "p95" : 3.6362299999999993E-4, + "p99" : 3.6362299999999993E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "431.04us", + "finishCpu" : "408.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.4.2.0", + "taskInstanceId" : -7280182267603070958, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.4.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "184B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "158.05kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.999988Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 4, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 2.2172927856445312E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 847703250 + } + }, + "noMoreSplits" : [ "1983", "1982" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.153205Z", + "firstStartTime" : "2026-03-30T07:59:03.883013Z", + "lastStartTime" : "2026-03-30T07:59:03.910181Z", + "lastEndTime" : "2026-03-30T07:59:03.995Z", + "endTime" : "2026-03-30T07:59:04.000489Z", + "elapsedTime" : "843.36ms", + "queuedTime" : "725.87ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "158.05kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "12.00ms", + "totalCpuTime" : "6.30ms", + "totalBlockedTime" : "644.41ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "62.36kB", + "internalNetworkInputPositions" : 2649, + "processedInputDataSize" : "69.85kB", + "processedInputPositions" : 2649, + "inputBlockedTime" : "519.33ms", + "outputDataSize" : "184B", + "outputPositions" : 4, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.883012Z", + "lastStartTime" : "2026-03-30T07:59:03.893315Z", + "lastEndTime" : "2026-03-30T07:59:03.981921Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.713054876E9, + "p01" : 6.72707625E8, + "p05" : 6.72707625E8, + "p10" : 6.72707625E8, + "p25" : 6.76783292E8, + "p50" : 6.80555542E8, + "p75" : 6.83008417E8, + "p90" : 6.83008417E8, + "p95" : 6.83008417E8, + "p99" : 6.83008417E8, + "min" : 6.72707625E8, + "max" : 6.83008417E8, + "avg" : 6.78263719E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.07810021E9, + "p01" : 7.67040209E8, + "p05" : 7.67040209E8, + "p10" : 7.67040209E8, + "p25" : 7.69298917E8, + "p50" : 7.7019475E8, + "p75" : 7.71566334E8, + "p90" : 7.71566334E8, + "p95" : 7.71566334E8, + "p99" : 7.71566334E8, + "min" : 7.67040209E8, + "max" : 7.71566334E8, + "avg" : 7.695250525E8 + }, + "totalScheduledTime" : "364.50us", + "totalCpuTime" : "342.00us", + "totalBlockedTime" : "255.32ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "88B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "28B", + "processedInputPositions" : 1, + "inputBlockedTime" : "255.35ms", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1983", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "88B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "71.13us", + "getOutputCpu" : "59.00us", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.899999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.899999999999999E-5, + "p90" : 5.899999999999999E-5, + "p95" : 5.899999999999999E-5, + "p99" : 5.899999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.06143474999999999, + "max" : 0.06799045899999999, + "p01" : 0.06143474999999999, + "p05" : 0.06143474999999999, + "p10" : 0.06143474999999999, + "p25" : 0.06173058299999999, + "p50" : 0.06419070799999999, + "p75" : 0.06799045899999999, + "p90" : 0.06799045899999999, + "p95" : 0.06799045899999999, + "p99" : 0.06799045899999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.1125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 7.1125E-5, + "p90" : 7.1125E-5, + "p95" : 7.1125E-5, + "p99" : 7.1125E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "255.35ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 144, + "averageBytesPerRequest" : 20, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 60.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 50.0, + "p50" : 57.0, + "p75" : 60.0, + "p90" : 60.0, + "p95" : 60.0, + "p99" : 60.0, + "total" : 4 + } + } + }, { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "32.92us", + "addInputCpu" : "34.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 3.7999999999999995E-5, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 8.999999999999999E-6, + "p50" : 2.2999999999999997E-5, + "p75" : 3.7999999999999995E-5, + "p90" : 3.7999999999999995E-5, + "p95" : 3.7999999999999995E-5, + "p99" : 3.7999999999999995E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.541999999999999E-6, + "max" : 3.691699999999999E-5, + "p01" : 8.541999999999999E-6, + "p05" : 8.541999999999999E-6, + "p10" : 8.541999999999999E-6, + "p25" : 1.0374999999999998E-5, + "p50" : 2.6374999999999997E-5, + "p75" : 3.691699999999999E-5, + "p90" : 3.691699999999999E-5, + "p95" : 3.691699999999999E-5, + "p99" : 3.691699999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "49.29us", + "finishCpu" : "44.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.896959Z", + "lastStartTime" : "2026-03-30T07:59:03.896959Z", + "lastEndTime" : "2026-03-30T07:59:03.995935Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.866515E8, + "p01" : 6.866515E8, + "p05" : 6.866515E8, + "p10" : 6.866515E8, + "p25" : 6.866515E8, + "p50" : 6.866515E8, + "p75" : 6.866515E8, + "p90" : 6.866515E8, + "p95" : 6.866515E8, + "p99" : 6.866515E8, + "min" : 6.866515E8, + "max" : 6.866515E8, + "avg" : 6.866515E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.85626333E8, + "p01" : 7.85626333E8, + "p05" : 7.85626333E8, + "p10" : 7.85626333E8, + "p25" : 7.85626333E8, + "p50" : 7.85626333E8, + "p75" : 7.85626333E8, + "p90" : 7.85626333E8, + "p95" : 7.85626333E8, + "p99" : 7.85626333E8, + "min" : 7.85626333E8, + "max" : 7.85626333E8, + "avg" : 7.85626333E8 + }, + "totalScheduledTime" : "7.04ms", + "totalCpuTime" : "4.01ms", + "totalBlockedTime" : "84.81ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "28B", + "processedInputPositions" : 1, + "inputBlockedTime" : "80.89ms", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "3.92ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "30.96us", + "getOutputCpu" : "28.00us", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.7999999999999996E-5, + "max" : 2.7999999999999996E-5, + "p01" : 2.7999999999999996E-5, + "p05" : 2.7999999999999996E-5, + "p10" : 2.7999999999999996E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 2.7999999999999996E-5, + "p75" : 2.7999999999999996E-5, + "p90" : 2.7999999999999996E-5, + "p95" : 2.7999999999999996E-5, + "p99" : 2.7999999999999996E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.08089366699999999, + "max" : 0.08089366699999999, + "p01" : 0.08089366699999999, + "p05" : 0.08089366699999999, + "p10" : 0.08089366699999999, + "p25" : 0.08089366699999999, + "p50" : 0.08089366699999999, + "p75" : 0.08089366699999999, + "p90" : 0.08089366699999999, + "p95" : 0.08089366699999999, + "p99" : 0.08089366699999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.095899999999999E-5, + "max" : 3.095899999999999E-5, + "p01" : 3.095899999999999E-5, + "p05" : 3.095899999999999E-5, + "p10" : 3.095899999999999E-5, + "p25" : 3.095899999999999E-5, + "p50" : 3.095899999999999E-5, + "p75" : 3.095899999999999E-5, + "p90" : 3.095899999999999E-5, + "p95" : 3.095899999999999E-5, + "p99" : 3.095899999999999E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "80.89ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "29.79us", + "addInputCpu" : "30.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 2, + "getOutputWall" : "9.21us", + "getOutputCpu" : "9.00us", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3399999999999998E-4, + "max" : 1.3399999999999998E-4, + "p01" : 1.3399999999999998E-4, + "p05" : 1.3399999999999998E-4, + "p10" : 1.3399999999999998E-4, + "p25" : 1.3399999999999998E-4, + "p50" : 1.3399999999999998E-4, + "p75" : 1.3399999999999998E-4, + "p90" : 1.3399999999999998E-4, + "p95" : 1.3399999999999998E-4, + "p99" : 1.3399999999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5283299999999998E-4, + "max" : 1.5283299999999998E-4, + "p01" : 1.5283299999999998E-4, + "p05" : 1.5283299999999998E-4, + "p10" : 1.5283299999999998E-4, + "p25" : 1.5283299999999998E-4, + "p50" : 1.5283299999999998E-4, + "p75" : 1.5283299999999998E-4, + "p90" : 1.5283299999999998E-4, + "p95" : 1.5283299999999998E-4, + "p99" : 1.5283299999999998E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "113.83us", + "finishCpu" : "95.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "27.38us", + "addInputCpu" : "28.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0038359999999999996, + "max" : 0.0038359999999999996, + "p01" : 0.0038359999999999996, + "p05" : 0.0038359999999999996, + "p10" : 0.0038359999999999996, + "p25" : 0.0038359999999999996, + "p50" : 0.0038359999999999996, + "p75" : 0.0038359999999999996, + "p90" : 0.0038359999999999996, + "p95" : 0.0038359999999999996, + "p99" : 0.0038359999999999996, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.003915375, + "max" : 0.003915375, + "p01" : 0.003915375, + "p05" : 0.003915375, + "p10" : 0.003915375, + "p25" : 0.003915375, + "p50" : 0.003915375, + "p75" : 0.003915375, + "p90" : 0.003915375, + "p95" : 0.003915375, + "p99" : 0.003915375, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.006840166999999999, + "max" : 0.006840166999999999, + "p01" : 0.006840166999999999, + "p05" : 0.006840166999999999, + "p10" : 0.006840166999999999, + "p25" : 0.006840166999999999, + "p50" : 0.006840166999999999, + "p75" : 0.006840166999999999, + "p90" : 0.006840166999999999, + "p95" : 0.006840166999999999, + "p99" : 0.006840166999999999, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.92ms", + "finishCalls" : 3, + "finishWall" : "6.81ms", + "finishCpu" : "3.81ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.899638Z", + "lastStartTime" : "2026-03-30T07:59:03.910181Z", + "lastEndTime" : "2026-03-30T07:59:03.994463Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.780560916E9, + "p01" : 6.893295E8, + "p05" : 6.893295E8, + "p10" : 6.893295E8, + "p25" : 6.94302583E8, + "p50" : 6.9705725E8, + "p75" : 6.99871583E8, + "p90" : 6.99871583E8, + "p95" : 6.99871583E8, + "p99" : 6.99871583E8, + "min" : 6.893295E8, + "max" : 6.99871583E8, + "avg" : 6.95140229E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.127934415E9, + "p01" : 7.78465333E8, + "p05" : 7.78465333E8, + "p10" : 7.78465333E8, + "p25" : 7.82594208E8, + "p50" : 7.82721958E8, + "p75" : 7.84152916E8, + "p90" : 7.84152916E8, + "p95" : 7.84152916E8, + "p99" : 7.84152916E8, + "min" : 7.78465333E8, + "max" : 7.84152916E8, + "avg" : 7.8198360375E8 + }, + "totalScheduledTime" : "4.59ms", + "totalCpuTime" : "1.94ms", + "totalBlockedTime" : "304.27ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "62.28kB", + "internalNetworkInputPositions" : 2648, + "processedInputDataSize" : "69.82kB", + "processedInputPositions" : 2648, + "inputBlockedTime" : "263.99ms", + "outputDataSize" : "184B", + "outputPositions" : 4, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1982", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "62.28kB", + "internalNetworkInputPositions" : 2648, + "inputDataSize" : "69.82kB", + "inputPositions" : 2648, + "sumSquaredInputPositions" : 2339232.0, + "getOutputCalls" : 3, + "getOutputWall" : "265.25us", + "getOutputCpu" : "245.00us", + "outputDataSize" : "69.82kB", + "outputPositions" : 2648, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.3499999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.899999999999999E-5, + "p50" : 6.099999999999999E-5, + "p75" : 1.3499999999999997E-4, + "p90" : 1.3499999999999997E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 908.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 848.0, + "p50" : 892.0, + "p75" : 908.0, + "p90" : 908.0, + "p95" : 908.0, + "p99" : 908.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.045249915999999994, + "max" : 0.07764058299999999, + "p01" : 0.045249915999999994, + "p05" : 0.045249915999999994, + "p10" : 0.045249915999999994, + "p25" : 0.06371895799999999, + "p50" : 0.077377833, + "p75" : 0.07764058299999999, + "p90" : 0.07764058299999999, + "p95" : 0.07764058299999999, + "p99" : 0.07764058299999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.39167E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.216699999999999E-5, + "p50" : 7.391699999999999E-5, + "p75" : 1.39167E-4, + "p90" : 1.39167E-4, + "p95" : 1.39167E-4, + "p99" : 1.39167E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "263.99ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 42416, + "averageBytesPerRequest" : 10625, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 80.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 44.0, + "p75" : 51.0, + "p90" : 80.0, + "p95" : 80.0, + "p99" : 80.0, + "total" : 6 + } + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "8.46us", + "addInputCpu" : "12.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.82kB", + "inputPositions" : 2648, + "sumSquaredInputPositions" : 2339232.0, + "getOutputCalls" : 12, + "getOutputWall" : "3.52ms", + "getOutputCpu" : "961.00us", + "outputDataSize" : "184B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.199999999999999E-5, + "max" : 4.429999999999999E-4, + "p01" : 4.199999999999999E-5, + "p05" : 4.199999999999999E-5, + "p10" : 4.199999999999999E-5, + "p25" : 3.1599999999999993E-4, + "p50" : 3.3499999999999996E-4, + "p75" : 4.429999999999999E-4, + "p90" : 4.429999999999999E-4, + "p95" : 4.429999999999999E-4, + "p99" : 4.429999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 908.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 848.0, + "p50" : 892.0, + "p75" : 908.0, + "p90" : 908.0, + "p95" : 908.0, + "p99" : 908.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.037008666999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.005558624999999999, + "p50" : 0.018338959, + "p75" : 0.037008666999999995, + "p90" : 0.037008666999999995, + "p95" : 0.037008666999999995, + "p99" : 0.037008666999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.624999999999999E-5, + "max" : 0.0025425409999999997, + "p01" : 4.624999999999999E-5, + "p05" : 4.624999999999999E-5, + "p10" : 4.624999999999999E-5, + "p25" : 3.44001E-4, + "p50" : 7.846659999999998E-4, + "p75" : 0.0025425409999999997, + "p90" : 0.0025425409999999997, + "p95" : 0.0025425409999999997, + "p99" : 0.0025425409999999997, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "60.91ms", + "finishCalls" : 10, + "finishWall" : "191.63us", + "finishCpu" : "163.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2644, 4, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 4, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 3, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "25.83us", + "addInputCpu" : "28.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "184B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "184B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0416999999999999E-5, + "max" : 2.0216699999999998E-4, + "p01" : 1.0416999999999999E-5, + "p05" : 1.0416999999999999E-5, + "p10" : 1.0416999999999999E-5, + "p25" : 1.1666999999999999E-5, + "p50" : 5.0583999999999995E-5, + "p75" : 2.0216699999999998E-4, + "p90" : 2.0216699999999998E-4, + "p95" : 2.0216699999999998E-4, + "p99" : 2.0216699999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 1.1999999999999999E-5, + "max" : 2.0399999999999997E-4, + "p01" : 1.1999999999999999E-5, + "p05" : 1.1999999999999999E-5, + "p10" : 1.1999999999999999E-5, + "p25" : 1.2999999999999998E-5, + "p50" : 3.899999999999999E-5, + "p75" : 2.0399999999999997E-4, + "p90" : 2.0399999999999997E-4, + "p95" : 2.0399999999999997E-4, + "p99" : 2.0399999999999997E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "249.00us", + "finishCpu" : "240.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 744 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.4.0.0", + "taskInstanceId" : 3909690722078429301, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.4.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "184B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "158.24kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.990469Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 4, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 2.86102294921875E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 839725875 + } + }, + "noMoreSplits" : [ "1983", "1982" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.154959Z", + "firstStartTime" : "2026-03-30T07:59:03.229502Z", + "lastStartTime" : "2026-03-30T07:59:03.234611Z", + "lastEndTime" : "2026-03-30T07:59:03.987Z", + "endTime" : "2026-03-30T07:59:03.991775Z", + "elapsedTime" : "835.81ms", + "queuedTime" : "73.51ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 3739610.329168, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "158.24kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "11.95ms", + "totalCpuTime" : "7.42ms", + "totalBlockedTime" : "5.34s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "62.83kB", + "internalNetworkInputPositions" : 2669, + "processedInputDataSize" : "70.38kB", + "processedInputPositions" : 2669, + "inputBlockedTime" : "4.60s", + "outputDataSize" : "184B", + "outputPositions" : 4, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.229501Z", + "lastStartTime" : "2026-03-30T07:59:03.230971Z", + "lastEndTime" : "2026-03-30T07:59:03.971001Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 1.2443875E7, + "p01" : 2240083.0, + "p05" : 2240083.0, + "p10" : 2240083.0, + "p25" : 2977583.0, + "p50" : 3517292.0, + "p75" : 3708917.0, + "p90" : 3708917.0, + "p95" : 3708917.0, + "p99" : 3708917.0, + "min" : 2240083.0, + "max" : 3708917.0, + "avg" : 3110968.75 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.974397457E9, + "p01" : 7.43502458E8, + "p05" : 7.43502458E8, + "p10" : 7.43502458E8, + "p25" : 7.4352425E8, + "p50" : 7.43638666E8, + "p75" : 7.43732083E8, + "p90" : 7.43732083E8, + "p95" : 7.43732083E8, + "p99" : 7.43732083E8, + "min" : 7.43502458E8, + "max" : 7.43732083E8, + "avg" : 7.4359936425E8 + }, + "totalScheduledTime" : "1.03ms", + "totalCpuTime" : "664.00us", + "totalBlockedTime" : "2.93s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "88B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "28B", + "processedInputPositions" : 1, + "inputBlockedTime" : "2.93s", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1983", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "88B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "49.25us", + "getOutputCpu" : "47.00us", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.699999999999999E-5, + "p90" : 4.699999999999999E-5, + "p95" : 4.699999999999999E-5, + "p99" : 4.699999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7216227909999999, + "max" : 0.7363123739999999, + "p01" : 0.7216227909999999, + "p05" : 0.7216227909999999, + "p10" : 0.7216227909999999, + "p25" : 0.7346089999999998, + "p50" : 0.7348338749999999, + "p75" : 0.7363123739999999, + "p90" : 0.7363123739999999, + "p95" : 0.7363123739999999, + "p99" : 0.7363123739999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.924999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.924999999999999E-5, + "p90" : 4.924999999999999E-5, + "p95" : 4.924999999999999E-5, + "p99" : 4.924999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.93s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 144, + "averageBytesPerRequest" : 20, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 720.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 700.0, + "p50" : 712.0, + "p75" : 720.0, + "p90" : 720.0, + "p95" : 720.0, + "p99" : 720.0, + "total" : 4 + } + } + }, { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "45.04us", + "addInputCpu" : "45.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.0999999999999998E-5, + "max" : 7.599999999999999E-5, + "p01" : 1.0999999999999998E-5, + "p05" : 1.0999999999999998E-5, + "p10" : 1.0999999999999998E-5, + "p25" : 1.0999999999999998E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 7.599999999999999E-5, + "p90" : 7.599999999999999E-5, + "p95" : 7.599999999999999E-5, + "p99" : 7.599999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2665999999999999E-5, + "max" : 7.762499999999999E-5, + "p01" : 1.2665999999999999E-5, + "p05" : 1.2665999999999999E-5, + "p10" : 1.2665999999999999E-5, + "p25" : 1.2999999999999998E-5, + "p50" : 4.2666999999999997E-5, + "p75" : 7.762499999999999E-5, + "p90" : 7.762499999999999E-5, + "p95" : 7.762499999999999E-5, + "p99" : 7.762499999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "100.92us", + "finishCpu" : "84.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.231351Z", + "lastStartTime" : "2026-03-30T07:59:03.231351Z", + "lastEndTime" : "2026-03-30T07:59:03.987568Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 4089292.0, + "p01" : 4089292.0, + "p05" : 4089292.0, + "p10" : 4089292.0, + "p25" : 4089292.0, + "p50" : 4089292.0, + "p75" : 4089292.0, + "p90" : 4089292.0, + "p95" : 4089292.0, + "p99" : 4089292.0, + "min" : 4089292.0, + "max" : 4089292.0, + "avg" : 4089292.0 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.60298708E8, + "p01" : 7.60298708E8, + "p05" : 7.60298708E8, + "p10" : 7.60298708E8, + "p25" : 7.60298708E8, + "p50" : 7.60298708E8, + "p75" : 7.60298708E8, + "p90" : 7.60298708E8, + "p95" : 7.60298708E8, + "p99" : 7.60298708E8, + "min" : 7.60298708E8, + "max" : 7.60298708E8, + "avg" : 7.60298708E8 + }, + "totalScheduledTime" : "6.48ms", + "totalCpuTime" : "3.83ms", + "totalBlockedTime" : "744.79ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "28B", + "processedInputPositions" : 1, + "inputBlockedTime" : "739.24ms", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "5.57ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "41.04us", + "getOutputCpu" : "31.00us", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 3.0999999999999995E-5, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.0999999999999995E-5, + "p25" : 3.0999999999999995E-5, + "p50" : 3.0999999999999995E-5, + "p75" : 3.0999999999999995E-5, + "p90" : 3.0999999999999995E-5, + "p95" : 3.0999999999999995E-5, + "p99" : 3.0999999999999995E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.7392351249999999, + "max" : 0.7392351249999999, + "p01" : 0.7392351249999999, + "p05" : 0.7392351249999999, + "p10" : 0.7392351249999999, + "p25" : 0.7392351249999999, + "p50" : 0.7392351249999999, + "p75" : 0.7392351249999999, + "p90" : 0.7392351249999999, + "p95" : 0.7392351249999999, + "p99" : 0.7392351249999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 4.104199999999999E-5, + "max" : 4.104199999999999E-5, + "p01" : 4.104199999999999E-5, + "p05" : 4.104199999999999E-5, + "p10" : 4.104199999999999E-5, + "p25" : 4.104199999999999E-5, + "p50" : 4.104199999999999E-5, + "p75" : 4.104199999999999E-5, + "p90" : 4.104199999999999E-5, + "p95" : 4.104199999999999E-5, + "p99" : 4.104199999999999E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "739.24ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "16.79us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 3, + "getOutputWall" : "17.42us", + "getOutputCpu" : "17.00us", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.7299999999999998E-4, + "max" : 1.7299999999999998E-4, + "p01" : 1.7299999999999998E-4, + "p05" : 1.7299999999999998E-4, + "p10" : 1.7299999999999998E-4, + "p25" : 1.7299999999999998E-4, + "p50" : 1.7299999999999998E-4, + "p75" : 1.7299999999999998E-4, + "p90" : 1.7299999999999998E-4, + "p95" : 1.7299999999999998E-4, + "p99" : 1.7299999999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.7462499999999998E-4, + "max" : 1.7462499999999998E-4, + "p01" : 1.7462499999999998E-4, + "p05" : 1.7462499999999998E-4, + "p10" : 1.7462499999999998E-4, + "p25" : 1.7462499999999998E-4, + "p50" : 1.7462499999999998E-4, + "p75" : 1.7462499999999998E-4, + "p90" : 1.7462499999999998E-4, + "p95" : 1.7462499999999998E-4, + "p99" : 1.7462499999999998E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "140.42us", + "finishCpu" : "138.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "26.96us", + "addInputCpu" : "27.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0036009999999999996, + "max" : 0.0036009999999999996, + "p01" : 0.0036009999999999996, + "p05" : 0.0036009999999999996, + "p10" : 0.0036009999999999996, + "p25" : 0.0036009999999999996, + "p50" : 0.0036009999999999996, + "p75" : 0.0036009999999999996, + "p90" : 0.0036009999999999996, + "p95" : 0.0036009999999999996, + "p99" : 0.0036009999999999996, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0055704579999999995, + "max" : 0.0055704579999999995, + "p01" : 0.0055704579999999995, + "p05" : 0.0055704579999999995, + "p10" : 0.0055704579999999995, + "p25" : 0.0055704579999999995, + "p50" : 0.0055704579999999995, + "p75" : 0.0055704579999999995, + "p90" : 0.0055704579999999995, + "p95" : 0.0055704579999999995, + "p99" : 0.0055704579999999995, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.006241333999999999, + "max" : 0.006241333999999999, + "p01" : 0.006241333999999999, + "p05" : 0.006241333999999999, + "p10" : 0.006241333999999999, + "p25" : 0.006241333999999999, + "p50" : 0.006241333999999999, + "p75" : 0.006241333999999999, + "p90" : 0.006241333999999999, + "p95" : 0.006241333999999999, + "p99" : 0.006241333999999999, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "5.57ms", + "finishCalls" : 2, + "finishWall" : "6.21ms", + "finishCpu" : "3.57ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.231768Z", + "lastStartTime" : "2026-03-30T07:59:03.234610Z", + "lastEndTime" : "2026-03-30T07:59:03.986979Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.4362791E7, + "p01" : 4505167.0, + "p05" : 4505167.0, + "p10" : 4505167.0, + "p25" : 5359542.0, + "p50" : 7151416.0, + "p75" : 7346666.0, + "p90" : 7346666.0, + "p95" : 7346666.0, + "p99" : 7346666.0, + "min" : 4505167.0, + "max" : 7346666.0, + "avg" : 6090697.75 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.033501332E9, + "p01" : 7.57464125E8, + "p05" : 7.57464125E8, + "p10" : 7.57464125E8, + "p25" : 7.57674E8, + "p50" : 7.58654666E8, + "p75" : 7.59708541E8, + "p90" : 7.59708541E8, + "p95" : 7.59708541E8, + "p99" : 7.59708541E8, + "min" : 7.57464125E8, + "max" : 7.59708541E8, + "avg" : 7.58375333E8 + }, + "totalScheduledTime" : "4.44ms", + "totalCpuTime" : "2.92ms", + "totalBlockedTime" : "1.67s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "62.75kB", + "internalNetworkInputPositions" : 2668, + "processedInputDataSize" : "70.35kB", + "processedInputPositions" : 2668, + "inputBlockedTime" : "1.67s", + "outputDataSize" : "184B", + "outputPositions" : 4, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1982", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "62.75kB", + "internalNetworkInputPositions" : 2668, + "inputDataSize" : "70.35kB", + "inputPositions" : 2668, + "sumSquaredInputPositions" : 2373200.0, + "getOutputCalls" : 3, + "getOutputWall" : "726.79us", + "getOutputCpu" : "226.00us", + "outputDataSize" : "70.35kB", + "outputPositions" : 2668, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.099999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.2999999999999994E-5, + "p50" : 8.199999999999999E-5, + "p75" : 9.099999999999999E-5, + "p90" : 9.099999999999999E-5, + "p95" : 9.099999999999999E-5, + "p99" : 9.099999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 900.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 872.0, + "p50" : 896.0, + "p75" : 900.0, + "p90" : 900.0, + "p95" : 900.0, + "p99" : 900.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09233616599999998, + "max" : 0.7435253759999999, + "p01" : 0.09233616599999998, + "p05" : 0.09233616599999998, + "p10" : 0.09233616599999998, + "p25" : 0.09331104199999998, + "p50" : 0.7404093319999999, + "p75" : 0.7435253759999999, + "p90" : 0.7435253759999999, + "p95" : 0.7435253759999999, + "p99" : 0.7435253759999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.87833E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 5.583299999999999E-5, + "p50" : 8.312499999999999E-5, + "p75" : 5.87833E-4, + "p90" : 5.87833E-4, + "p95" : 5.87833E-4, + "p99" : 5.87833E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.67s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 21736, + "averageBytesPerRequest" : 10705, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 739.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 6.0, + "p50" : 709.0, + "p75" : 718.0, + "p90" : 739.0, + "p95" : 739.0, + "p99" : 739.0, + "total" : 6 + } + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "6.29us", + "addInputCpu" : "10.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "70.35kB", + "inputPositions" : 2668, + "sumSquaredInputPositions" : 2373200.0, + "getOutputCalls" : 18, + "getOutputWall" : "2.02ms", + "getOutputCpu" : "1.49ms", + "outputDataSize" : "184B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 6.399999999999999E-4, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.0999999999999995E-5, + "p25" : 4.689999999999999E-4, + "p50" : 5.56E-4, + "p75" : 6.399999999999999E-4, + "p90" : 6.399999999999999E-4, + "p95" : 6.399999999999999E-4, + "p99" : 6.399999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 900.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 872.0, + "p50" : 896.0, + "p75" : 900.0, + "p90" : 900.0, + "p95" : 900.0, + "p99" : 900.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.036063624999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.005213499999999999, + "p50" : 0.027182499999999995, + "p75" : 0.036063624999999995, + "p90" : 0.036063624999999995, + "p95" : 0.036063624999999995, + "p99" : 0.036063624999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.7625999999999995E-5, + "max" : 0.001065209, + "p01" : 3.7625999999999995E-5, + "p05" : 3.7625999999999995E-5, + "p10" : 3.7625999999999995E-5, + "p25" : 5.09292E-4, + "p50" : 9.683329999999998E-4, + "p75" : 0.001065209, + "p90" : 0.001065209, + "p95" : 0.001065209, + "p99" : 0.001065209, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "68.46ms", + "finishCalls" : 8, + "finishWall" : "550.79us", + "finishCpu" : "193.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2664, 4, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 4, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 3, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "25.25us", + "addInputCpu" : "28.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "184B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 16.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "184B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.957999999999999E-6, + "max" : 3.0554199999999996E-4, + "p01" : 9.957999999999999E-6, + "p05" : 9.957999999999999E-6, + "p10" : 9.957999999999999E-6, + "p25" : 1.0791999999999998E-5, + "p50" : 1.7832999999999997E-5, + "p75" : 3.0554199999999996E-4, + "p90" : 3.0554199999999996E-4, + "p95" : 3.0554199999999996E-4, + "p99" : 3.0554199999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 3.09E-4, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.8999999999999998E-5, + "p75" : 3.09E-4, + "p90" : 3.09E-4, + "p95" : 3.09E-4, + "p99" : 3.09E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "318.88us", + "finishCpu" : "321.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 960 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.4.1.0", + "taskInstanceId" : -319429755321520713, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.4.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "368B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "137.02kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.005068Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 8, + "totalPagesSent" : 5, + "utilization" : { + "min" : 0.0, + "max" : 4.673004150390625E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.1228372651872604E-6, + "total" : 851090708 + } + }, + "noMoreSplits" : [ "1983", "1982" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.153609Z", + "firstStartTime" : "2026-03-30T07:59:03.872272Z", + "lastStartTime" : "2026-03-30T07:59:03.907219Z", + "lastEndTime" : "2026-03-30T07:59:04.002Z", + "endTime" : "2026-03-30T07:59:04.007279Z", + "elapsedTime" : "847.24ms", + "queuedTime" : "712.22ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "137.02kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "31.41ms", + "totalCpuTime" : "8.47ms", + "totalBlockedTime" : "699.51ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "63.29kB", + "internalNetworkInputPositions" : 2686, + "processedInputDataSize" : "70.82kB", + "processedInputPositions" : 2686, + "inputBlockedTime" : "619.99ms", + "outputDataSize" : "368B", + "outputPositions" : 8, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872272Z", + "lastStartTime" : "2026-03-30T07:59:03.891205Z", + "lastEndTime" : "2026-03-30T07:59:03.952629Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.714488417E9, + "p01" : 6.66998792E8, + "p05" : 6.66998792E8, + "p10" : 6.66998792E8, + "p25" : 6.79036166E8, + "p50" : 6.82509875E8, + "p75" : 6.85943584E8, + "p90" : 6.85943584E8, + "p95" : 6.85943584E8, + "p99" : 6.85943584E8, + "min" : 6.66998792E8, + "max" : 6.85943584E8, + "avg" : 6.7862210425E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.984433042E9, + "p01" : 7.45164041E8, + "p05" : 7.45164041E8, + "p10" : 7.45164041E8, + "p25" : 7.45951125E8, + "p50" : 7.45953292E8, + "p75" : 7.47364584E8, + "p90" : 7.47364584E8, + "p95" : 7.47364584E8, + "p99" : 7.47364584E8, + "min" : 7.45164041E8, + "max" : 7.47364584E8, + "avg" : 7.461082605E8 + }, + "totalScheduledTime" : "1.48ms", + "totalCpuTime" : "713.00us", + "totalBlockedTime" : "256.24ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "176B", + "internalNetworkInputPositions" : 2, + "processedInputDataSize" : "56B", + "processedInputPositions" : 2, + "inputBlockedTime" : "256.25ms", + "outputDataSize" : "56B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1983", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "176B", + "internalNetworkInputPositions" : 2, + "inputDataSize" : "56B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 2.0, + "getOutputCalls" : 2, + "getOutputWall" : "117.75us", + "getOutputCpu" : "113.00us", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 6.099999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 5.199999999999999E-5, + "p75" : 6.099999999999999E-5, + "p90" : 6.099999999999999E-5, + "p95" : 6.099999999999999E-5, + "p99" : 6.099999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.057828624999999995, + "max" : 0.072781584, + "p01" : 0.057828624999999995, + "p05" : 0.057828624999999995, + "p10" : 0.057828624999999995, + "p25" : 0.06126708299999999, + "p50" : 0.06437658399999999, + "p75" : 0.072781584, + "p90" : 0.072781584, + "p95" : 0.072781584, + "p99" : 0.072781584, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 6.358399999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 5.416699999999999E-5, + "p75" : 6.358399999999999E-5, + "p90" : 6.358399999999999E-5, + "p95" : 6.358399999999999E-5, + "p99" : 6.358399999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "256.25ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 144, + "averageBytesPerRequest" : 32, + "successfulRequestsCount" : 20, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 5.0, + "max" : 71.0, + "p01" : 5.0, + "p05" : 5.0, + "p10" : 5.0, + "p25" : 9.0, + "p50" : 59.0, + "p75" : 68.0, + "p90" : 71.0, + "p95" : 71.0, + "p99" : 71.0, + "total" : 5 + } + } + }, { + "stageId" : 4, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "32.29us", + "addInputCpu" : "33.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "56B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 2.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.4999999999999997E-5, + "max" : 1.0399999999999998E-4, + "p01" : 1.4999999999999997E-5, + "p05" : 1.4999999999999997E-5, + "p10" : 1.4999999999999997E-5, + "p25" : 3.899999999999999E-5, + "p50" : 4.2999999999999995E-5, + "p75" : 1.0399999999999998E-4, + "p90" : 1.0399999999999998E-4, + "p95" : 1.0399999999999998E-4, + "p99" : 1.0399999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.6916E-5, + "max" : 1.2237499999999998E-4, + "p01" : 1.6916E-5, + "p05" : 1.6916E-5, + "p10" : 1.6916E-5, + "p25" : 5.725099999999999E-5, + "p50" : 5.895899999999999E-5, + "p75" : 1.2237499999999998E-4, + "p90" : 1.2237499999999998E-4, + "p95" : 1.2237499999999998E-4, + "p99" : 1.2237499999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "223.21us", + "finishCpu" : "168.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.894754Z", + "lastStartTime" : "2026-03-30T07:59:03.894754Z", + "lastEndTime" : "2026-03-30T07:59:04.002125Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.89490541E8, + "p01" : 6.89490541E8, + "p05" : 6.89490541E8, + "p10" : 6.89490541E8, + "p25" : 6.89490541E8, + "p50" : 6.89490541E8, + "p75" : 6.89490541E8, + "p90" : 6.89490541E8, + "p95" : 6.89490541E8, + "p99" : 6.89490541E8, + "min" : 6.89490541E8, + "max" : 6.89490541E8, + "avg" : 6.89490541E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.96859041E8, + "p01" : 7.96859041E8, + "p05" : 7.96859041E8, + "p10" : 7.96859041E8, + "p25" : 7.96859041E8, + "p50" : 7.96859041E8, + "p75" : 7.96859041E8, + "p90" : 7.96859041E8, + "p95" : 7.96859041E8, + "p99" : 7.96859041E8, + "min" : 7.96859041E8, + "max" : 7.96859041E8, + "avg" : 7.96859041E8 + }, + "totalScheduledTime" : "24.28ms", + "totalCpuTime" : "4.71ms", + "totalBlockedTime" : "79.50ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "56B", + "processedInputPositions" : 2, + "inputBlockedTime" : "54.85ms", + "outputDataSize" : "56B", + "outputPositions" : 2, + "outputBlockedTime" : "24.69ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2563", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "56B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 2, + "getOutputWall" : "51.92us", + "getOutputCpu" : "48.00us", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.7999999999999994E-5, + "max" : 4.7999999999999994E-5, + "p01" : 4.7999999999999994E-5, + "p05" : 4.7999999999999994E-5, + "p10" : 4.7999999999999994E-5, + "p25" : 4.7999999999999994E-5, + "p50" : 4.7999999999999994E-5, + "p75" : 4.7999999999999994E-5, + "p90" : 4.7999999999999994E-5, + "p95" : 4.7999999999999994E-5, + "p99" : 4.7999999999999994E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.05484678999999999, + "max" : 0.05484678999999999, + "p01" : 0.05484678999999999, + "p05" : 0.05484678999999999, + "p10" : 0.05484678999999999, + "p25" : 0.05484678999999999, + "p50" : 0.05484678999999999, + "p75" : 0.05484678999999999, + "p90" : 0.05484678999999999, + "p95" : 0.05484678999999999, + "p99" : 0.05484678999999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 5.191799999999999E-5, + "max" : 5.191799999999999E-5, + "p01" : 5.191799999999999E-5, + "p05" : 5.191799999999999E-5, + "p10" : 5.191799999999999E-5, + "p25" : 5.191799999999999E-5, + "p50" : 5.191799999999999E-5, + "p75" : 5.191799999999999E-5, + "p90" : 5.191799999999999E-5, + "p95" : 5.191799999999999E-5, + "p99" : 5.191799999999999E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "54.85ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 2, + "addInputWall" : "108.46us", + "addInputCpu" : "67.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "56B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 5, + "getOutputWall" : "78.38us", + "getOutputCpu" : "40.00us", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.8199999999999997E-4, + "max" : 2.8199999999999997E-4, + "p01" : 2.8199999999999997E-4, + "p05" : 2.8199999999999997E-4, + "p10" : 2.8199999999999997E-4, + "p25" : 2.8199999999999997E-4, + "p50" : 2.8199999999999997E-4, + "p75" : 2.8199999999999997E-4, + "p90" : 2.8199999999999997E-4, + "p95" : 2.8199999999999997E-4, + "p99" : 2.8199999999999997E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 3.6362299999999993E-4, + "max" : 3.6362299999999993E-4, + "p01" : 3.6362299999999993E-4, + "p05" : 3.6362299999999993E-4, + "p10" : 3.6362299999999993E-4, + "p25" : 3.6362299999999993E-4, + "p50" : 3.6362299999999993E-4, + "p75" : 3.6362299999999993E-4, + "p90" : 3.6362299999999993E-4, + "p95" : 3.6362299999999993E-4, + "p99" : 3.6362299999999993E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "176.79us", + "finishCpu" : "175.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 4, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 2, + "addInputWall" : "53.50us", + "addInputCpu" : "55.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "56B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.004325999999999999, + "max" : 0.004325999999999999, + "p01" : 0.004325999999999999, + "p05" : 0.004325999999999999, + "p10" : 0.004325999999999999, + "p25" : 0.004325999999999999, + "p50" : 0.004325999999999999, + "p75" : 0.004325999999999999, + "p90" : 0.004325999999999999, + "p95" : 0.004325999999999999, + "p99" : 0.004325999999999999, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.024687583999999995, + "max" : 0.024687583999999995, + "p01" : 0.024687583999999995, + "p05" : 0.024687583999999995, + "p10" : 0.024687583999999995, + "p25" : 0.024687583999999995, + "p50" : 0.024687583999999995, + "p75" : 0.024687583999999995, + "p90" : 0.024687583999999995, + "p95" : 0.024687583999999995, + "p99" : 0.024687583999999995, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.023815541999999995, + "max" : 0.023815541999999995, + "p01" : 0.023815541999999995, + "p05" : 0.023815541999999995, + "p10" : 0.023815541999999995, + "p25" : 0.023815541999999995, + "p50" : 0.023815541999999995, + "p75" : 0.023815541999999995, + "p90" : 0.023815541999999995, + "p95" : 0.023815541999999995, + "p99" : 0.023815541999999995, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "24.69ms", + "finishCalls" : 2, + "finishWall" : "23.76ms", + "finishCpu" : "4.27ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.897377Z", + "lastStartTime" : "2026-03-30T07:59:03.907219Z", + "lastEndTime" : "2026-03-30T07:59:04.000201Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.789909083E9, + "p01" : 6.92111625E8, + "p05" : 6.92111625E8, + "p10" : 6.92111625E8, + "p25" : 6.96511333E8, + "p50" : 6.99337375E8, + "p75" : 7.0194875E8, + "p90" : 7.0194875E8, + "p95" : 7.0194875E8, + "p99" : 7.0194875E8, + "min" : 6.92111625E8, + "max" : 7.0194875E8, + "avg" : 6.9747727075E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.174912666E9, + "p01" : 7.92696791E8, + "p05" : 7.92696791E8, + "p10" : 7.92696791E8, + "p25" : 7.93427917E8, + "p50" : 7.93854208E8, + "p75" : 7.9493375E8, + "p90" : 7.9493375E8, + "p95" : 7.9493375E8, + "p99" : 7.9493375E8, + "min" : 7.92696791E8, + "max" : 7.9493375E8, + "avg" : 7.937281665E8 + }, + "totalScheduledTime" : "5.65ms", + "totalCpuTime" : "3.06ms", + "totalBlockedTime" : "363.77ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "63.12kB", + "internalNetworkInputPositions" : 2684, + "processedInputDataSize" : "70.77kB", + "processedInputPositions" : 2684, + "inputBlockedTime" : "363.74ms", + "outputDataSize" : "368B", + "outputPositions" : 8, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1982", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "63.12kB", + "internalNetworkInputPositions" : 2684, + "inputDataSize" : "70.77kB", + "inputPositions" : 2684, + "sumSquaredInputPositions" : 2411408.0, + "getOutputCalls" : 3, + "getOutputWall" : "173.08us", + "getOutputCpu" : "162.00us", + "outputDataSize" : "70.77kB", + "outputPositions" : 2684, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.9999999999999996E-5, + "p50" : 4.7999999999999994E-5, + "p75" : 7.399999999999998E-5, + "p90" : 7.399999999999998E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 972.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 832.0, + "p50" : 880.0, + "p75" : 972.0, + "p90" : 972.0, + "p95" : 972.0, + "p99" : 972.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08915820899999999, + "max" : 0.09416045799999999, + "p01" : 0.08915820899999999, + "p05" : 0.08915820899999999, + "p10" : 0.08915820899999999, + "p25" : 0.08998616699999999, + "p50" : 0.09043091599999999, + "p75" : 0.09416045799999999, + "p90" : 0.09416045799999999, + "p95" : 0.09416045799999999, + "p99" : 0.09416045799999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.066699999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.2083E-5, + "p50" : 5.0332999999999994E-5, + "p75" : 8.066699999999999E-5, + "p90" : 8.066699999999999E-5, + "p95" : 8.066699999999999E-5, + "p99" : 8.066699999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "363.74ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 23464, + "averageBytesPerRequest" : 10769, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 6.0, + "max" : 86.0, + "p01" : 6.0, + "p05" : 6.0, + "p10" : 6.0, + "p25" : 11.0, + "p50" : 43.0, + "p75" : 52.0, + "p90" : 86.0, + "p95" : 86.0, + "p99" : 86.0, + "total" : 6 + } + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1698", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "6.96us", + "addInputCpu" : "10.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "70.77kB", + "inputPositions" : 2684, + "sumSquaredInputPositions" : 2411408.0, + "getOutputCalls" : 15, + "getOutputWall" : "4.66ms", + "getOutputCpu" : "2.11ms", + "outputDataSize" : "368B", + "outputPositions" : 8, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0999999999999995E-5, + "max" : 9.289999999999998E-4, + "p01" : 2.0999999999999995E-5, + "p05" : 2.0999999999999995E-5, + "p10" : 2.0999999999999995E-5, + "p25" : 3.0799999999999995E-4, + "p50" : 8.999999999999999E-4, + "p75" : 9.289999999999998E-4, + "p90" : 9.289999999999998E-4, + "p95" : 9.289999999999998E-4, + "p99" : 9.289999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 972.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 832.0, + "p50" : 880.0, + "p75" : 972.0, + "p90" : 972.0, + "p95" : 972.0, + "p99" : 972.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.04249837499999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.025003541999999997, + "p75" : 0.04249837499999999, + "p90" : 0.04249837499999999, + "p95" : 0.04249837499999999, + "p99" : 0.04249837499999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3333999999999997E-5, + "max" : 0.0024037509999999995, + "p01" : 2.3333999999999997E-5, + "p05" : 2.3333999999999997E-5, + "p10" : 2.3333999999999997E-5, + "p25" : 3.4129199999999993E-4, + "p50" : 0.0019749579999999997, + "p75" : 0.0024037509999999995, + "p90" : 0.0024037509999999995, + "p95" : 0.0024037509999999995, + "p99" : 0.0024037509999999995, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "67.50ms", + "finishCalls" : 4, + "finishWall" : "79.13us", + "finishCpu" : "42.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 2676, 8, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 8, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 6, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 4, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1698", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "81.04us", + "addInputCpu" : "82.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "368B", + "inputPositions" : 8, + "sumSquaredInputPositions" : 32.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "368B", + "outputPositions" : 8, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.749999999999998E-6, + "max" : 2.1337499999999997E-4, + "p01" : 9.749999999999998E-6, + "p05" : 9.749999999999998E-6, + "p10" : 9.749999999999998E-6, + "p25" : 1.2332999999999999E-5, + "p50" : 2.0437499999999997E-4, + "p75" : 2.1337499999999997E-4, + "p90" : 2.1337499999999997E-4, + "p95" : 2.1337499999999997E-4, + "p99" : 2.1337499999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 4.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 4.0, + "p75" : 4.0, + "p90" : 4.0, + "p95" : 4.0, + "p99" : 4.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 2.1199999999999998E-4, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 2.0499999999999997E-4, + "p75" : 2.1199999999999998E-4, + "p90" : 2.1199999999999998E-4, + "p95" : 2.1199999999999998E-4, + "p99" : 2.1199999999999998E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "358.79us", + "finishCpu" : "356.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1568 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.5", "20260330_075902_00004_iggau.6" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.7", + "state" : "FINISHED", + "plan" : { + "id" : "7", + "root" : { + "@type" : "join", + "id" : "1688", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1986", + "sourceFragmentIds" : [ "8" ], + "outputs" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "bigint", + "name" : "nationkey" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2565", + "type" : "REPARTITION", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey_8" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1987", + "sourceFragmentIds" : [ "9" ], + "outputs" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "nationkey" + }, + "right" : { + "type" : "bigint", + "name" : "nationkey_8" + } + } ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "rightOutputSymbols" : [ { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2213" : { + "type" : "bigint", + "name" : "nationkey_8" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 20.0, + "outputSizeInBytes" : 3392.0, + "cpuCost" : 56269.600000000006, + "memoryCost" : 114.4, + "networkCost" : 17518.4 + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "nationkey" + }, { + "type" : "bigint", + "name" : "nationkey_8" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1688" : { + "outputRowCount" : 20.0, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "6|bigint|suppkey" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 20.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 20.0 + }, + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 20.0 + } + } + }, + "1986" : { + "outputRowCount" : 100.0, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|suppkey" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|nationkey" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 100.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 100.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 100.0 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 100.0 + } + } + }, + "2565" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "6|bigint|nationkey_8" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + }, + "1987" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "6|bigint|nationkey_8" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + } + }, + "costs" : { + "1688" : { + "cpuCost" : 73664.6, + "maxMemory" : 114.4, + "maxMemoryWhenOutputting" : 105.4, + "networkCost" : 17518.4, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 20149.4, + "maxMemory" : 105.4, + "networkCost" : 0.0 + } + }, + "1986" : { + "cpuCost" : 49956.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 16652.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 16652.0, + "maxMemory" : 0.0, + "networkCost" : 16652.0 + } + }, + "2565" : { + "cpuCost" : 3559.2000000000003, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 866.4, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 105.4, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1987" : { + "cpuCost" : 3453.8, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 866.4, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 105.4, + "maxMemory" : 0.0, + "networkCost" : 105.4 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1688\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(nationkey = nationkey_8)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {nationkey_8 -> #df_2213}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1986\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[8]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2565\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"HASH\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[nationkey_8::bigint]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_8\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1987\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[9]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_8\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)", "varchar(40)", "varchar(15)", "double", "varchar(101)", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.149363Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 36, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 36, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.54MB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "26.48ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "10.94ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "3.80s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "17.74kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 105, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "16.37kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 105, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "2.08s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2604017834, + "min" : 0.0, + "max" : 2.02178955078125E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.0685917624811479E-5 + }, + "outputDataSize" : "3.31kB", + "failedOutputDataSize" : "0B", + "outputPositions" : 20, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 7, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1987", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "224B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 2, + "getOutputWall" : "162.08us", + "getOutputCpu" : "137.00us", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.899999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 3.7999999999999995E-5, + "p95" : 9.899999999999998E-5, + "p99" : 9.899999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.10910979199999998, + "max" : 0.13051212499999998, + "p01" : 0.10910979199999998, + "p05" : 0.10910979199999998, + "p10" : 0.11228929099999999, + "p25" : 0.11549770799999998, + "p50" : 0.11844058299999999, + "p75" : 0.12135904099999999, + "p90" : 0.130073376, + "p95" : 0.13051212499999998, + "p99" : 0.13051212499999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.235E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 3.858299999999999E-5, + "p95" : 1.235E-4, + "p99" : 1.235E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.42s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 176, + "averageBytesPerRequest" : 17, + "successfulRequestsCount" : 44, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 123.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 107.0, + "p50" : 115.0, + "p75" : 123.0, + "p90" : 123.0, + "p95" : 123.0, + "p99" : 123.0, + "total" : 8 + } + } + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 3, + "getOutputWall" : "32.55us", + "getOutputCpu" : "28.00us", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.2999999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 6.999999999999999E-6, + "p90" : 8.0E-6, + "p95" : 1.2999999999999998E-5, + "p99" : 1.2999999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.09667387599999999, + "max" : 0.11375812499999999, + "p01" : 0.09667387599999999, + "p05" : 0.09667387599999999, + "p10" : 0.09973187499999998, + "p25" : 0.10330804199999999, + "p50" : 0.10851516699999998, + "p75" : 0.11119983399999998, + "p90" : 0.11372337499999999, + "p95" : 0.11375812499999999, + "p99" : 0.11375812499999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.5874999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 7.916999999999999E-6, + "p90" : 8.75E-6, + "p95" : 1.5874999999999996E-5, + "p99" : 1.5874999999999996E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.28s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1986", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "17.52kB", + "internalNetworkInputPositions" : 100, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1136.0, + "getOutputCalls" : 11, + "getOutputWall" : "2.21ms", + "getOutputCpu" : "842.00us", + "outputDataSize" : "16.26kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.6699999999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 3.899999999999999E-5, + "p25" : 5.199999999999999E-5, + "p50" : 6.099999999999999E-5, + "p75" : 1.0699999999999999E-4, + "p90" : 1.2699999999999997E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 15.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 10.0, + "p75" : 13.0, + "p90" : 15.0, + "p95" : 15.0, + "p99" : 15.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.026571582999999996, + "max" : 0.080979083, + "p01" : 0.026571582999999996, + "p05" : 0.026571582999999996, + "p10" : 0.028654958999999997, + "p25" : 0.038430957999999994, + "p50" : 0.06832358399999999, + "p75" : 0.07869212499999999, + "p90" : 0.07911187499999998, + "p95" : 0.080979083, + "p99" : 0.080979083, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0011964579999999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 4.141699999999999E-5, + "p25" : 6.229099999999999E-5, + "p50" : 7.008399999999999E-5, + "p75" : 1.5445799999999998E-4, + "p90" : 3.3970899999999994E-4, + "p95" : 0.0011964579999999999, + "p99" : 0.0011964579999999999, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "661.67ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 4800, + "averageBytesPerRequest" : 892, + "successfulRequestsCount" : 80, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 75.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 28.0, + "p75" : 44.0, + "p90" : 54.0, + "p95" : 75.0, + "p99" : 75.0, + "total" : 13 + } + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 5, + "addInputWall" : "1.36ms", + "addInputCpu" : "276.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.73kB", + "inputPositions" : 20, + "sumSquaredInputPositions" : 96.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "3.31kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.166999999999999E-6, + "max" : 0.0021617499999999996, + "p01" : 5.166999999999999E-6, + "p05" : 5.166999999999999E-6, + "p10" : 7.332999999999999E-6, + "p25" : 7.957999999999999E-6, + "p50" : 1.3124999999999999E-5, + "p75" : 0.0013860419999999999, + "p90" : 0.0017550829999999997, + "p95" : 0.0021617499999999996, + "p99" : 0.0021617499999999996, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.0, + "p90" : 5.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 7.299999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 6.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 1.2999999999999998E-5, + "p75" : 2.8299999999999994E-4, + "p90" : 2.87E-4, + "p95" : 7.299999999999999E-4, + "p99" : 7.299999999999999E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "5.59ms", + "finishCpu" : "1.50ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 6784 + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 11, + "addInputWall" : "27.50us", + "addInputCpu" : "50.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1136.0, + "getOutputCalls" : 40, + "getOutputWall" : "4.31ms", + "getOutputCpu" : "1.61ms", + "outputDataSize" : "3.73kB", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.7999999999999997E-5, + "max" : 3.0099999999999994E-4, + "p01" : 1.7999999999999997E-5, + "p05" : 1.7999999999999997E-5, + "p10" : 6.099999999999999E-5, + "p25" : 8.699999999999999E-5, + "p50" : 2.0599999999999997E-4, + "p75" : 2.4999999999999995E-4, + "p90" : 2.76E-4, + "p95" : 3.0099999999999994E-4, + "p99" : 3.0099999999999994E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 15.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 10.0, + "p75" : 13.0, + "p90" : 15.0, + "p95" : 15.0, + "p99" : 15.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.05893399999999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.018966458, + "p25" : 0.030120665999999997, + "p50" : 0.05456274999999999, + "p75" : 0.058043374999999994, + "p90" : 0.05890737499999999, + "p95" : 0.05893399999999999, + "p99" : 0.05893399999999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.0332999999999997E-5, + "max" : 9.769979999999998E-4, + "p01" : 2.0332999999999997E-5, + "p05" : 2.0332999999999997E-5, + "p10" : 6.279199999999999E-5, + "p25" : 8.729199999999999E-5, + "p50" : 2.1716699999999996E-4, + "p75" : 9.396669999999998E-4, + "p90" : 9.470419999999998E-4, + "p95" : 9.769979999999998E-4, + "p99" : 9.769979999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "503.15ms", + "finishCalls" : 31, + "finishWall" : "453.67us", + "finishCpu" : "396.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 80, 20, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 20, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 18, + "rleProbes" : 0, + "totalProbes" : 11 + } + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "49.08us", + "addInputCpu" : "48.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 8.199999999999999E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 3.699999999999999E-5, + "p25" : 5.7999999999999994E-5, + "p50" : 8.699999999999999E-5, + "p75" : 4.5199999999999993E-4, + "p90" : 6.919999999999999E-4, + "p95" : 8.199999999999999E-4, + "p99" : 8.199999999999999E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0017292919999999997, + "max" : 0.006771708999999999, + "p01" : 0.0017292919999999997, + "p05" : 0.0017292919999999997, + "p10" : 0.0036897079999999994, + "p25" : 0.004006292, + "p50" : 0.006202957999999999, + "p75" : 0.006617458999999999, + "p90" : 0.006655957999999999, + "p95" : 0.006771708999999999, + "p99" : 0.006771708999999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3415999999999997E-5, + "max" : 0.0024307499999999998, + "p01" : 2.3415999999999997E-5, + "p05" : 2.3415999999999997E-5, + "p10" : 3.649999999999999E-5, + "p25" : 5.779199999999999E-5, + "p50" : 8.683299999999999E-5, + "p75" : 0.0011954589999999998, + "p90" : 0.0015379999999999999, + "p95" : 0.0024307499999999998, + "p99" : 0.0024307499999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "61.36ms", + "finishCalls" : 24, + "finishWall" : "6.81ms", + "finishCpu" : "2.61ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 2, + "addInputWall" : "229.37us", + "addInputCpu" : "210.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 2.8799999999999995E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 2.6999999999999996E-5, + "p75" : 1.4099999999999998E-4, + "p90" : 1.5299999999999998E-4, + "p95" : 2.8799999999999995E-4, + "p99" : 2.8799999999999995E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 7.124999999999999E-6, + "max" : 9.507089999999999E-4, + "p01" : 7.124999999999999E-6, + "p05" : 7.124999999999999E-6, + "p10" : 8.415999999999999E-6, + "p25" : 1.2249999999999998E-5, + "p50" : 2.9374999999999996E-5, + "p75" : 1.4833399999999997E-4, + "p90" : 1.7462499999999998E-4, + "p95" : 9.507089999999999E-4, + "p99" : 9.507089999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.35ms", + "finishCpu" : "655.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "35.13us", + "addInputCpu" : "36.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "110B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 18, + "getOutputWall" : "135.62us", + "getOutputCpu" : "120.00us", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 3.1199999999999994E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 4.4999999999999996E-5, + "p50" : 6.199999999999999E-5, + "p75" : 8.099999999999999E-5, + "p90" : 1.0199999999999999E-4, + "p95" : 3.1199999999999994E-4, + "p99" : 3.1199999999999994E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4874999999999995E-5, + "max" : 4.5812499999999993E-4, + "p01" : 2.4874999999999995E-5, + "p05" : 2.4874999999999995E-5, + "p10" : 3.1542E-5, + "p25" : 4.887399999999999E-5, + "p50" : 7.341699999999999E-5, + "p75" : 9.349899999999998E-5, + "p90" : 1.0466599999999999E-4, + "p95" : 4.5812499999999993E-4, + "p99" : 4.5812499999999993E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "990.30us", + "finishCpu" : "790.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.7.1.0", + "taskInstanceId" : 5992570486481436781, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.7.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "528.70kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.016275Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 866443834 + } + }, + "noMoreSplits" : [ "1987", "1986" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.152416Z", + "firstStartTime" : "2026-03-30T07:59:03.872815Z", + "lastStartTime" : "2026-03-30T07:59:03.923361Z", + "lastEndTime" : "2026-03-30T07:59:04.012Z", + "endTime" : "2026-03-30T07:59:04.018068Z", + "elapsedTime" : "861.02ms", + "queuedTime" : "715.76ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "528.70kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "5.44ms", + "totalCpuTime" : "2.75ms", + "totalBlockedTime" : "1.28s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "4.87kB", + "internalNetworkInputPositions" : 26, + "processedInputDataSize" : "4.34kB", + "processedInputPositions" : 26, + "inputBlockedTime" : "705.24ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872815Z", + "lastStartTime" : "2026-03-30T07:59:03.891046Z", + "lastEndTime" : "2026-03-30T07:59:04.005552Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.689810083E9, + "p01" : 6.6126975E8, + "p05" : 6.6126975E8, + "p10" : 6.6126975E8, + "p25" : 6.72752167E8, + "p50" : 6.76289583E8, + "p75" : 6.79498583E8, + "p90" : 6.79498583E8, + "p95" : 6.79498583E8, + "p99" : 6.79498583E8, + "min" : 6.6126975E8, + "max" : 6.79498583E8, + "avg" : 6.7245252075E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.173103292E9, + "p01" : 7.9296775E8, + "p05" : 7.9296775E8, + "p10" : 7.9296775E8, + "p25" : 7.93063208E8, + "p50" : 7.93067875E8, + "p75" : 7.94004459E8, + "p90" : 7.94004459E8, + "p95" : 7.94004459E8, + "p99" : 7.94004459E8, + "min" : 7.9296775E8, + "max" : 7.94004459E8, + "avg" : 7.93275823E8 + }, + "totalScheduledTime" : "1.19ms", + "totalCpuTime" : "500.00us", + "totalBlockedTime" : "477.33ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "477.33ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1987", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.11228929099999999, + "max" : 0.13051212499999998, + "p01" : 0.11228929099999999, + "p05" : 0.11228929099999999, + "p10" : 0.11228929099999999, + "p25" : 0.11549770799999998, + "p50" : 0.11903399999999999, + "p75" : 0.13051212499999998, + "p90" : 0.13051212499999998, + "p95" : 0.13051212499999998, + "p99" : 0.13051212499999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "477.33ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 118.0, + "max" : 127.0, + "p01" : 118.0, + "p05" : 118.0, + "p10" : 118.0, + "p25" : 118.0, + "p50" : 123.0, + "p75" : 127.0, + "p90" : 127.0, + "p95" : 127.0, + "p99" : 127.0, + "total" : 3 + } + } + }, { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 2.8799999999999995E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 1.1999999999999999E-5, + "p50" : 2.6999999999999996E-5, + "p75" : 2.8799999999999995E-4, + "p90" : 2.8799999999999995E-4, + "p95" : 2.8799999999999995E-4, + "p99" : 2.8799999999999995E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.415999999999999E-6, + "max" : 9.507089999999999E-4, + "p01" : 8.415999999999999E-6, + "p05" : 8.415999999999999E-6, + "p10" : 8.415999999999999E-6, + "p25" : 1.3415999999999998E-5, + "p50" : 2.9374999999999996E-5, + "p75" : 9.507089999999999E-4, + "p90" : 9.507089999999999E-4, + "p95" : 9.507089999999999E-4, + "p99" : 9.507089999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "1.00ms", + "finishCpu" : "333.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.894691Z", + "lastStartTime" : "2026-03-30T07:59:03.904535Z", + "lastEndTime" : "2026-03-30T07:59:04.012863Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.748773334E9, + "p01" : 6.82366917E8, + "p05" : 6.82366917E8, + "p10" : 6.82366917E8, + "p25" : 6.84876667E8, + "p50" : 6.89321209E8, + "p75" : 6.92208541E8, + "p90" : 6.92208541E8, + "p95" : 6.92208541E8, + "p99" : 6.92208541E8, + "min" : 6.82366917E8, + "max" : 6.92208541E8, + "avg" : 6.871933335E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.200074167E9, + "p01" : 7.99555625E8, + "p05" : 7.99555625E8, + "p10" : 7.99555625E8, + "p25" : 7.99557417E8, + "p50" : 8.004255E8, + "p75" : 8.00535625E8, + "p90" : 8.00535625E8, + "p95" : 8.00535625E8, + "p99" : 8.00535625E8, + "min" : 7.99555625E8, + "max" : 8.00535625E8, + "avg" : 8.0001854175E8 + }, + "totalScheduledTime" : "2.82ms", + "totalCpuTime" : "1.06ms", + "totalBlockedTime" : "436.03ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "421.74ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "14.29ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.10041712499999998, + "max" : 0.11026116699999998, + "p01" : 0.10041712499999998, + "p05" : 0.10041712499999998, + "p10" : 0.10041712499999998, + "p25" : 0.10330804199999999, + "p50" : 0.10775245899999998, + "p75" : 0.11026116699999998, + "p90" : 0.11026116699999998, + "p95" : 0.11026116699999998, + "p99" : 0.11026116699999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "421.74ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 4, + "getOutputWall" : "35.79us", + "getOutputCpu" : "30.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.4999999999999996E-5, + "max" : 6.199999999999999E-5, + "p01" : 4.4999999999999996E-5, + "p05" : 4.4999999999999996E-5, + "p10" : 4.4999999999999996E-5, + "p25" : 4.699999999999999E-5, + "p50" : 5.699999999999999E-5, + "p75" : 6.199999999999999E-5, + "p90" : 6.199999999999999E-5, + "p95" : 6.199999999999999E-5, + "p99" : 6.199999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.887399999999999E-5, + "max" : 7.9834E-5, + "p01" : 4.887399999999999E-5, + "p05" : 4.887399999999999E-5, + "p10" : 4.887399999999999E-5, + "p25" : 5.783299999999999E-5, + "p50" : 6.1959E-5, + "p75" : 7.9834E-5, + "p90" : 7.9834E-5, + "p95" : 7.9834E-5, + "p99" : 7.9834E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "212.71us", + "finishCpu" : "181.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.199999999999999E-5, + "max" : 4.5199999999999993E-4, + "p01" : 6.199999999999999E-5, + "p05" : 6.199999999999999E-5, + "p10" : 6.199999999999999E-5, + "p25" : 8.699999999999999E-5, + "p50" : 1.7599999999999997E-4, + "p75" : 4.5199999999999993E-4, + "p90" : 4.5199999999999993E-4, + "p95" : 4.5199999999999993E-4, + "p99" : 4.5199999999999993E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0017292919999999997, + "max" : 0.004862749999999999, + "p01" : 0.0017292919999999997, + "p05" : 0.0017292919999999997, + "p10" : 0.0017292919999999997, + "p25" : 0.0036897079999999994, + "p50" : 0.004006292, + "p75" : 0.004862749999999999, + "p90" : 0.004862749999999999, + "p95" : 0.004862749999999999, + "p99" : 0.004862749999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.045799999999999E-5, + "max" : 0.0011954589999999998, + "p01" : 6.045799999999999E-5, + "p05" : 6.045799999999999E-5, + "p10" : 6.045799999999999E-5, + "p25" : 8.683299999999999E-5, + "p50" : 0.0011595, + "p75" : 0.0011954589999999998, + "p90" : 0.0011954589999999998, + "p95" : 0.0011954589999999998, + "p99" : 0.0011954589999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "14.29ms", + "finishCalls" : 8, + "finishWall" : "2.50ms", + "finishCpu" : "777.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.906986Z", + "lastStartTime" : "2026-03-30T07:59:03.923360Z", + "lastEndTime" : "2026-03-30T07:59:04.010704Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.806052542E9, + "p01" : 6.94658459E8, + "p05" : 6.94658459E8, + "p10" : 6.94658459E8, + "p25" : 6.9827225E8, + "p50" : 7.02089416E8, + "p75" : 7.11032417E8, + "p90" : 7.11032417E8, + "p95" : 7.11032417E8, + "p99" : 7.11032417E8, + "min" : 6.94658459E8, + "max" : 7.11032417E8, + "avg" : 7.015131355E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.19232625E9, + "p01" : 7.97886875E8, + "p05" : 7.97886875E8, + "p10" : 7.97886875E8, + "p25" : 7.97889125E8, + "p50" : 7.98175791E8, + "p75" : 7.98374459E8, + "p90" : 7.98374459E8, + "p95" : 7.98374459E8, + "p99" : 7.98374459E8, + "min" : 7.97886875E8, + "max" : 7.98374459E8, + "avg" : 7.980815625E8 + }, + "totalScheduledTime" : "1.43ms", + "totalCpuTime" : "1.19ms", + "totalBlockedTime" : "368.93ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "4.87kB", + "internalNetworkInputPositions" : 26, + "processedInputDataSize" : "4.34kB", + "processedInputPositions" : 26, + "inputBlockedTime" : "227.91ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1986", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "4.87kB", + "internalNetworkInputPositions" : 26, + "inputDataSize" : "4.34kB", + "inputPositions" : 26, + "sumSquaredInputPositions" : 214.0, + "getOutputCalls" : 4, + "getOutputWall" : "534.46us", + "getOutputCpu" : "304.00us", + "outputDataSize" : "4.34kB", + "outputPositions" : 26, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.199999999999999E-5, + "max" : 1.2699999999999997E-4, + "p01" : 5.199999999999999E-5, + "p05" : 5.199999999999999E-5, + "p10" : 5.199999999999999E-5, + "p25" : 6.099999999999999E-5, + "p50" : 6.4E-5, + "p75" : 1.2699999999999997E-4, + "p90" : 1.2699999999999997E-4, + "p95" : 1.2699999999999997E-4, + "p99" : 1.2699999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 10.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 8.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.038430957999999994, + "max" : 0.07911187499999998, + "p01" : 0.038430957999999994, + "p05" : 0.038430957999999994, + "p10" : 0.038430957999999994, + "p25" : 0.042044374999999995, + "p50" : 0.06832358399999999, + "p75" : 0.07911187499999998, + "p90" : 0.07911187499999998, + "p95" : 0.07911187499999998, + "p99" : 0.07911187499999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.229099999999999E-5, + "max" : 3.3970899999999994E-4, + "p01" : 6.229099999999999E-5, + "p05" : 6.229099999999999E-5, + "p10" : 6.229099999999999E-5, + "p25" : 6.554099999999999E-5, + "p50" : 6.6916E-5, + "p75" : 3.3970899999999994E-4, + "p90" : 3.3970899999999994E-4, + "p95" : 3.3970899999999994E-4, + "p99" : 3.3970899999999994E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "227.91ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 4800, + "averageBytesPerRequest" : 709, + "successfulRequestsCount" : 28, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 42.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 8.0, + "p50" : 35.0, + "p75" : 40.0, + "p90" : 42.0, + "p95" : 42.0, + "p99" : 42.0, + "total" : 7 + } + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "9.04us", + "addInputCpu" : "15.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "4.34kB", + "inputPositions" : 26, + "sumSquaredInputPositions" : 214.0, + "getOutputCalls" : 12, + "getOutputWall" : "428.46us", + "getOutputCpu" : "423.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.099999999999999E-5, + "max" : 2.1299999999999997E-4, + "p01" : 6.099999999999999E-5, + "p05" : 6.099999999999999E-5, + "p10" : 6.099999999999999E-5, + "p25" : 8.699999999999999E-5, + "p50" : 2.0599999999999997E-4, + "p75" : 2.1299999999999997E-4, + "p90" : 2.1299999999999997E-4, + "p95" : 2.1299999999999997E-4, + "p99" : 2.1299999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 10.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 8.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.018966458, + "max" : 0.05893399999999999, + "p01" : 0.018966458, + "p05" : 0.018966458, + "p10" : 0.018966458, + "p25" : 0.05456274999999999, + "p50" : 0.05890737499999999, + "p75" : 0.05893399999999999, + "p90" : 0.05893399999999999, + "p95" : 0.05893399999999999, + "p99" : 0.05893399999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.279199999999999E-5, + "max" : 2.1716699999999996E-4, + "p01" : 6.279199999999999E-5, + "p05" : 6.279199999999999E-5, + "p10" : 6.279199999999999E-5, + "p25" : 8.729199999999999E-5, + "p50" : 2.0987499999999997E-4, + "p75" : 2.1716699999999996E-4, + "p90" : 2.1716699999999996E-4, + "p95" : 2.1716699999999996E-4, + "p99" : 2.1716699999999996E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "191.37ms", + "finishCalls" : 8, + "finishWall" : "139.63us", + "finishCpu" : "129.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 26, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 0, + "rleProbes" : 0, + "totalProbes" : 4 + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.166999999999999E-6, + "max" : 1.3124999999999999E-5, + "p01" : 5.166999999999999E-6, + "p05" : 5.166999999999999E-6, + "p10" : 5.166999999999999E-6, + "p25" : 7.957999999999999E-6, + "p50" : 1.2916999999999998E-5, + "p75" : 1.3124999999999999E-5, + "p90" : 1.3124999999999999E-5, + "p95" : 1.3124999999999999E-5, + "p99" : 1.3124999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 1.2999999999999998E-5, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 8.0E-6, + "p50" : 1.2999999999999998E-5, + "p75" : 1.2999999999999998E-5, + "p90" : 1.2999999999999998E-5, + "p95" : 1.2999999999999998E-5, + "p99" : 1.2999999999999998E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "39.17us", + "finishCpu" : "39.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.7.2.0", + "taskInstanceId" : 4087502377641107713, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.7.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "2.46kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "528.76kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.022912Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 15, + "totalPagesSent" : 9, + "utilization" : { + "min" : 0.0, + "max" : 2.02178955078125E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.8666234924436848E-5, + "total" : 869254000 + } + }, + "noMoreSplits" : [ "1987", "1986" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.151178Z", + "firstStartTime" : "2026-03-30T07:59:03.881980Z", + "lastStartTime" : "2026-03-30T07:59:03.928491Z", + "lastEndTime" : "2026-03-30T07:59:04.019Z", + "endTime" : "2026-03-30T07:59:04.022964Z", + "elapsedTime" : "866.50ms", + "queuedTime" : "725.49ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "528.76kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "10.21ms", + "totalCpuTime" : "4.80ms", + "totalBlockedTime" : "1.19s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "7.04kB", + "internalNetworkInputPositions" : 44, + "processedInputDataSize" : "6.56kB", + "processedInputPositions" : 44, + "inputBlockedTime" : "586.42ms", + "outputDataSize" : "2.46kB", + "outputPositions" : 15, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.881980Z", + "lastStartTime" : "2026-03-30T07:59:03.894398Z", + "lastEndTime" : "2026-03-30T07:59:04.005861Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.729743249E9, + "p01" : 6.76056375E8, + "p05" : 6.76056375E8, + "p10" : 6.76056375E8, + "p25" : 6.81045291E8, + "p50" : 6.84171625E8, + "p75" : 6.88469958E8, + "p90" : 6.88469958E8, + "p95" : 6.88469958E8, + "p99" : 6.88469958E8, + "min" : 6.76056375E8, + "max" : 6.88469958E8, + "avg" : 6.8243581225E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.196880208E9, + "p01" : 7.98685125E8, + "p05" : 7.98685125E8, + "p10" : 7.98685125E8, + "p25" : 7.98737541E8, + "p50" : 7.99525792E8, + "p75" : 7.9993175E8, + "p90" : 7.9993175E8, + "p95" : 7.9993175E8, + "p99" : 7.9993175E8, + "min" : 7.98685125E8, + "max" : 7.9993175E8, + "avg" : 7.99220052E8 + }, + "totalScheduledTime" : "624.25us", + "totalCpuTime" : "561.00us", + "totalBlockedTime" : "459.05ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "118B", + "internalNetworkInputPositions" : 3, + "processedInputDataSize" : "62B", + "processedInputPositions" : 3, + "inputBlockedTime" : "459.05ms", + "outputDataSize" : "62B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1987", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "118B", + "internalNetworkInputPositions" : 3, + "inputDataSize" : "62B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 1, + "getOutputWall" : "123.50us", + "getOutputCpu" : "99.00us", + "outputDataSize" : "62B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.899999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.899999999999998E-5, + "p90" : 9.899999999999998E-5, + "p95" : 9.899999999999998E-5, + "p99" : 9.899999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.10910979199999998, + "max" : 0.12002691699999998, + "p01" : 0.10910979199999998, + "p05" : 0.10910979199999998, + "p10" : 0.10910979199999998, + "p25" : 0.11338579099999999, + "p50" : 0.11652912499999998, + "p75" : 0.12002691699999998, + "p90" : 0.12002691699999998, + "p95" : 0.12002691699999998, + "p99" : 0.12002691699999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.235E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.235E-4, + "p90" : 1.235E-4, + "p95" : 1.235E-4, + "p99" : 1.235E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "459.05ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 176, + "averageBytesPerRequest" : 27, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 115.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 107.0, + "p50" : 114.0, + "p75" : 115.0, + "p90" : 115.0, + "p95" : 115.0, + "p99" : 115.0, + "total" : 4 + } + } + }, { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "161.33us", + "addInputCpu" : "142.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "62B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "62B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 1.5299999999999998E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 9.999999999999999E-5, + "p75" : 1.5299999999999998E-4, + "p90" : 1.5299999999999998E-4, + "p95" : 1.5299999999999998E-4, + "p99" : 1.5299999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0708999999999999E-5, + "max" : 1.7462499999999998E-4, + "p01" : 1.0708999999999999E-5, + "p05" : 1.0708999999999999E-5, + "p10" : 1.0708999999999999E-5, + "p25" : 1.2249999999999998E-5, + "p50" : 1.0166699999999999E-4, + "p75" : 1.7462499999999998E-4, + "p90" : 1.7462499999999998E-4, + "p95" : 1.7462499999999998E-4, + "p99" : 1.7462499999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "137.92us", + "finishCpu" : "130.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.897336Z", + "lastStartTime" : "2026-03-30T07:59:03.907436Z", + "lastEndTime" : "2026-03-30T07:59:04.019278Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.785017083E9, + "p01" : 6.91406708E8, + "p05" : 6.91406708E8, + "p10" : 6.91406708E8, + "p25" : 6.95239042E8, + "p50" : 6.97688333E8, + "p75" : 7.00683E8, + "p90" : 7.00683E8, + "p95" : 7.00683E8, + "p99" : 7.00683E8, + "min" : 6.91406708E8, + "max" : 7.00683E8, + "avg" : 6.9625427075E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.244411792E9, + "p01" : 8.09902792E8, + "p05" : 8.09902792E8, + "p10" : 8.09902792E8, + "p25" : 8.10560583E8, + "p50" : 8.10600417E8, + "p75" : 8.13348E8, + "p90" : 8.13348E8, + "p95" : 8.13348E8, + "p99" : 8.13348E8, + "min" : 8.09902792E8, + "max" : 8.13348E8, + "avg" : 8.11102948E8 + }, + "totalScheduledTime" : "3.48ms", + "totalCpuTime" : "1.70ms", + "totalBlockedTime" : "433.10ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "62B", + "processedInputPositions" : 3, + "inputBlockedTime" : "409.60ms", + "outputDataSize" : "62B", + "outputPositions" : 3, + "outputBlockedTime" : "23.50ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "62B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 2, + "getOutputWall" : "16.67us", + "getOutputCpu" : "15.00us", + "outputDataSize" : "62B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 8.0E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 6.999999999999999E-6, + "p75" : 8.0E-6, + "p90" : 8.0E-6, + "p95" : 8.0E-6, + "p99" : 8.0E-6, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09667387599999999, + "max" : 0.10851516699999998, + "p01" : 0.09667387599999999, + "p05" : 0.09667387599999999, + "p10" : 0.09667387599999999, + "p25" : 0.09973187499999998, + "p50" : 0.10467804099999999, + "p75" : 0.10851516699999998, + "p90" : 0.10851516699999998, + "p95" : 0.10851516699999998, + "p99" : 0.10851516699999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 8.75E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 7.916999999999999E-6, + "p75" : 8.75E-6, + "p90" : 8.75E-6, + "p95" : 8.75E-6, + "p99" : 8.75E-6, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "409.60ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "15.96us", + "addInputCpu" : "16.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "62B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 8, + "getOutputWall" : "58.58us", + "getOutputCpu" : "51.00us", + "outputDataSize" : "62B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.8999999999999997E-5, + "max" : 3.1199999999999994E-4, + "p01" : 2.8999999999999997E-5, + "p05" : 2.8999999999999997E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 7.899999999999998E-5, + "p50" : 1.0199999999999999E-4, + "p75" : 3.1199999999999994E-4, + "p90" : 3.1199999999999994E-4, + "p95" : 3.1199999999999994E-4, + "p99" : 3.1199999999999994E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.1542E-5, + "max" : 4.5812499999999993E-4, + "p01" : 3.1542E-5, + "p05" : 3.1542E-5, + "p10" : 3.1542E-5, + "p25" : 8.537399999999999E-5, + "p50" : 1.0466599999999999E-4, + "p75" : 4.5812499999999993E-4, + "p90" : 4.5812499999999993E-4, + "p95" : 4.5812499999999993E-4, + "p99" : 4.5812499999999993E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "605.17us", + "finishCpu" : "455.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "22.75us", + "addInputCpu" : "23.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "62B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "62B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.699999999999999E-5, + "max" : 8.199999999999999E-4, + "p01" : 3.699999999999999E-5, + "p05" : 3.699999999999999E-5, + "p10" : 3.699999999999999E-5, + "p25" : 5.899999999999999E-5, + "p50" : 1.4599999999999997E-4, + "p75" : 8.199999999999999E-4, + "p90" : 8.199999999999999E-4, + "p95" : 8.199999999999999E-4, + "p99" : 8.199999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0037582079999999994, + "max" : 0.006655957999999999, + "p01" : 0.0037582079999999994, + "p05" : 0.0037582079999999994, + "p10" : 0.0037582079999999994, + "p25" : 0.006464374999999999, + "p50" : 0.006617458999999999, + "p75" : 0.006655957999999999, + "p90" : 0.006655957999999999, + "p95" : 0.006655957999999999, + "p99" : 0.006655957999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.649999999999999E-5, + "max" : 0.0024307499999999998, + "p01" : 3.649999999999999E-5, + "p05" : 3.649999999999999E-5, + "p10" : 3.649999999999999E-5, + "p25" : 5.779199999999999E-5, + "p50" : 1.6404199999999999E-4, + "p75" : 0.0024307499999999998, + "p90" : 0.0024307499999999998, + "p95" : 0.0024307499999999998, + "p99" : 0.0024307499999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "23.50ms", + "finishCalls" : 8, + "finishWall" : "2.67ms", + "finishCpu" : "1.04ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.910581Z", + "lastStartTime" : "2026-03-30T07:59:03.928491Z", + "lastEndTime" : "2026-03-30T07:59:04.013310Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.857789708E9, + "p01" : 7.03824916E8, + "p05" : 7.03824916E8, + "p10" : 7.03824916E8, + "p25" : 7.1468725E8, + "p50" : 7.1754825E8, + "p75" : 7.21729292E8, + "p90" : 7.21729292E8, + "p95" : 7.21729292E8, + "p99" : 7.21729292E8, + "min" : 7.03824916E8, + "max" : 7.21729292E8, + "avg" : 7.14447427E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.221349832E9, + "p01" : 8.04183916E8, + "p05" : 8.04183916E8, + "p10" : 8.04183916E8, + "p25" : 8.05065167E8, + "p50" : 8.05550833E8, + "p75" : 8.06549916E8, + "p90" : 8.06549916E8, + "p95" : 8.06549916E8, + "p99" : 8.06549916E8, + "min" : 8.04183916E8, + "max" : 8.06549916E8, + "avg" : 8.05337458E8 + }, + "totalScheduledTime" : "6.11ms", + "totalCpuTime" : "2.54ms", + "totalBlockedTime" : "298.36ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "6.93kB", + "internalNetworkInputPositions" : 41, + "processedInputDataSize" : "6.50kB", + "processedInputPositions" : 41, + "inputBlockedTime" : "127.37ms", + "outputDataSize" : "2.46kB", + "outputPositions" : 15, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1986", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "6.93kB", + "internalNetworkInputPositions" : 41, + "inputDataSize" : "6.50kB", + "inputPositions" : 41, + "sumSquaredInputPositions" : 551.0, + "getOutputCalls" : 4, + "getOutputWall" : "1.49ms", + "getOutputCpu" : "377.00us", + "outputDataSize" : "6.50kB", + "outputPositions" : 41, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.699999999999999E-5, + "max" : 1.6699999999999997E-4, + "p01" : 4.699999999999999E-5, + "p05" : 4.699999999999999E-5, + "p10" : 4.699999999999999E-5, + "p25" : 5.599999999999999E-5, + "p50" : 1.0699999999999999E-4, + "p75" : 1.6699999999999997E-4, + "p90" : 1.6699999999999997E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 15.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 10.0, + "p50" : 15.0, + "p75" : 15.0, + "p90" : 15.0, + "p95" : 15.0, + "p99" : 15.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.026571582999999996, + "max" : 0.038854375, + "p01" : 0.026571582999999996, + "p05" : 0.026571582999999996, + "p10" : 0.026571582999999996, + "p25" : 0.028654958999999997, + "p50" : 0.033291749999999995, + "p75" : 0.038854375, + "p90" : 0.038854375, + "p95" : 0.038854375, + "p99" : 0.038854375, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.9124999999999995E-5, + "max" : 0.0011964579999999999, + "p01" : 4.9124999999999995E-5, + "p05" : 4.9124999999999995E-5, + "p10" : 4.9124999999999995E-5, + "p25" : 9.162499999999999E-5, + "p50" : 1.5445799999999998E-4, + "p75" : 0.0011964579999999999, + "p90" : 0.0011964579999999999, + "p95" : 0.0011964579999999999, + "p99" : 0.0011964579999999999, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "127.37ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 4392, + "averageBytesPerRequest" : 1011, + "successfulRequestsCount" : 28, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 44.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 3.0, + "p50" : 28.0, + "p75" : 38.0, + "p90" : 44.0, + "p95" : 44.0, + "p99" : 44.0, + "total" : 7 + } + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "11.38us", + "addInputCpu" : "24.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "6.50kB", + "inputPositions" : 41, + "sumSquaredInputPositions" : 551.0, + "getOutputCalls" : 15, + "getOutputWall" : "1.13ms", + "getOutputCpu" : "469.00us", + "outputDataSize" : "2.76kB", + "outputPositions" : 15, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.199999999999999E-5, + "max" : 2.3699999999999996E-4, + "p01" : 8.199999999999999E-5, + "p05" : 8.199999999999999E-5, + "p10" : 8.199999999999999E-5, + "p25" : 1.4499999999999997E-4, + "p50" : 1.8399999999999997E-4, + "p75" : 2.3699999999999996E-4, + "p90" : 2.3699999999999996E-4, + "p95" : 2.3699999999999996E-4, + "p99" : 2.3699999999999996E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 15.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 10.0, + "p50" : 15.0, + "p75" : 15.0, + "p90" : 15.0, + "p95" : 15.0, + "p99" : 15.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.030120665999999997, + "max" : 0.05710287499999999, + "p01" : 0.030120665999999997, + "p05" : 0.030120665999999997, + "p10" : 0.030120665999999997, + "p25" : 0.032842582999999995, + "p50" : 0.054860707999999994, + "p75" : 0.05710287499999999, + "p90" : 0.05710287499999999, + "p95" : 0.05710287499999999, + "p99" : 0.05710287499999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 7.650099999999999E-5, + "max" : 5.872089999999999E-4, + "p01" : 7.650099999999999E-5, + "p05" : 7.650099999999999E-5, + "p10" : 7.650099999999999E-5, + "p25" : 2.0687399999999996E-4, + "p50" : 4.5779099999999993E-4, + "p75" : 5.872089999999999E-4, + "p90" : 5.872089999999999E-4, + "p95" : 5.872089999999999E-4, + "p99" : 5.872089999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "174.93ms", + "finishCalls" : 11, + "finishWall" : "190.04us", + "finishCpu" : "155.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 26, 15, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 15, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 12, + "rleProbes" : 0, + "totalProbes" : 4 + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "1.29ms", + "addInputCpu" : "202.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "2.76kB", + "inputPositions" : 15, + "sumSquaredInputPositions" : 83.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "2.46kB", + "outputPositions" : 15, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 7.332999999999999E-6, + "max" : 0.0013860419999999999, + "p01" : 7.332999999999999E-6, + "p05" : 7.332999999999999E-6, + "p10" : 7.332999999999999E-6, + "p25" : 2.8575E-4, + "p50" : 0.0013020419999999998, + "p75" : 0.0013860419999999999, + "p90" : 0.0013860419999999999, + "p95" : 0.0013860419999999999, + "p99" : 0.0013860419999999999, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.0, + "p50" : 5.0, + "p75" : 7.0, + "p90" : 7.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 7.299999999999999E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 2.0499999999999997E-4, + "p50" : 2.87E-4, + "p75" : 7.299999999999999E-4, + "p90" : 7.299999999999999E-4, + "p95" : 7.299999999999999E-4, + "p99" : 7.299999999999999E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "1.69ms", + "finishCpu" : "1.03ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 6784 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.7.0.0", + "taskInstanceId" : 5833858974338846594, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.7.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "873B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "524.45kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.019178Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 5, + "totalPagesSent" : 4, + "utilization" : { + "min" : 0.0, + "max" : 7.224082946777344E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.3513734159291815E-6, + "total" : 868320000 + } + }, + "noMoreSplits" : [ "1987", "1986" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.153045Z", + "firstStartTime" : "2026-03-30T07:59:03.872671Z", + "lastStartTime" : "2026-03-30T07:59:03.908457Z", + "lastEndTime" : "2026-03-30T07:59:04.016Z", + "endTime" : "2026-03-30T07:59:04.021730Z", + "elapsedTime" : "865.74ms", + "queuedTime" : "716.67ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "524.45kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "10.83ms", + "totalCpuTime" : "3.39ms", + "totalBlockedTime" : "1.33s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "5.82kB", + "internalNetworkInputPositions" : 35, + "processedInputDataSize" : "5.46kB", + "processedInputPositions" : 35, + "inputBlockedTime" : "792.32ms", + "outputDataSize" : "873B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872671Z", + "lastStartTime" : "2026-03-30T07:59:03.888344Z", + "lastEndTime" : "2026-03-30T07:59:04.005954Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.697848375E9, + "p01" : 6.64628583E8, + "p05" : 6.64628583E8, + "p10" : 6.64628583E8, + "p25" : 6.75002667E8, + "p50" : 6.77923E8, + "p75" : 6.80294125E8, + "p90" : 6.80294125E8, + "p95" : 6.80294125E8, + "p99" : 6.80294125E8, + "min" : 6.64628583E8, + "max" : 6.80294125E8, + "avg" : 6.7446209375E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.189863792E9, + "p01" : 7.97310792E8, + "p05" : 7.97310792E8, + "p10" : 7.97310792E8, + "p25" : 7.97321667E8, + "p50" : 7.97328E8, + "p75" : 7.97903333E8, + "p90" : 7.97903333E8, + "p95" : 7.97903333E8, + "p99" : 7.97903333E8, + "min" : 7.97310792E8, + "max" : 7.97903333E8, + "avg" : 7.97465948E8 + }, + "totalScheduledTime" : "501.88us", + "totalCpuTime" : "479.00us", + "totalBlockedTime" : "485.94ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "106B", + "internalNetworkInputPositions" : 2, + "processedInputDataSize" : "48B", + "processedInputPositions" : 2, + "inputBlockedTime" : "485.94ms", + "outputDataSize" : "48B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1987", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "106B", + "internalNetworkInputPositions" : 2, + "inputDataSize" : "48B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 1, + "getOutputWall" : "38.58us", + "getOutputCpu" : "38.00us", + "outputDataSize" : "48B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 3.7999999999999995E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.7999999999999995E-5, + "p90" : 3.7999999999999995E-5, + "p95" : 3.7999999999999995E-5, + "p99" : 3.7999999999999995E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.11606587499999999, + "max" : 0.130073376, + "p01" : 0.11606587499999999, + "p05" : 0.11606587499999999, + "p10" : 0.11606587499999999, + "p25" : 0.11844058299999999, + "p50" : 0.12135904099999999, + "p75" : 0.130073376, + "p90" : 0.130073376, + "p95" : 0.130073376, + "p99" : 0.130073376, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 3.858299999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.858299999999999E-5, + "p90" : 3.858299999999999E-5, + "p95" : 3.858299999999999E-5, + "p99" : 3.858299999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "485.94ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 168, + "averageBytesPerRequest" : 24, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 123.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 117.0, + "p50" : 123.0, + "p75" : 123.0, + "p90" : 123.0, + "p95" : 123.0, + "p99" : 123.0, + "total" : 4 + } + } + }, { + "stageId" : 7, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "68.04us", + "addInputCpu" : "68.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "48B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "48B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 1.4099999999999998E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 1.1999999999999999E-5, + "p50" : 1.0099999999999999E-4, + "p75" : 1.4099999999999998E-4, + "p90" : 1.4099999999999998E-4, + "p95" : 1.4099999999999998E-4, + "p99" : 1.4099999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 7.124999999999999E-6, + "max" : 1.4833399999999997E-4, + "p01" : 7.124999999999999E-6, + "p05" : 7.124999999999999E-6, + "p10" : 7.124999999999999E-6, + "p25" : 1.4333999999999999E-5, + "p50" : 1.0995899999999998E-4, + "p75" : 1.4833399999999997E-4, + "p90" : 1.4833399999999997E-4, + "p95" : 1.4833399999999997E-4, + "p99" : 1.4833399999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "211.71us", + "finishCpu" : "192.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.889940Z", + "lastStartTime" : "2026-03-30T07:59:03.897073Z", + "lastEndTime" : "2026-03-30T07:59:04.016300Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.741830583E9, + "p01" : 6.81888208E8, + "p05" : 6.81888208E8, + "p10" : 6.81888208E8, + "p25" : 6.84165042E8, + "p50" : 6.86758958E8, + "p75" : 6.89018375E8, + "p90" : 6.89018375E8, + "p95" : 6.89018375E8, + "p99" : 6.89018375E8, + "min" : 6.81888208E8, + "max" : 6.89018375E8, + "avg" : 6.8545764575E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.232810875E9, + "p01" : 8.08157708E8, + "p05" : 8.08157708E8, + "p10" : 8.08157708E8, + "p25" : 8.08161042E8, + "p50" : 8.08245875E8, + "p75" : 8.0824625E8, + "p90" : 8.0824625E8, + "p95" : 8.0824625E8, + "p99" : 8.0824625E8, + "min" : 8.08157708E8, + "max" : 8.0824625E8, + "avg" : 8.0820271875E8 + }, + "totalScheduledTime" : "1.98ms", + "totalCpuTime" : "1.12ms", + "totalBlockedTime" : "471.19ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "48B", + "processedInputPositions" : 2, + "inputBlockedTime" : "447.62ms", + "outputDataSize" : "48B", + "outputPositions" : 2, + "outputBlockedTime" : "23.57ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2565", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "48B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 1, + "getOutputWall" : "15.88us", + "getOutputCpu" : "13.00us", + "outputDataSize" : "48B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.2999999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.2999999999999998E-5, + "p90" : 1.2999999999999998E-5, + "p95" : 1.2999999999999998E-5, + "p99" : 1.2999999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.10894029199999998, + "max" : 0.11375812499999999, + "p01" : 0.10894029199999998, + "p05" : 0.10894029199999998, + "p10" : 0.10894029199999998, + "p25" : 0.11119983399999998, + "p50" : 0.11372337499999999, + "p75" : 0.11375812499999999, + "p90" : 0.11375812499999999, + "p95" : 0.11375812499999999, + "p99" : 0.11375812499999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.5874999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.5874999999999996E-5, + "p90" : 1.5874999999999996E-5, + "p95" : 1.5874999999999996E-5, + "p99" : 1.5874999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "447.62ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "19.17us", + "addInputCpu" : "20.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "48B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 6, + "getOutputWall" : "41.25us", + "getOutputCpu" : "39.00us", + "outputDataSize" : "48B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 8.099999999999999E-5, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.2999999999999997E-5, + "p25" : 3.7999999999999995E-5, + "p50" : 7.099999999999999E-5, + "p75" : 8.099999999999999E-5, + "p90" : 8.099999999999999E-5, + "p95" : 8.099999999999999E-5, + "p99" : 8.099999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4874999999999995E-5, + "max" : 9.349899999999998E-5, + "p01" : 2.4874999999999995E-5, + "p05" : 2.4874999999999995E-5, + "p10" : 2.4874999999999995E-5, + "p25" : 4.104199999999999E-5, + "p50" : 7.341699999999999E-5, + "p75" : 9.349899999999998E-5, + "p90" : 9.349899999999998E-5, + "p95" : 9.349899999999998E-5, + "p99" : 9.349899999999998E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "172.42us", + "finishCpu" : "154.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 7, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "26.33us", + "addInputCpu" : "25.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "48B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "48B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 6.919999999999999E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.2999999999999997E-5, + "p25" : 4.7999999999999994E-5, + "p50" : 5.7999999999999994E-5, + "p75" : 6.919999999999999E-4, + "p90" : 6.919999999999999E-4, + "p95" : 6.919999999999999E-4, + "p99" : 6.919999999999999E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.004278832999999999, + "max" : 0.006771708999999999, + "p01" : 0.004278832999999999, + "p05" : 0.004278832999999999, + "p10" : 0.004278832999999999, + "p25" : 0.006202957999999999, + "p50" : 0.0063115409999999995, + "p75" : 0.006771708999999999, + "p90" : 0.006771708999999999, + "p95" : 0.006771708999999999, + "p99" : 0.006771708999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.3415999999999997E-5, + "max" : 0.0015379999999999999, + "p01" : 2.3415999999999997E-5, + "p05" : 2.3415999999999997E-5, + "p10" : 2.3415999999999997E-5, + "p25" : 4.6791999999999995E-5, + "p50" : 5.8333999999999994E-5, + "p75" : 0.0015379999999999999, + "p90" : 0.0015379999999999999, + "p95" : 0.0015379999999999999, + "p99" : 0.0015379999999999999, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "23.57ms", + "finishCalls" : 8, + "finishWall" : "1.64ms", + "finishCpu" : "796.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.899019Z", + "lastStartTime" : "2026-03-30T07:59:03.908457Z", + "lastEndTime" : "2026-03-30T07:59:04.013164Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.784028584E9, + "p01" : 6.90963333E8, + "p05" : 6.90963333E8, + "p10" : 6.90963333E8, + "p25" : 6.94936084E8, + "p50" : 6.97730917E8, + "p75" : 7.0039825E8, + "p90" : 7.0039825E8, + "p95" : 7.0039825E8, + "p99" : 7.0039825E8, + "min" : 6.90963333E8, + "max" : 7.0039825E8, + "avg" : 6.96007146E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.192265957E9, + "p01" : 7.79481291E8, + "p05" : 7.79481291E8, + "p10" : 7.79481291E8, + "p25" : 8.02962458E8, + "p50" : 8.04716458E8, + "p75" : 8.0510575E8, + "p90" : 8.0510575E8, + "p95" : 8.0510575E8, + "p99" : 8.0510575E8, + "min" : 7.79481291E8, + "max" : 8.0510575E8, + "avg" : 7.9806648925E8 + }, + "totalScheduledTime" : "8.35ms", + "totalCpuTime" : "1.80ms", + "totalBlockedTime" : "375.63ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "5.72kB", + "internalNetworkInputPositions" : 33, + "processedInputDataSize" : "5.42kB", + "processedInputPositions" : 33, + "inputBlockedTime" : "306.39ms", + "outputDataSize" : "873B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1986", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "5.72kB", + "internalNetworkInputPositions" : 33, + "inputDataSize" : "5.42kB", + "inputPositions" : 33, + "sumSquaredInputPositions" : 371.0, + "getOutputCalls" : 3, + "getOutputWall" : "185.50us", + "getOutputCpu" : "161.00us", + "outputDataSize" : "5.42kB", + "outputPositions" : 33, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 6.699999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 3.899999999999999E-5, + "p50" : 5.4999999999999995E-5, + "p75" : 6.699999999999999E-5, + "p90" : 6.699999999999999E-5, + "p95" : 6.699999999999999E-5, + "p99" : 6.699999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 13.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 9.0, + "p50" : 11.0, + "p75" : 13.0, + "p90" : 13.0, + "p95" : 13.0, + "p99" : 13.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.07297008299999999, + "max" : 0.080979083, + "p01" : 0.07297008299999999, + "p05" : 0.07297008299999999, + "p10" : 0.07297008299999999, + "p25" : 0.07374404099999998, + "p50" : 0.07869212499999999, + "p75" : 0.080979083, + "p90" : 0.080979083, + "p95" : 0.080979083, + "p99" : 0.080979083, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 4.141699999999999E-5, + "p50" : 7.008399999999999E-5, + "p75" : 7.399999999999998E-5, + "p90" : 7.399999999999998E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "306.39ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 2264, + "averageBytesPerRequest" : 973, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 75.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 3.0, + "p50" : 45.0, + "p75" : 54.0, + "p90" : 75.0, + "p95" : 75.0, + "p99" : 75.0, + "total" : 6 + } + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1688", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 3, + "addInputWall" : "7.08us", + "addInputCpu" : "11.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.42kB", + "inputPositions" : 33, + "sumSquaredInputPositions" : 371.0, + "getOutputCalls" : 13, + "getOutputWall" : "2.75ms", + "getOutputCpu" : "722.00us", + "outputDataSize" : "993B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.7999999999999997E-5, + "max" : 3.0099999999999994E-4, + "p01" : 1.7999999999999997E-5, + "p05" : 1.7999999999999997E-5, + "p10" : 1.7999999999999997E-5, + "p25" : 2.4999999999999995E-4, + "p50" : 2.76E-4, + "p75" : 3.0099999999999994E-4, + "p90" : 3.0099999999999994E-4, + "p95" : 3.0099999999999994E-4, + "p99" : 3.0099999999999994E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 13.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 9.0, + "p50" : 11.0, + "p75" : 13.0, + "p90" : 13.0, + "p95" : 13.0, + "p99" : 13.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.058043374999999994, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.027310208999999995, + "p50" : 0.05149920899999999, + "p75" : 0.058043374999999994, + "p90" : 0.058043374999999994, + "p95" : 0.058043374999999994, + "p99" : 0.058043374999999994, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.0332999999999997E-5, + "max" : 9.769979999999998E-4, + "p01" : 2.0332999999999997E-5, + "p05" : 2.0332999999999997E-5, + "p10" : 2.0332999999999997E-5, + "p25" : 9.396669999999998E-4, + "p50" : 9.470419999999998E-4, + "p75" : 9.769979999999998E-4, + "p90" : 9.769979999999998E-4, + "p95" : 9.769979999999998E-4, + "p99" : 9.769979999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "136.85ms", + "finishCalls" : 12, + "finishWall" : "124.00us", + "finishCpu" : "112.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 28, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 6, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 7, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1688", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "71.33us", + "addInputCpu" : "74.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "993B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "873B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 7.957999999999999E-6, + "max" : 0.0021617499999999996, + "p01" : 7.957999999999999E-6, + "p05" : 7.957999999999999E-6, + "p10" : 7.957999999999999E-6, + "p25" : 1.0416999999999999E-5, + "p50" : 0.0017550829999999997, + "p75" : 0.0021617499999999996, + "p90" : 0.0021617499999999996, + "p95" : 0.0021617499999999996, + "p99" : 0.0021617499999999996, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.8299999999999994E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.9699999999999996E-4, + "p75" : 2.8299999999999994E-4, + "p90" : 2.8299999999999994E-4, + "p95" : 2.8299999999999994E-4, + "p99" : 2.8299999999999994E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "3.86ms", + "finishCpu" : "426.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 2424 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.8", "20260330_075902_00004_iggau.9" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.13", + "state" : "FINISHED", + "plan" : { + "id" : "13", + "root" : { + "@type" : "filter", + "id" : "2228", + "source" : { + "@type" : "tableScan", + "id" : "9", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "partsupp", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "bigint", + "name" : "suppkey_17" + }, { + "type" : "double", + "name" : "supplycost_19" + } ], + "assignments" : { + "6|double|supplycost_19" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "supplycost", + "type" : "double" + }, + "6|bigint|suppkey_17" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "suppkey", + "type" : "bigint" + }, + "6|bigint|partkey_16" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "partkey", + "type" : "bigint" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey_17" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMjc=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "bigint", + "name" : "suppkey_17" + }, { + "type" : "double", + "name" : "supplycost_19" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "9" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey_17" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_16" + }, { + "type" : "bigint", + "name" : "suppkey_17" + }, { + "type" : "double", + "name" : "supplycost_19" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2228" : { + "outputRowCount" : 8000.0, + "symbolStatistics" : { + "6|bigint|suppkey_17" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "6|double|supplycost_19" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 7665.0 + } + } + }, + "9" : { + "outputRowCount" : 8000.0, + "symbolStatistics" : { + "6|bigint|suppkey_17" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|partkey_16" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "6|double|supplycost_19" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 7665.0 + } + } + } + }, + "costs" : { + "2228" : { + "cpuCost" : 432000.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "9" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2228\",\n \"name\" : \"ScanFilter\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:partsupp\",\n \"filterPredicate\" : \"\",\n \"dynamicFilters\" : \"{suppkey_17 = #df_2227}\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_16\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_17\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost_19\"\n } ],\n \"details\" : [ \"supplycost_19 := tpch:supplycost\", \"suppkey_17 := tpch:suppkey\", \"partkey_16 := tpch:partkey\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "bigint", "double" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.173410Z", + "getSplitDistribution" : { + "9" : { + "count" : 1.0, + "total" : 3291.0, + "p01" : 3291.0, + "p05" : 3291.0, + "p10" : 3291.0, + "p25" : 3291.0, + "p50" : 3291.0, + "p75" : 3291.0, + "p90" : 3291.0, + "p95" : 3291.0, + "p99" : 3291.0, + "min" : 3291.0, + "max" : 3291.0, + "avg" : 3291.0 + } + }, + "splitSourceMetrics" : { + "9" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 2.36166202245E7, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "114.81kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "119.50ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "24.41ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 8000, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "210.94kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 8000, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2410888208, + "min" : 0.0, + "max" : 0.002540111541748047, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0710244978088202E-4, + "p95" : 3.192257138886666E-4, + "p99" : 0.0017391187390850852 + }, + "outputDataSize" : "210.94kB", + "failedOutputDataSize" : "0B", + "outputPositions" : 8000, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 13, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2228", + "sourceId" : "9", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 8000, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 96, + "getOutputWall" : "33.21ms", + "getOutputCpu" : "18.53ms", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "1093689.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 8000 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3812499999999998E-4, + "max" : 0.005958833999999999, + "p01" : 1.3812499999999998E-4, + "p05" : 1.68833E-4, + "p10" : 1.7987499999999997E-4, + "p25" : 2.2299999999999997E-4, + "p50" : 3.1908399999999997E-4, + "p75" : 6.444579999999999E-4, + "p90" : 0.0018184579999999998, + "p95" : 0.0019701669999999997, + "p99" : 0.005958833999999999, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.3699999999999997E-4, + "max" : 0.0015719999999999998, + "p01" : 1.3699999999999997E-4, + "p05" : 1.6799999999999996E-4, + "p10" : 1.79E-4, + "p25" : 2.2099999999999998E-4, + "p50" : 2.98E-4, + "p75" : 4.269999999999999E-4, + "p90" : 6.779999999999999E-4, + "p95" : 0.0010029999999999998, + "p99" : 0.0015719999999999998, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2228", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "5.98ms", + "addInputCpu" : "2.92ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.712399999999999E-5, + "max" : 0.036545125, + "p01" : 3.712399999999999E-5, + "p05" : 3.7832999999999995E-5, + "p10" : 4.183299999999999E-5, + "p25" : 4.925099999999999E-5, + "p50" : 5.6748999999999995E-5, + "p75" : 1.0133399999999999E-4, + "p90" : 7.605419999999999E-4, + "p95" : 0.016544582999999998, + "p99" : 0.036545125, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 3.699999999999999E-5, + "max" : 5.149999999999999E-4, + "p01" : 3.699999999999999E-5, + "p05" : 3.7999999999999995E-5, + "p10" : 4.199999999999999E-5, + "p25" : 4.7999999999999994E-5, + "p50" : 5.7999999999999994E-5, + "p75" : 9.099999999999999E-5, + "p90" : 1.5699999999999997E-4, + "p95" : 4.0399999999999995E-4, + "p99" : 5.149999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "72.91ms", + "finishCpu" : "1.59ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.13.1.0", + "taskInstanceId" : 5153628933231155821, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.13.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "69.19kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "57.44kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.985127Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2624, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 0.002540111541748047, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 3.639556176650298E-4, + "p99" : 9.386539459228516E-4, + "total" : 818407334 + } + }, + "noMoreSplits" : [ "9" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.176160Z", + "firstStartTime" : "2026-03-30T07:59:03.872294Z", + "lastStartTime" : "2026-03-30T07:59:03.937905Z", + "lastEndTime" : "2026-03-30T07:59:03.974Z", + "endTime" : "2026-03-30T07:59:03.991888Z", + "elapsedTime" : "814.66ms", + "queuedTime" : "695.06ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 1.1690031738E7, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "57.44kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "49.61ms", + "totalCpuTime" : "8.47ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872293Z", + "lastStartTime" : "2026-03-30T07:59:03.937904Z", + "lastEndTime" : "2026-03-30T07:59:03.974627Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1122747125E10, + "p01" : 6.58274958E8, + "p05" : 6.58274958E8, + "p10" : 6.711545E8, + "p25" : 6.81875584E8, + "p50" : 6.943285E8, + "p75" : 7.15037958E8, + "p90" : 7.22064708E8, + "p95" : 7.23881208E8, + "p99" : 7.23881208E8, + "min" : 6.58274958E8, + "max" : 7.23881208E8, + "avg" : 6.951716953125E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1172335873E10, + "p01" : 6.60412083E8, + "p05" : 6.60412083E8, + "p10" : 6.7194125E8, + "p25" : 6.82654834E8, + "p50" : 6.95850333E8, + "p75" : 7.15575333E8, + "p90" : 7.22586541E8, + "p95" : 7.60603291E8, + "p99" : 7.60603291E8, + "min" : 6.60412083E8, + "max" : 7.60603291E8, + "avg" : 6.982709920625E8 + }, + "totalScheduledTime" : "49.61ms", + "totalCpuTime" : "8.47ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2228", + "sourceId" : "9", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 32, + "getOutputWall" : "8.20ms", + "getOutputCpu" : "6.40ms", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "341744.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 2624 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5879199999999997E-4, + "max" : 0.0019701669999999997, + "p01" : 1.5879199999999997E-4, + "p05" : 1.5879199999999997E-4, + "p10" : 1.8420799999999997E-4, + "p25" : 2.0904199999999997E-4, + "p50" : 3.9350099999999993E-4, + "p75" : 7.00541E-4, + "p90" : 0.00117875, + "p95" : 0.0019701669999999997, + "p99" : 0.0019701669999999997, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.5599999999999997E-4, + "max" : 0.0015719999999999998, + "p01" : 1.5599999999999997E-4, + "p05" : 1.5599999999999997E-4, + "p10" : 1.7999999999999998E-4, + "p25" : 2.0799999999999996E-4, + "p50" : 3.469999999999999E-4, + "p75" : 4.1899999999999994E-4, + "p90" : 6.779999999999999E-4, + "p95" : 0.0015719999999999998, + "p99" : 0.0015719999999999998, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2228", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "2.97ms", + "addInputCpu" : "993.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.712399999999999E-5, + "max" : 0.036545125, + "p01" : 3.712399999999999E-5, + "p05" : 3.712399999999999E-5, + "p10" : 4.4875999999999995E-5, + "p25" : 4.745799999999999E-5, + "p50" : 5.729199999999999E-5, + "p75" : 2.48208E-4, + "p90" : 0.0012959169999999997, + "p95" : 0.036545125, + "p99" : 0.036545125, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 3.699999999999999E-5, + "max" : 5.149999999999999E-4, + "p01" : 3.699999999999999E-5, + "p05" : 3.699999999999999E-5, + "p10" : 4.4999999999999996E-5, + "p25" : 4.7999999999999994E-5, + "p50" : 5.7999999999999994E-5, + "p75" : 1.0099999999999999E-4, + "p90" : 1.4599999999999997E-4, + "p95" : 5.149999999999999E-4, + "p99" : 5.149999999999999E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "36.60ms", + "finishCpu" : "570.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.13.2.0", + "taskInstanceId" : 3191359641972288714, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.13.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "72.56kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "54.91kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.946063Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2752, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 0.0018129348754882812, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0018129348754882812, + "total" : 786786791 + } + }, + "noMoreSplits" : [ "9" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.188378Z", + "firstStartTime" : "2026-03-30T07:59:03.873267Z", + "lastStartTime" : "2026-03-30T07:59:03.926662Z", + "lastEndTime" : "2026-03-30T07:59:03.943Z", + "endTime" : "2026-03-30T07:59:03.955762Z", + "elapsedTime" : "766.72ms", + "queuedTime" : "684.19ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "54.91kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "35.90ms", + "totalCpuTime" : "8.33ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2752, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "72.56kB", + "processedInputPositions" : 2752, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.873266Z", + "lastStartTime" : "2026-03-30T07:59:03.926661Z", + "lastEndTime" : "2026-03-30T07:59:03.943494Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0520348543E10, + "p01" : 6.31570292E8, + "p05" : 6.31570292E8, + "p10" : 6.40377E8, + "p25" : 6.47353083E8, + "p50" : 6.56718791E8, + "p75" : 6.69664542E8, + "p90" : 6.81777708E8, + "p95" : 6.8494975E8, + "p99" : 6.8494975E8, + "min" : 6.31570292E8, + "max" : 6.8494975E8, + "avg" : 6.575217839375E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0556244501E10, + "p01" : 6.38956375E8, + "p05" : 6.38956375E8, + "p10" : 6.40925167E8, + "p25" : 6.47734291E8, + "p50" : 6.5700175E8, + "p75" : 6.69947083E8, + "p90" : 6.82004208E8, + "p95" : 7.01780125E8, + "p99" : 7.01780125E8, + "min" : 6.38956375E8, + "max" : 7.01780125E8, + "avg" : 6.597652813125E8 + }, + "totalScheduledTime" : "35.90ms", + "totalCpuTime" : "8.33ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2752, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "72.56kB", + "processedInputPositions" : 2752, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2228", + "sourceId" : "9", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2752, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "72.56kB", + "inputPositions" : 2752, + "sumSquaredInputPositions" : 488704.0, + "getOutputCalls" : 32, + "getOutputWall" : "11.95ms", + "getOutputCpu" : "6.18ms", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 292.0, + "p99" : 292.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "399712.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 2752 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.7141599999999997E-4, + "max" : 0.005334708999999999, + "p01" : 1.7141599999999997E-4, + "p05" : 1.7141599999999997E-4, + "p10" : 1.9070699999999998E-4, + "p25" : 2.4004199999999996E-4, + "p50" : 2.98833E-4, + "p75" : 5.766249999999999E-4, + "p90" : 0.001953791, + "p95" : 0.005334708999999999, + "p99" : 0.005334708999999999, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.6999999999999999E-4, + "max" : 0.0010559999999999999, + "p01" : 1.6999999999999999E-4, + "p05" : 1.6999999999999999E-4, + "p10" : 1.8899999999999999E-4, + "p25" : 2.3799999999999996E-4, + "p50" : 2.98E-4, + "p75" : 4.7899999999999993E-4, + "p90" : 7.469999999999999E-4, + "p95" : 0.0010559999999999999, + "p99" : 0.0010559999999999999, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2228", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "2.17ms", + "addInputCpu" : "1.10ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "72.56kB", + "inputPositions" : 2752, + "sumSquaredInputPositions" : 488704.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.7374999999999994E-5, + "max" : 0.016544582999999998, + "p01" : 3.7374999999999994E-5, + "p05" : 3.7374999999999994E-5, + "p10" : 4.183299999999999E-5, + "p25" : 5.0249999999999995E-5, + "p50" : 7.374999999999999E-5, + "p75" : 1.5308299999999998E-4, + "p90" : 6.884999999999999E-4, + "p95" : 0.016544582999999998, + "p99" : 0.016544582999999998, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 292.0, + "p99" : 292.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 3.7999999999999995E-5, + "max" : 5.02E-4, + "p01" : 3.7999999999999995E-5, + "p05" : 3.7999999999999995E-5, + "p10" : 4.2999999999999995E-5, + "p25" : 4.899999999999999E-5, + "p50" : 6.5E-5, + "p75" : 1.0099999999999999E-4, + "p90" : 1.9399999999999997E-4, + "p95" : 5.02E-4, + "p99" : 5.02E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "16.61ms", + "finishCpu" : "568.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 60832 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.13.0.0", + "taskInstanceId" : -6280699871178134159, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.13.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "69.19kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "57.38kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.985641Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2624, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 0.002540111541748047, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.83861147484372E-4, + "p90" : 2.9627247807845566E-4, + "p95" : 3.3374292160981677E-4, + "p99" : 0.0017385535246482841, + "total" : 805694083 + } + }, + "noMoreSplits" : [ "9" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.184338Z", + "firstStartTime" : "2026-03-30T07:59:03.872865Z", + "lastStartTime" : "2026-03-30T07:59:03.955586Z", + "lastEndTime" : "2026-03-30T07:59:03.975Z", + "endTime" : "2026-03-30T07:59:03.993001Z", + "elapsedTime" : "802.51ms", + "queuedTime" : "682.38ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 1.19265884865E7, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "57.38kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "33.99ms", + "totalCpuTime" : "7.61ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872865Z", + "lastStartTime" : "2026-03-30T07:59:03.955586Z", + "lastEndTime" : "2026-03-30T07:59:03.975503Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1062559876E10, + "p01" : 6.55832042E8, + "p05" : 6.55832042E8, + "p10" : 6.65804667E8, + "p25" : 6.77172459E8, + "p50" : 6.89032959E8, + "p75" : 7.13106458E8, + "p90" : 7.18596083E8, + "p95" : 7.3852975E8, + "p99" : 7.3852975E8, + "min" : 6.55832042E8, + "max" : 7.3852975E8, + "avg" : 6.9140999225E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1096537042E10, + "p01" : 6.57785959E8, + "p05" : 6.57785959E8, + "p10" : 6.66311834E8, + "p25" : 6.77545709E8, + "p50" : 6.894015E8, + "p75" : 7.13342666E8, + "p90" : 7.18837292E8, + "p95" : 7.58445083E8, + "p99" : 7.58445083E8, + "min" : 6.57785959E8, + "max" : 7.58445083E8, + "avg" : 6.93533565125E8 + }, + "totalScheduledTime" : "33.99ms", + "totalCpuTime" : "7.61ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2228", + "sourceId" : "9", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 32, + "getOutputWall" : "13.06ms", + "getOutputCpu" : "5.95ms", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "352233.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 2624 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3812499999999998E-4, + "max" : 0.005958833999999999, + "p01" : 1.3812499999999998E-4, + "p05" : 1.3812499999999998E-4, + "p10" : 1.68833E-4, + "p25" : 2.4324899999999996E-4, + "p50" : 3.959589999999999E-4, + "p75" : 6.63709E-4, + "p90" : 0.0018184579999999998, + "p95" : 0.005958833999999999, + "p99" : 0.005958833999999999, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.3699999999999997E-4, + "max" : 0.0010029999999999998, + "p01" : 1.3699999999999997E-4, + "p05" : 1.3699999999999997E-4, + "p10" : 1.6799999999999996E-4, + "p25" : 2.3899999999999995E-4, + "p50" : 2.9299999999999997E-4, + "p75" : 4.919999999999999E-4, + "p90" : 6.409999999999999E-4, + "p95" : 0.0010029999999999998, + "p99" : 0.0010029999999999998, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 13, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2228", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "840.58us", + "addInputCpu" : "829.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.7832999999999995E-5, + "max" : 0.019651876, + "p01" : 3.7832999999999995E-5, + "p05" : 3.7832999999999995E-5, + "p10" : 4.0041999999999994E-5, + "p25" : 5.0082999999999995E-5, + "p50" : 5.3917999999999994E-5, + "p75" : 8.262499999999999E-5, + "p90" : 1.1912499999999998E-4, + "p95" : 0.019651876, + "p99" : 0.019651876, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 3.7999999999999995E-5, + "max" : 4.0399999999999995E-4, + "p01" : 3.7999999999999995E-5, + "p05" : 3.7999999999999995E-5, + "p10" : 3.899999999999999E-5, + "p25" : 4.7999999999999994E-5, + "p50" : 5.399999999999999E-5, + "p75" : 6.599999999999999E-5, + "p90" : 1.1999999999999998E-4, + "p95" : 4.0399999999999995E-4, + "p99" : 4.0399999999999995E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "19.70ms", + "finishCpu" : "448.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "9" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.partsupp", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.14", + "state" : "FINISHED", + "plan" : { + "id" : "14", + "root" : { + "@type" : "join", + "id" : "1718", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1992", + "sourceFragmentIds" : [ "15" ], + "outputs" : [ { + "type" : "bigint", + "name" : "suppkey_22" + }, { + "type" : "bigint", + "name" : "nationkey_25" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2568", + "type" : "REPARTITION", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey_30" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "nationkey_30" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1993", + "sourceFragmentIds" : [ "16" ], + "outputs" : [ { + "type" : "bigint", + "name" : "nationkey_30" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "nationkey_30" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "nationkey_25" + }, + "right" : { + "type" : "bigint", + "name" : "nationkey_30" + } + } ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "suppkey_22" + } ], + "rightOutputSymbols" : [ ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2229" : { + "type" : "bigint", + "name" : "nationkey_30" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 20.0, + "outputSizeInBytes" : 180.0, + "cpuCost" : 7354.0, + "memoryCost" : 54.0, + "networkCost" : 2304.0 + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "suppkey_22" + }, { + "type" : "bigint", + "name" : "nationkey_25" + }, { + "type" : "bigint", + "name" : "nationkey_30" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey_22" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey_22" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1718" : { + "outputRowCount" : 20.0, + "symbolStatistics" : { + "6|bigint|suppkey_22" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 20.0 + } + } + }, + "1992" : { + "outputRowCount" : 100.0, + "symbolStatistics" : { + "6|bigint|nationkey_25" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "6|bigint|suppkey_22" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + } + } + }, + "2568" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "6|bigint|nationkey_30" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + }, + "1993" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "6|bigint|nationkey_30" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + } + }, + "costs" : { + "1718" : { + "cpuCost" : 9595.0, + "maxMemory" : 54.0, + "maxMemoryWhenOutputting" : 45.0, + "networkCost" : 2304.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 2025.0, + "maxMemory" : 45.0, + "networkCost" : 0.0 + } + }, + "1992" : { + "cpuCost" : 5400.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 1800.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 1800.0, + "maxMemory" : 0.0, + "networkCost" : 1800.0 + } + }, + "2568" : { + "cpuCost" : 2170.0, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 504.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 45.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1993" : { + "cpuCost" : 2125.0, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 504.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 45.0, + "maxMemory" : 0.0, + "networkCost" : 45.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1718\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(nationkey_25 = nationkey_30)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_22\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {nationkey_30 -> #df_2229}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1992\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[15]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_22\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_25\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2568\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"HASH\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[nationkey_30::bigint]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_30\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1993\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[16]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_30\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.142603Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 36, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 36, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.51MB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "19.28ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "9.21ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "12.29s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "2.46kB", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 105, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.80kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 105, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "6.89s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2635358084, + "min" : 0.0, + "max" : 3.170967102050781E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "180B", + "failedOutputDataSize" : "0B", + "outputPositions" : 20, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 14, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1993", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "110B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 2, + "getOutputWall" : "86.00us", + "getOutputCpu" : "83.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.199999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 4.0999999999999994E-5, + "p95" : 4.199999999999999E-5, + "p99" : 4.199999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.09696966599999998, + "max" : 0.7825641249999998, + "p01" : 0.09696966599999998, + "p05" : 0.09696966599999998, + "p10" : 0.10000866699999998, + "p25" : 0.10629387399999998, + "p50" : 0.12115141699999998, + "p75" : 0.7764399169999999, + "p90" : 0.7775959999999998, + "p95" : 0.7825641249999998, + "p99" : 0.7825641249999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.345899999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 4.2541999999999994E-5, + "p95" : 4.345899999999999E-5, + "p99" : 4.345899999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.01s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 120, + "averageBytesPerRequest" : 8, + "successfulRequestsCount" : 44, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 772.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 131.0, + "p50" : 137.0, + "p75" : 770.0, + "p90" : 772.0, + "p95" : 772.0, + "p99" : 772.0, + "total" : 7 + } + } + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 3, + "getOutputWall" : "33.59us", + "getOutputCpu" : "30.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.0999999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 8.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 1.0999999999999998E-5, + "p99" : 1.0999999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.07843566699999999, + "max" : 0.7919113749999999, + "p01" : 0.07843566699999999, + "p05" : 0.07843566699999999, + "p10" : 0.08315220799999999, + "p25" : 0.10437741599999999, + "p50" : 0.11424624999999998, + "p75" : 0.7753752079999999, + "p90" : 0.7753993739999999, + "p95" : 0.7919113749999999, + "p99" : 0.7919113749999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.2207999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.499999999999999E-6, + "p90" : 1.1874999999999999E-5, + "p95" : 1.2207999999999999E-5, + "p99" : 1.2207999999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "4.58s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1992", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "2.35kB", + "internalNetworkInputPositions" : 100, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1250.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.14ms", + "getOutputCpu" : "1.01ms", + "outputDataSize" : "1.76kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.9999999999999996E-5, + "max" : 1.3499999999999997E-4, + "p01" : 3.9999999999999996E-5, + "p05" : 3.9999999999999996E-5, + "p10" : 4.599999999999999E-5, + "p25" : 4.899999999999999E-5, + "p50" : 9.499999999999999E-5, + "p75" : 1.0399999999999998E-4, + "p90" : 1.1899999999999998E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 22.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 3.0, + "p25" : 5.0, + "p50" : 6.0, + "p75" : 15.0, + "p90" : 16.0, + "p95" : 22.0, + "p99" : 22.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.7433796659999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.006962208999999999, + "p50" : 0.019339291999999998, + "p75" : 0.6784833749999999, + "p90" : 0.7110108339999999, + "p95" : 0.7433796659999999, + "p99" : 0.7433796659999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 4.0957999999999996E-5, + "max" : 1.6970799999999997E-4, + "p01" : 4.0957999999999996E-5, + "p05" : 4.0957999999999996E-5, + "p10" : 4.7666999999999996E-5, + "p25" : 4.908299999999999E-5, + "p50" : 1.0091699999999998E-4, + "p75" : 1.1470799999999999E-4, + "p90" : 1.6104099999999998E-4, + "p95" : 1.6970799999999997E-4, + "p99" : 1.6970799999999997E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.88s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1216, + "averageBytesPerRequest" : 123, + "successfulRequestsCount" : 76, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 721.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 3.0, + "p25" : 9.0, + "p50" : 33.0, + "p75" : 40.0, + "p90" : 704.0, + "p95" : 721.0, + "p99" : 721.0, + "total" : 13 + } + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 8, + "addInputWall" : "187.63us", + "addInputCpu" : "185.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "248B", + "inputPositions" : 20, + "sumSquaredInputPositions" : 78.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "180B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.207999999999999E-6, + "max" : 0.002285083, + "p01" : 9.207999999999999E-6, + "p05" : 9.207999999999999E-6, + "p10" : 1.1624999999999998E-5, + "p25" : 1.9416999999999997E-5, + "p50" : 1.5337499999999997E-4, + "p75" : 2.47874E-4, + "p90" : 7.527909999999999E-4, + "p95" : 0.002285083, + "p99" : 0.002285083, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 7.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.3099999999999998E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 1.0999999999999998E-5, + "p25" : 1.9999999999999998E-5, + "p50" : 1.2299999999999998E-4, + "p75" : 1.5399999999999998E-4, + "p90" : 1.8299999999999998E-4, + "p95" : 2.3099999999999998E-4, + "p99" : 2.3099999999999998E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "3.86ms", + "finishCpu" : "993.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1064 + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 15, + "addInputWall" : "1.09ms", + "addInputCpu" : "128.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 1250.0, + "getOutputCalls" : 42, + "getOutputWall" : "3.91ms", + "getOutputCpu" : "1.28ms", + "outputDataSize" : "248B", + "outputPositions" : 20, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.599999999999999E-5, + "max" : 2.49E-4, + "p01" : 6.599999999999999E-5, + "p05" : 6.599999999999999E-5, + "p10" : 8.199999999999999E-5, + "p25" : 9.799999999999998E-5, + "p50" : 1.3399999999999998E-4, + "p75" : 1.8199999999999998E-4, + "p90" : 2.3299999999999997E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 22.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 3.0, + "p25" : 5.0, + "p50" : 6.0, + "p75" : 15.0, + "p90" : 16.0, + "p95" : 22.0, + "p99" : 22.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.032915207999999994, + "max" : 0.09716308399999998, + "p01" : 0.032915207999999994, + "p05" : 0.032915207999999994, + "p10" : 0.034391416999999994, + "p25" : 0.05827458299999999, + "p50" : 0.07299729099999999, + "p75" : 0.09592495799999999, + "p90" : 0.09612883299999998, + "p95" : 0.09716308399999998, + "p99" : 0.09716308399999998, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.579299999999998E-5, + "max" : 0.0014088739999999998, + "p01" : 6.579299999999998E-5, + "p05" : 6.579299999999998E-5, + "p10" : 8.3542E-5, + "p25" : 9.883299999999998E-5, + "p50" : 1.55416E-4, + "p75" : 0.001054876, + "p90" : 0.0011483339999999998, + "p95" : 0.0014088739999999998, + "p99" : 0.0014088739999999998, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "840.34ms", + "finishCalls" : 28, + "finishWall" : "254.08us", + "finishCpu" : "253.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 80, 20, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 20, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 20, + "rleProbes" : 0, + "totalProbes" : 15 + } + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "49.00us", + "addInputCpu" : "49.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 2.1199999999999998E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.2999999999999996E-5, + "p25" : 4.599999999999999E-5, + "p50" : 8.099999999999999E-5, + "p75" : 1.6499999999999997E-4, + "p90" : 2.0599999999999997E-4, + "p95" : 2.1199999999999998E-4, + "p99" : 2.1199999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.003947999999999999, + "max" : 0.007425749999999999, + "p01" : 0.003947999999999999, + "p05" : 0.003947999999999999, + "p10" : 0.004199583, + "p25" : 0.004639083, + "p50" : 0.004949374999999999, + "p75" : 0.006694999999999999, + "p90" : 0.006882207999999999, + "p95" : 0.007425749999999999, + "p99" : 0.007425749999999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 0.0013883749999999999, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.304199999999999E-5, + "p25" : 4.4791999999999994E-5, + "p50" : 8.208399999999998E-5, + "p75" : 1.6354199999999997E-4, + "p90" : 2.0566599999999997E-4, + "p95" : 0.0013883749999999999, + "p99" : 0.0013883749999999999, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "63.52ms", + "finishCalls" : 24, + "finishWall" : "2.27ms", + "finishCpu" : "1.10ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 2, + "addInputWall" : "213.71us", + "addInputCpu" : "215.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 13.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 2.2999999999999998E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.0399999999999998E-4, + "p90" : 1.4199999999999998E-4, + "p95" : 2.2999999999999998E-4, + "p99" : 2.2999999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 2.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 6.041999999999999E-6, + "max" : 2.3416599999999995E-4, + "p01" : 6.041999999999999E-6, + "p05" : 6.041999999999999E-6, + "p10" : 6.749999999999999E-6, + "p25" : 8.0E-6, + "p50" : 1.1666999999999999E-5, + "p75" : 1.0612399999999999E-4, + "p90" : 1.4233299999999997E-4, + "p95" : 2.3416599999999995E-4, + "p99" : 2.3416599999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "506.38us", + "finishCpu" : "484.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "34.21us", + "addInputCpu" : "35.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "45B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 18, + "getOutputWall" : "308.46us", + "getOutputCpu" : "278.00us", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 2.0299999999999997E-4, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 2.9999999999999994E-5, + "p25" : 6.599999999999999E-5, + "p50" : 9.399999999999998E-5, + "p75" : 1.0299999999999998E-4, + "p90" : 1.0399999999999998E-4, + "p95" : 2.0299999999999997E-4, + "p99" : 2.0299999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9082999999999996E-5, + "max" : 7.887079999999998E-4, + "p01" : 2.9082999999999996E-5, + "p05" : 2.9082999999999996E-5, + "p10" : 3.3875E-5, + "p25" : 7.120899999999999E-5, + "p50" : 9.862499999999998E-5, + "p75" : 1.1445899999999998E-4, + "p90" : 3.987509999999999E-4, + "p95" : 7.887079999999998E-4, + "p99" : 7.887079999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "1.61ms", + "finishCpu" : "716.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.14.2.0", + "taskInstanceId" : 6005828283892814485, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.14.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "135B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "514.84kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.022743Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 15, + "totalPagesSent" : 9, + "utilization" : { + "min" : 0.0, + "max" : 3.170967102050781E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.8041540444215537E-6, + "total" : 879740583 + } + }, + "noMoreSplits" : [ "1993", "1992" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.144511Z", + "firstStartTime" : "2026-03-30T07:59:03.204506Z", + "lastStartTime" : "2026-03-30T07:59:03.952887Z", + "lastEndTime" : "2026-03-30T07:59:04.019Z", + "endTime" : "2026-03-30T07:59:04.025088Z", + "elapsedTime" : "877.52ms", + "queuedTime" : "56.90ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "514.84kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "7.12ms", + "totalCpuTime" : "3.77ms", + "totalBlockedTime" : "1.68s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "985B", + "internalNetworkInputPositions" : 44, + "processedInputDataSize" : "765B", + "processedInputPositions" : 44, + "inputBlockedTime" : "435.03ms", + "outputDataSize" : "135B", + "outputPositions" : 15, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.204505Z", + "lastStartTime" : "2026-03-30T07:59:03.205094Z", + "lastEndTime" : "2026-03-30T07:59:04.008697Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 1.3520918E7, + "p01" : 3111417.0, + "p05" : 3111417.0, + "p10" : 3111417.0, + "p25" : 3287084.0, + "p50" : 3431250.0, + "p75" : 3691167.0, + "p90" : 3691167.0, + "p95" : 3691167.0, + "p99" : 3691167.0, + "min" : 3111417.0, + "max" : 3691167.0, + "avg" : 3380229.5 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.226557626E9, + "p01" : 8.06359167E8, + "p05" : 8.06359167E8, + "p10" : 8.06359167E8, + "p25" : 8.06388875E8, + "p50" : 8.06523167E8, + "p75" : 8.07286417E8, + "p90" : 8.07286417E8, + "p95" : 8.07286417E8, + "p99" : 8.07286417E8, + "min" : 8.06359167E8, + "max" : 8.07286417E8, + "avg" : 8.066394065E8 + }, + "totalScheduledTime" : "873.21us", + "totalCpuTime" : "724.00us", + "totalBlockedTime" : "406.37ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "59B", + "internalNetworkInputPositions" : 3, + "processedInputDataSize" : "27B", + "processedInputPositions" : 3, + "inputBlockedTime" : "406.37ms", + "outputDataSize" : "27B", + "outputPositions" : 3, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1993", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "59B", + "internalNetworkInputPositions" : 3, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 1, + "getOutputWall" : "43.46us", + "getOutputCpu" : "42.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.199999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.199999999999999E-5, + "p90" : 4.199999999999999E-5, + "p95" : 4.199999999999999E-5, + "p99" : 4.199999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09696966599999998, + "max" : 0.10629387399999998, + "p01" : 0.09696966599999998, + "p05" : 0.09696966599999998, + "p10" : 0.09696966599999998, + "p25" : 0.10000866699999998, + "p50" : 0.10310037499999998, + "p75" : 0.10629387399999998, + "p90" : 0.10629387399999998, + "p95" : 0.10629387399999998, + "p99" : 0.10629387399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.345899999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.345899999999999E-5, + "p90" : 4.345899999999999E-5, + "p95" : 4.345899999999999E-5, + "p99" : 4.345899999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "406.37ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 120, + "averageBytesPerRequest" : 12, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 795.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 792.0, + "p50" : 792.0, + "p75" : 795.0, + "p90" : 795.0, + "p95" : 795.0, + "p99" : 795.0, + "total" : 4 + } + } + }, { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "131.17us", + "addInputCpu" : "132.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 9.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 2.2999999999999998E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 1.4199999999999998E-4, + "p75" : 2.2999999999999998E-4, + "p90" : 2.2999999999999998E-4, + "p95" : 2.2999999999999998E-4, + "p99" : 2.2999999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 3.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.0, + "p90" : 3.0, + "p95" : 3.0, + "p99" : 3.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.0E-6, + "max" : 2.3416599999999995E-4, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 9.083999999999998E-6, + "p50" : 1.4233299999999997E-4, + "p75" : 2.3416599999999995E-4, + "p90" : 2.3416599999999995E-4, + "p95" : 2.3416599999999995E-4, + "p99" : 2.3416599999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "262.42us", + "finishCpu" : "253.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.216553Z", + "lastStartTime" : "2026-03-30T07:59:03.928423Z", + "lastEndTime" : "2026-03-30T07:59:04.019064Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.184777457E9, + "p01" : 1.5146708E7, + "p05" : 1.5146708E7, + "p10" : 1.5146708E7, + "p25" : 7.19320541E8, + "p50" : 7.233025E8, + "p75" : 7.27007708E8, + "p90" : 7.27007708E8, + "p95" : 7.27007708E8, + "p99" : 7.27007708E8, + "min" : 1.5146708E7, + "max" : 7.27007708E8, + "avg" : 5.4619436425E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.262413625E9, + "p01" : 8.14399875E8, + "p05" : 8.14399875E8, + "p10" : 8.14399875E8, + "p25" : 8.14423041E8, + "p50" : 8.15942042E8, + "p75" : 8.17648667E8, + "p90" : 8.17648667E8, + "p95" : 8.17648667E8, + "p99" : 8.17648667E8, + "min" : 8.14399875E8, + "max" : 8.17648667E8, + "avg" : 8.1560340625E8 + }, + "totalScheduledTime" : "1.86ms", + "totalCpuTime" : "971.00us", + "totalBlockedTime" : "1.06s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "27B", + "processedInputPositions" : 3, + "inputBlockedTime" : "1.04s", + "outputDataSize" : "27B", + "outputPositions" : 3, + "outputBlockedTime" : "20.02ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 2, + "getOutputWall" : "21.38us", + "getOutputCpu" : "20.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.0999999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 8.999999999999999E-6, + "p75" : 1.0999999999999998E-5, + "p90" : 1.0999999999999998E-5, + "p95" : 1.0999999999999998E-5, + "p99" : 1.0999999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.07843566699999999, + "max" : 0.7919113749999999, + "p01" : 0.07843566699999999, + "p05" : 0.07843566699999999, + "p10" : 0.07843566699999999, + "p25" : 0.08315220799999999, + "p50" : 0.08796541699999999, + "p75" : 0.7919113749999999, + "p90" : 0.7919113749999999, + "p95" : 0.7919113749999999, + "p99" : 0.7919113749999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.1874999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 9.499999999999999E-6, + "p75" : 1.1874999999999999E-5, + "p90" : 1.1874999999999999E-5, + "p95" : 1.1874999999999999E-5, + "p99" : 1.1874999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.04s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "22.58us", + "addInputCpu" : "23.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 8, + "getOutputWall" : "172.54us", + "getOutputCpu" : "155.00us", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.899999999999998E-5, + "max" : 2.0299999999999997E-4, + "p01" : 8.899999999999998E-5, + "p05" : 8.899999999999998E-5, + "p10" : 8.899999999999998E-5, + "p25" : 9.399999999999998E-5, + "p50" : 1.0299999999999998E-4, + "p75" : 2.0299999999999997E-4, + "p90" : 2.0299999999999997E-4, + "p95" : 2.0299999999999997E-4, + "p99" : 2.0299999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.987499999999999E-5, + "max" : 7.887079999999998E-4, + "p01" : 8.987499999999999E-5, + "p05" : 8.987499999999999E-5, + "p10" : 8.987499999999999E-5, + "p25" : 9.862499999999998E-5, + "p50" : 3.987509999999999E-4, + "p75" : 7.887079999999998E-4, + "p90" : 7.887079999999998E-4, + "p95" : 7.887079999999998E-4, + "p99" : 7.887079999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "1.18ms", + "finishCpu" : "311.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 2, + "addInputWall" : "31.04us", + "addInputCpu" : "31.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "27B", + "inputPositions" : 3, + "sumSquaredInputPositions" : 5.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "27B", + "outputPositions" : 3, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.4999999999999995E-5, + "max" : 1.6499999999999997E-4, + "p01" : 5.4999999999999995E-5, + "p05" : 5.4999999999999995E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 6.4E-5, + "p50" : 8.099999999999999E-5, + "p75" : 1.6499999999999997E-4, + "p90" : 1.6499999999999997E-4, + "p95" : 1.6499999999999997E-4, + "p99" : 1.6499999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.004199583, + "max" : 0.0057019589999999995, + "p01" : 0.004199583, + "p05" : 0.004199583, + "p10" : 0.004199583, + "p25" : 0.0046460419999999995, + "p50" : 0.0054728749999999994, + "p75" : 0.0057019589999999995, + "p90" : 0.0057019589999999995, + "p95" : 0.0057019589999999995, + "p99" : 0.0057019589999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 5.383299999999999E-5, + "max" : 1.6354199999999997E-4, + "p01" : 5.383299999999999E-5, + "p05" : 5.383299999999999E-5, + "p10" : 5.383299999999999E-5, + "p25" : 6.2041E-5, + "p50" : 8.208399999999998E-5, + "p75" : 1.6354199999999997E-4, + "p90" : 1.6354199999999997E-4, + "p95" : 1.6354199999999997E-4, + "p99" : 1.6354199999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "20.02ms", + "finishCalls" : 8, + "finishWall" : "330.46us", + "finishCpu" : "334.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.930228Z", + "lastStartTime" : "2026-03-30T07:59:03.952886Z", + "lastEndTime" : "2026-03-30T07:59:04.014149Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.950070166E9, + "p01" : 7.28810083E8, + "p05" : 7.28810083E8, + "p10" : 7.28810083E8, + "p25" : 7.33729958E8, + "p50" : 7.36065834E8, + "p75" : 7.51464291E8, + "p90" : 7.51464291E8, + "p95" : 7.51464291E8, + "p99" : 7.51464291E8, + "min" : 7.28810083E8, + "max" : 7.51464291E8, + "avg" : 7.375175415E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.248578707E9, + "p01" : 8.11398041E8, + "p05" : 8.11398041E8, + "p10" : 8.11398041E8, + "p25" : 8.12206833E8, + "p50" : 8.12247458E8, + "p75" : 8.12726375E8, + "p90" : 8.12726375E8, + "p95" : 8.12726375E8, + "p99" : 8.12726375E8, + "min" : 8.11398041E8, + "max" : 8.12726375E8, + "avg" : 8.1214467675E8 + }, + "totalScheduledTime" : "4.39ms", + "totalCpuTime" : "2.07ms", + "totalBlockedTime" : "210.20ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "926B", + "internalNetworkInputPositions" : 41, + "processedInputDataSize" : "738B", + "processedInputPositions" : 41, + "inputBlockedTime" : "28.66ms", + "outputDataSize" : "135B", + "outputPositions" : 15, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1992", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "926B", + "internalNetworkInputPositions" : 41, + "inputDataSize" : "738B", + "inputPositions" : 41, + "sumSquaredInputPositions" : 531.0, + "getOutputCalls" : 6, + "getOutputWall" : "470.67us", + "getOutputCpu" : "389.00us", + "outputDataSize" : "738B", + "outputPositions" : 41, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.9999999999999996E-5, + "max" : 1.3499999999999997E-4, + "p01" : 3.9999999999999996E-5, + "p05" : 3.9999999999999996E-5, + "p10" : 3.9999999999999996E-5, + "p25" : 9.499999999999999E-5, + "p50" : 1.1899999999999998E-4, + "p75" : 1.3499999999999997E-4, + "p90" : 1.3499999999999997E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 5.0, + "max" : 16.0, + "p01" : 5.0, + "p05" : 5.0, + "p10" : 5.0, + "p25" : 5.0, + "p50" : 15.0, + "p75" : 16.0, + "p90" : 16.0, + "p95" : 16.0, + "p99" : 16.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.012431874999999998, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.006962208999999999, + "p50" : 0.009262208, + "p75" : 0.012431874999999998, + "p90" : 0.012431874999999998, + "p95" : 0.012431874999999998, + "p99" : 0.012431874999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.0957999999999996E-5, + "max" : 1.6970799999999997E-4, + "p01" : 4.0957999999999996E-5, + "p05" : 4.0957999999999996E-5, + "p10" : 4.0957999999999996E-5, + "p25" : 9.895899999999999E-5, + "p50" : 1.6104099999999998E-4, + "p75" : 1.6970799999999997E-4, + "p90" : 1.6970799999999997E-4, + "p95" : 1.6970799999999997E-4, + "p99" : 1.6970799999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "28.66ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 1216, + "averageBytesPerRequest" : 152, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 18.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 10.0, + "p75" : 13.0, + "p90" : 18.0, + "p95" : 18.0, + "p99" : 18.0, + "total" : 6 + } + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "1.06ms", + "addInputCpu" : "94.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "738B", + "inputPositions" : 41, + "sumSquaredInputPositions" : 531.0, + "getOutputCalls" : 15, + "getOutputWall" : "1.67ms", + "getOutputCpu" : "465.00us", + "outputDataSize" : "195B", + "outputPositions" : 15, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.799999999999998E-5, + "max" : 2.3299999999999997E-4, + "p01" : 9.799999999999998E-5, + "p05" : 9.799999999999998E-5, + "p10" : 9.799999999999998E-5, + "p25" : 1.7799999999999996E-4, + "p50" : 1.8199999999999998E-4, + "p75" : 2.3299999999999997E-4, + "p90" : 2.3299999999999997E-4, + "p95" : 2.3299999999999997E-4, + "p99" : 2.3299999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 5.0, + "max" : 16.0, + "p01" : 5.0, + "p05" : 5.0, + "p10" : 5.0, + "p25" : 5.0, + "p50" : 15.0, + "p75" : 16.0, + "p90" : 16.0, + "p95" : 16.0, + "p99" : 16.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.032915207999999994, + "max" : 0.05827458299999999, + "p01" : 0.032915207999999994, + "p05" : 0.032915207999999994, + "p10" : 0.032915207999999994, + "p25" : 0.034391416999999994, + "p50" : 0.055955916999999994, + "p75" : 0.05827458299999999, + "p90" : 0.05827458299999999, + "p95" : 0.05827458299999999, + "p99" : 0.05827458299999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 9.883299999999998E-5, + "max" : 0.0014088739999999998, + "p01" : 9.883299999999998E-5, + "p05" : 9.883299999999998E-5, + "p10" : 9.883299999999998E-5, + "p25" : 1.9816699999999996E-4, + "p50" : 0.0011483339999999998, + "p75" : 0.0014088739999999998, + "p90" : 0.0014088739999999998, + "p95" : 0.0014088739999999998, + "p99" : 0.0014088739999999998, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "181.54ms", + "finishCalls" : 12, + "finishWall" : "125.29us", + "finishCpu" : "132.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 26, 15, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 15, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 12, + "rleProbes" : 0, + "totalProbes" : 5 + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "111.46us", + "addInputCpu" : "107.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "195B", + "inputPositions" : 15, + "sumSquaredInputPositions" : 71.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "135B", + "outputPositions" : 15, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.22875E-4, + "max" : 2.47874E-4, + "p01" : 1.22875E-4, + "p05" : 1.22875E-4, + "p10" : 1.22875E-4, + "p25" : 1.5337499999999997E-4, + "p50" : 1.5804199999999998E-4, + "p75" : 2.47874E-4, + "p90" : 2.47874E-4, + "p95" : 2.47874E-4, + "p99" : 2.47874E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 7.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 3.0, + "p50" : 3.0, + "p75" : 7.0, + "p90" : 7.0, + "p95" : 7.0, + "p99" : 7.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 1.2299999999999998E-4, + "max" : 2.3099999999999998E-4, + "p01" : 1.2299999999999998E-4, + "p05" : 1.2299999999999998E-4, + "p10" : 1.2299999999999998E-4, + "p25" : 1.4199999999999998E-4, + "p50" : 1.5399999999999998E-4, + "p75" : 2.3099999999999998E-4, + "p90" : 2.3099999999999998E-4, + "p95" : 2.3099999999999998E-4, + "p99" : 2.3099999999999998E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "570.71us", + "finishCpu" : "543.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1064 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.14.0.0", + "taskInstanceId" : -6218687373923558449, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.14.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "45B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "514.88kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.022825Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 5, + "totalPagesSent" : 5, + "utilization" : { + "min" : 0.0, + "max" : 9.298324584960938E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 2.1319112001574815E-6, + "total" : 878385292 + } + }, + "noMoreSplits" : [ "1993", "1992" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.143423Z", + "firstStartTime" : "2026-03-30T07:59:03.219505Z", + "lastStartTime" : "2026-03-30T07:59:03.237117Z", + "lastEndTime" : "2026-03-30T07:59:04.019Z", + "endTime" : "2026-03-30T07:59:04.023258Z", + "elapsedTime" : "875.29ms", + "queuedTime" : "71.53ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "514.88kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "9.29ms", + "totalCpuTime" : "3.37ms", + "totalBlockedTime" : "9.31s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "849B", + "internalNetworkInputPositions" : 35, + "processedInputDataSize" : "612B", + "processedInputPositions" : 35, + "inputBlockedTime" : "5.92s", + "outputDataSize" : "45B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.219505Z", + "lastStartTime" : "2026-03-30T07:59:03.226280Z", + "lastEndTime" : "2026-03-30T07:59:04.007181Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.7949584E7, + "p01" : 2074875.0, + "p05" : 2074875.0, + "p10" : 2074875.0, + "p25" : 8420167.0, + "p50" : 8607250.0, + "p75" : 8847292.0, + "p90" : 8847292.0, + "p95" : 8847292.0, + "p99" : 8847292.0, + "min" : 2074875.0, + "max" : 8847292.0, + "avg" : 6987396.0 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.157348542E9, + "p01" : 7.8914525E8, + "p05" : 7.8914525E8, + "p10" : 7.8914525E8, + "p25" : 7.89147083E8, + "p50" : 7.89315375E8, + "p75" : 7.89740834E8, + "p90" : 7.89740834E8, + "p95" : 7.89740834E8, + "p99" : 7.89740834E8, + "min" : 7.8914525E8, + "max" : 7.89740834E8, + "avg" : 7.893371355E8 + }, + "totalScheduledTime" : "768.92us", + "totalCpuTime" : "610.00us", + "totalBlockedTime" : "3.11s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "51B", + "internalNetworkInputPositions" : 2, + "processedInputDataSize" : "18B", + "processedInputPositions" : 2, + "inputBlockedTime" : "3.11s", + "outputDataSize" : "18B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1993", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "51B", + "internalNetworkInputPositions" : 2, + "inputDataSize" : "18B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 1, + "getOutputWall" : "42.54us", + "getOutputCpu" : "41.00us", + "outputDataSize" : "18B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.0999999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.0999999999999994E-5, + "p90" : 4.0999999999999994E-5, + "p95" : 4.0999999999999994E-5, + "p99" : 4.0999999999999994E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7762549589999999, + "max" : 0.7825641249999998, + "p01" : 0.7762549589999999, + "p05" : 0.7762549589999999, + "p10" : 0.7762549589999999, + "p25" : 0.7764399169999999, + "p50" : 0.7775959999999998, + "p75" : 0.7825641249999998, + "p90" : 0.7825641249999998, + "p95" : 0.7825641249999998, + "p99" : 0.7825641249999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.2541999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.2541999999999994E-5, + "p90" : 4.2541999999999994E-5, + "p95" : 4.2541999999999994E-5, + "p99" : 4.2541999999999994E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.11s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 112, + "averageBytesPerRequest" : 12, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 772.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 770.0, + "p50" : 770.0, + "p75" : 772.0, + "p90" : 772.0, + "p95" : 772.0, + "p99" : 772.0, + "total" : 4 + } + } + }, { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "82.54us", + "addInputCpu" : "83.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "18B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "18B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.0399999999999998E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.499999999999999E-5, + "p75" : 1.0399999999999998E-4, + "p90" : 1.0399999999999998E-4, + "p95" : 1.0399999999999998E-4, + "p99" : 1.0399999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0333E-5, + "max" : 1.0612399999999999E-4, + "p01" : 1.0333E-5, + "p05" : 1.0333E-5, + "p10" : 1.0333E-5, + "p25" : 1.1666999999999999E-5, + "p50" : 9.637499999999998E-5, + "p75" : 1.0612399999999999E-4, + "p90" : 1.0612399999999999E-4, + "p95" : 1.0612399999999999E-4, + "p99" : 1.0612399999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "141.96us", + "finishCpu" : "135.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.231260Z", + "lastStartTime" : "2026-03-30T07:59:03.233106Z", + "lastEndTime" : "2026-03-30T07:59:04.019765Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 5.9483584E7, + "p01" : 1.3826917E7, + "p05" : 1.3826917E7, + "p10" : 1.3826917E7, + "p25" : 1.4591167E7, + "p50" : 1.5395208E7, + "p75" : 1.5670292E7, + "p90" : 1.5670292E7, + "p95" : 1.5670292E7, + "p99" : 1.5670292E7, + "min" : 1.3826917E7, + "max" : 1.5670292E7, + "avg" : 1.4870896E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.205032709E9, + "p01" : 8.00325125E8, + "p05" : 8.00325125E8, + "p10" : 8.00325125E8, + "p25" : 8.00675625E8, + "p50" : 8.01708667E8, + "p75" : 8.02323292E8, + "p90" : 8.02323292E8, + "p95" : 8.02323292E8, + "p99" : 8.02323292E8, + "min" : 8.00325125E8, + "max" : 8.02323292E8, + "avg" : 8.0125817725E8 + }, + "totalScheduledTime" : "2.11ms", + "totalCpuTime" : "903.00us", + "totalBlockedTime" : "3.13s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "18B", + "processedInputPositions" : 2, + "inputBlockedTime" : "3.10s", + "outputDataSize" : "18B", + "outputPositions" : 2, + "outputBlockedTime" : "25.95ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "18B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 1, + "getOutputWall" : "12.21us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "18B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.999999999999999E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7742697919999999, + "max" : 0.7753993739999999, + "p01" : 0.7742697919999999, + "p05" : 0.7742697919999999, + "p10" : 0.7742697919999999, + "p25" : 0.7745624999999999, + "p50" : 0.7753752079999999, + "p75" : 0.7753993739999999, + "p90" : 0.7753993739999999, + "p95" : 0.7753993739999999, + "p99" : 0.7753993739999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.2207999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.2207999999999999E-5, + "p90" : 1.2207999999999999E-5, + "p95" : 1.2207999999999999E-5, + "p99" : 1.2207999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.10s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "11.63us", + "addInputCpu" : "12.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "18B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 6, + "getOutputWall" : "87.42us", + "getOutputCpu" : "81.00us", + "outputDataSize" : "18B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.599999999999999E-5, + "max" : 1.0399999999999998E-4, + "p01" : 6.599999999999999E-5, + "p05" : 6.599999999999999E-5, + "p10" : 6.599999999999999E-5, + "p25" : 7.099999999999999E-5, + "p50" : 9.999999999999999E-5, + "p75" : 1.0399999999999998E-4, + "p90" : 1.0399999999999998E-4, + "p95" : 1.0399999999999998E-4, + "p99" : 1.0399999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 7.120899999999999E-5, + "max" : 1.1445899999999998E-4, + "p01" : 7.120899999999999E-5, + "p05" : 7.120899999999999E-5, + "p10" : 7.120899999999999E-5, + "p25" : 7.337399999999999E-5, + "p50" : 1.0804199999999998E-4, + "p75" : 1.1445899999999998E-4, + "p90" : 1.1445899999999998E-4, + "p95" : 1.1445899999999998E-4, + "p99" : 1.1445899999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "268.04us", + "finishCpu" : "248.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "17.96us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "18B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "18B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.9999999999999996E-5, + "max" : 2.1199999999999998E-4, + "p01" : 3.9999999999999996E-5, + "p05" : 3.9999999999999996E-5, + "p10" : 3.9999999999999996E-5, + "p25" : 8.899999999999998E-5, + "p50" : 1.29E-4, + "p75" : 2.1199999999999998E-4, + "p90" : 2.1199999999999998E-4, + "p95" : 2.1199999999999998E-4, + "p99" : 2.1199999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 2.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.004949374999999999, + "max" : 0.007425749999999999, + "p01" : 0.004949374999999999, + "p05" : 0.004949374999999999, + "p10" : 0.004949374999999999, + "p25" : 0.006694999999999999, + "p50" : 0.006882207999999999, + "p75" : 0.007425749999999999, + "p90" : 0.007425749999999999, + "p95" : 0.007425749999999999, + "p99" : 0.007425749999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.899999999999999E-5, + "max" : 0.0013883749999999999, + "p01" : 3.899999999999999E-5, + "p05" : 3.899999999999999E-5, + "p10" : 3.899999999999999E-5, + "p25" : 8.924999999999999E-5, + "p50" : 1.2729099999999997E-4, + "p75" : 0.0013883749999999999, + "p90" : 0.0013883749999999999, + "p95" : 0.0013883749999999999, + "p99" : 0.0013883749999999999, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "25.95ms", + "finishCalls" : 8, + "finishWall" : "1.63ms", + "finishCpu" : "452.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.234689Z", + "lastStartTime" : "2026-03-30T07:59:03.237117Z", + "lastEndTime" : "2026-03-30T07:59:04.015226Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 7.2883625E7, + "p01" : 1.7253292E7, + "p05" : 1.7253292E7, + "p10" : 1.7253292E7, + "p25" : 1.76545E7, + "p50" : 1.8295625E7, + "p75" : 1.9680208E7, + "p90" : 1.9680208E7, + "p95" : 1.9680208E7, + "p99" : 1.9680208E7, + "min" : 1.7253292E7, + "max" : 1.9680208E7, + "avg" : 1.822090625E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.183681167E9, + "p01" : 7.93617875E8, + "p05" : 7.93617875E8, + "p10" : 7.93617875E8, + "p25" : 7.95458125E8, + "p50" : 7.96822125E8, + "p75" : 7.97783042E8, + "p90" : 7.97783042E8, + "p95" : 7.97783042E8, + "p99" : 7.97783042E8, + "min" : 7.93617875E8, + "max" : 7.97783042E8, + "avg" : 7.9592029175E8 + }, + "totalScheduledTime" : "6.41ms", + "totalCpuTime" : "1.86ms", + "totalBlockedTime" : "3.07s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "798B", + "internalNetworkInputPositions" : 33, + "processedInputDataSize" : "594B", + "processedInputPositions" : 33, + "inputBlockedTime" : "2.81s", + "outputDataSize" : "45B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1992", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "798B", + "internalNetworkInputPositions" : 33, + "inputDataSize" : "594B", + "inputPositions" : 33, + "sumSquaredInputPositions" : 529.0, + "getOutputCalls" : 5, + "getOutputWall" : "318.17us", + "getOutputCpu" : "303.00us", + "outputDataSize" : "594B", + "outputPositions" : 33, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.7999999999999994E-5, + "max" : 1.0399999999999998E-4, + "p01" : 4.7999999999999994E-5, + "p05" : 4.7999999999999994E-5, + "p10" : 4.7999999999999994E-5, + "p25" : 4.899999999999999E-5, + "p50" : 1.0199999999999999E-4, + "p75" : 1.0399999999999998E-4, + "p90" : 1.0399999999999998E-4, + "p95" : 1.0399999999999998E-4, + "p99" : 1.0399999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 22.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 4.0, + "p50" : 5.0, + "p75" : 22.0, + "p90" : 22.0, + "p95" : 22.0, + "p99" : 22.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.6768972499999999, + "max" : 0.7433796659999999, + "p01" : 0.6768972499999999, + "p05" : 0.6768972499999999, + "p10" : 0.6768972499999999, + "p25" : 0.6784833749999999, + "p50" : 0.7110108339999999, + "p75" : 0.7433796659999999, + "p90" : 0.7433796659999999, + "p95" : 0.7433796659999999, + "p99" : 0.7433796659999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.8333999999999995E-5, + "max" : 1.1124999999999998E-4, + "p01" : 4.8333999999999995E-5, + "p05" : 4.8333999999999995E-5, + "p10" : 4.8333999999999995E-5, + "p25" : 4.908299999999999E-5, + "p50" : 1.0950099999999998E-4, + "p75" : 1.1124999999999998E-4, + "p90" : 1.1124999999999998E-4, + "p95" : 1.1124999999999998E-4, + "p99" : 1.1124999999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.81s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 368, + "averageBytesPerRequest" : 111, + "successfulRequestsCount" : 28, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 721.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 8.0, + "p50" : 33.0, + "p75" : 704.0, + "p90" : 721.0, + "p95" : 721.0, + "p99" : 721.0, + "total" : 7 + } + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "13.25us", + "addInputCpu" : "17.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "594B", + "inputPositions" : 33, + "sumSquaredInputPositions" : 529.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.32ms", + "getOutputCpu" : "481.00us", + "outputDataSize" : "53B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.199999999999999E-5, + "max" : 2.49E-4, + "p01" : 8.199999999999999E-5, + "p05" : 8.199999999999999E-5, + "p10" : 8.199999999999999E-5, + "p25" : 1.0999999999999999E-4, + "p50" : 1.49E-4, + "p75" : 2.49E-4, + "p90" : 2.49E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 22.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 4.0, + "p50" : 5.0, + "p75" : 22.0, + "p90" : 22.0, + "p95" : 22.0, + "p99" : 22.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.067449708, + "max" : 0.09716308399999998, + "p01" : 0.067449708, + "p05" : 0.067449708, + "p10" : 0.067449708, + "p25" : 0.07299729099999999, + "p50" : 0.09592495799999999, + "p75" : 0.09716308399999998, + "p90" : 0.09716308399999998, + "p95" : 0.09716308399999998, + "p99" : 0.09716308399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.3542E-5, + "max" : 0.001054876, + "p01" : 8.3542E-5, + "p05" : 8.3542E-5, + "p10" : 8.3542E-5, + "p25" : 1.3741699999999998E-4, + "p50" : 1.55416E-4, + "p75" : 0.001054876, + "p90" : 0.001054876, + "p95" : 0.001054876, + "p99" : 0.001054876, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "333.54ms", + "finishCalls" : 12, + "finishWall" : "93.46us", + "finishCpu" : "92.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 28, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 8, + "rleProbes" : 0, + "totalProbes" : 5 + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 4, + "addInputWall" : "76.17us", + "addInputCpu" : "78.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "53B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 7.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 6.279099999999999E-5, + "max" : 0.002285083, + "p01" : 6.279099999999999E-5, + "p05" : 6.279099999999999E-5, + "p10" : 6.279099999999999E-5, + "p25" : 2.1074999999999997E-4, + "p50" : 7.527909999999999E-4, + "p75" : 0.002285083, + "p90" : 0.002285083, + "p95" : 0.002285083, + "p99" : 0.002285083, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 2.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 6.199999999999999E-5, + "max" : 1.8299999999999998E-4, + "p01" : 6.199999999999999E-5, + "p05" : 6.199999999999999E-5, + "p10" : 6.199999999999999E-5, + "p25" : 8.799999999999998E-5, + "p50" : 1.4099999999999998E-4, + "p75" : 1.8299999999999998E-4, + "p90" : 1.8299999999999998E-4, + "p95" : 1.8299999999999998E-4, + "p99" : 1.8299999999999998E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "3.24ms", + "finishCpu" : "396.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 312 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.14.1.0", + "taskInstanceId" : 1018039466429249023, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.14.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "514.80kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.022567Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 877232209 + } + }, + "noMoreSplits" : [ "1993", "1992" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.143772Z", + "firstStartTime" : "2026-03-30T07:59:03.867051Z", + "lastStartTime" : "2026-03-30T07:59:03.925168Z", + "lastEndTime" : "2026-03-30T07:59:04.017Z", + "endTime" : "2026-03-30T07:59:04.021325Z", + "elapsedTime" : "873.37ms", + "queuedTime" : "719.09ms", + "totalDrivers" : 12, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 12, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "514.80kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.87ms", + "totalCpuTime" : "2.07ms", + "totalBlockedTime" : "1.30s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "686B", + "internalNetworkInputPositions" : 26, + "processedInputDataSize" : "468B", + "processedInputPositions" : 26, + "inputBlockedTime" : "531.93ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.867050Z", + "lastStartTime" : "2026-03-30T07:59:03.891674Z", + "lastEndTime" : "2026-03-30T07:59:04.009029Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.727993917E9, + "p01" : 6.65944875E8, + "p05" : 6.65944875E8, + "p10" : 6.65944875E8, + "p25" : 6.84071833E8, + "p50" : 6.87412959E8, + "p75" : 6.9056425E8, + "p90" : 6.9056425E8, + "p95" : 6.9056425E8, + "p99" : 6.9056425E8, + "min" : 6.65944875E8, + "max" : 6.9056425E8, + "avg" : 6.8199847925E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.229883875E9, + "p01" : 8.06913625E8, + "p05" : 8.06913625E8, + "p10" : 8.06913625E8, + "p25" : 8.07276709E8, + "p50" : 8.07774125E8, + "p75" : 8.07919416E8, + "p90" : 8.07919416E8, + "p95" : 8.07919416E8, + "p99" : 8.07919416E8, + "min" : 8.06913625E8, + "max" : 8.07919416E8, + "avg" : 8.0747096875E8 + }, + "totalScheduledTime" : "354.96us", + "totalCpuTime" : "311.00us", + "totalBlockedTime" : "492.92ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "492.91ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1993", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.11466879199999998, + "max" : 0.139278208, + "p01" : 0.11466879199999998, + "p05" : 0.11466879199999998, + "p10" : 0.11466879199999998, + "p25" : 0.11781429099999999, + "p50" : 0.12115141699999998, + "p75" : 0.139278208, + "p90" : 0.139278208, + "p95" : 0.139278208, + "p99" : 0.139278208, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "492.91ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 131.0, + "max" : 137.0, + "p01" : 131.0, + "p05" : 131.0, + "p10" : 131.0, + "p25" : 131.0, + "p50" : 131.0, + "p75" : 137.0, + "p90" : 137.0, + "p95" : 137.0, + "p99" : 137.0, + "total" : 3 + } + } + }, { + "stageId" : 14, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 7.999999999999999E-5, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 4.9999999999999996E-6, + "p50" : 5.999999999999999E-6, + "p75" : 7.999999999999999E-5, + "p90" : 7.999999999999999E-5, + "p95" : 7.999999999999999E-5, + "p99" : 7.999999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.041999999999999E-6, + "max" : 8.179199999999999E-5, + "p01" : 6.041999999999999E-6, + "p05" : 6.041999999999999E-6, + "p10" : 6.041999999999999E-6, + "p25" : 6.749999999999999E-6, + "p50" : 7.416999999999999E-6, + "p75" : 8.179199999999999E-5, + "p90" : 8.179199999999999E-5, + "p95" : 8.179199999999999E-5, + "p99" : 8.179199999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "102.00us", + "finishCpu" : "96.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.895032Z", + "lastStartTime" : "2026-03-30T07:59:03.904921Z", + "lastEndTime" : "2026-03-30T07:59:04.017712Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.795849916E9, + "p01" : 6.93920292E8, + "p05" : 6.93920292E8, + "p10" : 6.93920292E8, + "p25" : 6.96837791E8, + "p50" : 7.01284583E8, + "p75" : 7.0380725E8, + "p90" : 7.0380725E8, + "p95" : 7.0380725E8, + "p99" : 7.0380725E8, + "min" : 6.93920292E8, + "max" : 7.0380725E8, + "avg" : 6.98962479E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.261632207E9, + "p01" : 8.14983458E8, + "p05" : 8.14983458E8, + "p10" : 8.14983458E8, + "p25" : 8.15018708E8, + "p50" : 8.15033875E8, + "p75" : 8.16596166E8, + "p90" : 8.16596166E8, + "p95" : 8.16596166E8, + "p99" : 8.16596166E8, + "min" : 8.14983458E8, + "max" : 8.16596166E8, + "avg" : 8.1540805175E8 + }, + "totalScheduledTime" : "605.63us", + "totalCpuTime" : "592.00us", + "totalBlockedTime" : "454.42ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "436.86ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "17.55ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2568", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.10437741599999999, + "max" : 0.11424624999999998, + "p01" : 0.10437741599999999, + "p05" : 0.10437741599999999, + "p10" : 0.10437741599999999, + "p25" : 0.10689899999999998, + "p50" : 0.11134095799999999, + "p75" : 0.11424624999999998, + "p90" : 0.11424624999999998, + "p95" : 0.11424624999999998, + "p99" : 0.11424624999999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "436.86ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 4, + "getOutputWall" : "48.50us", + "getOutputCpu" : "42.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.5999999999999995E-5, + "max" : 9.499999999999999E-5, + "p01" : 2.5999999999999995E-5, + "p05" : 2.5999999999999995E-5, + "p10" : 2.5999999999999995E-5, + "p25" : 2.9999999999999994E-5, + "p50" : 4.7999999999999994E-5, + "p75" : 9.499999999999999E-5, + "p90" : 9.499999999999999E-5, + "p95" : 9.499999999999999E-5, + "p99" : 9.499999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9082999999999996E-5, + "max" : 9.941699999999999E-5, + "p01" : 2.9082999999999996E-5, + "p05" : 2.9082999999999996E-5, + "p10" : 2.9082999999999996E-5, + "p25" : 3.3875E-5, + "p50" : 5.295899999999999E-5, + "p75" : 9.941699999999999E-5, + "p90" : 9.941699999999999E-5, + "p95" : 9.941699999999999E-5, + "p99" : 9.941699999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "166.83us", + "finishCpu" : "157.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 14, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 2.0599999999999997E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.2E-5, + "p25" : 3.2999999999999996E-5, + "p50" : 4.599999999999999E-5, + "p75" : 2.0599999999999997E-4, + "p90" : 2.0599999999999997E-4, + "p95" : 2.0599999999999997E-4, + "p99" : 2.0599999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.003947999999999999, + "max" : 0.004762874999999999, + "p01" : 0.003947999999999999, + "p05" : 0.003947999999999999, + "p10" : 0.003947999999999999, + "p25" : 0.004200875, + "p50" : 0.004639083, + "p75" : 0.004762874999999999, + "p90" : 0.004762874999999999, + "p95" : 0.004762874999999999, + "p99" : 0.004762874999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 2.0566599999999997E-4, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.0999999999999995E-5, + "p25" : 3.304199999999999E-5, + "p50" : 4.4791999999999994E-5, + "p75" : 2.0566599999999997E-4, + "p90" : 2.0566599999999997E-4, + "p95" : 2.0566599999999997E-4, + "p99" : 2.0566599999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "17.55ms", + "finishCalls" : 8, + "finishWall" : "314.50us", + "finishCpu" : "317.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.907940Z", + "lastStartTime" : "2026-03-30T07:59:03.925167Z", + "lastEndTime" : "2026-03-30T07:59:04.014526Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.854724125E9, + "p01" : 7.06825042E8, + "p05" : 7.06825042E8, + "p10" : 7.06825042E8, + "p25" : 7.10346667E8, + "p50" : 7.13503791E8, + "p75" : 7.24048625E8, + "p90" : 7.24048625E8, + "p95" : 7.24048625E8, + "p99" : 7.24048625E8, + "min" : 7.06825042E8, + "max" : 7.24048625E8, + "avg" : 7.1368103125E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.247663291E9, + "p01" : 8.11016958E8, + "p05" : 8.11016958E8, + "p10" : 8.11016958E8, + "p25" : 8.11507334E8, + "p50" : 8.11730541E8, + "p75" : 8.13408458E8, + "p90" : 8.13408458E8, + "p95" : 8.13408458E8, + "p99" : 8.13408458E8, + "min" : 8.11016958E8, + "max" : 8.13408458E8, + "avg" : 8.1191582275E8 + }, + "totalScheduledTime" : "1.91ms", + "totalCpuTime" : "1.17ms", + "totalBlockedTime" : "350.11ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "686B", + "internalNetworkInputPositions" : 26, + "processedInputDataSize" : "468B", + "processedInputPositions" : 26, + "inputBlockedTime" : "39.02ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1992", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "686B", + "internalNetworkInputPositions" : 26, + "inputDataSize" : "468B", + "inputPositions" : 26, + "sumSquaredInputPositions" : 190.0, + "getOutputCalls" : 5, + "getOutputWall" : "353.04us", + "getOutputCpu" : "320.00us", + "outputDataSize" : "468B", + "outputPositions" : 26, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.599999999999999E-5, + "max" : 9.799999999999998E-5, + "p01" : 4.599999999999999E-5, + "p05" : 4.599999999999999E-5, + "p10" : 4.599999999999999E-5, + "p25" : 8.499999999999999E-5, + "p50" : 9.099999999999999E-5, + "p75" : 9.799999999999998E-5, + "p90" : 9.799999999999998E-5, + "p95" : 9.799999999999998E-5, + "p99" : 9.799999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 3.0, + "max" : 9.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 6.0, + "p50" : 8.0, + "p75" : 9.0, + "p90" : 9.0, + "p95" : 9.0, + "p99" : 9.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.019679166999999997, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.019339291999999998, + "p75" : 0.019679166999999997, + "p90" : 0.019679166999999997, + "p95" : 0.019679166999999997, + "p99" : 0.019679166999999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 4.7666999999999996E-5, + "max" : 1.1470799999999999E-4, + "p01" : 4.7666999999999996E-5, + "p05" : 4.7666999999999996E-5, + "p10" : 4.7666999999999996E-5, + "p25" : 8.974999999999999E-5, + "p50" : 1.0091699999999998E-4, + "p75" : 1.1470799999999999E-4, + "p90" : 1.1470799999999999E-4, + "p95" : 1.1470799999999999E-4, + "p99" : 1.1470799999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "39.02ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 496, + "averageBytesPerRequest" : 111, + "successfulRequestsCount" : 24, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 40.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 9.0, + "p50" : 35.0, + "p75" : 38.0, + "p90" : 40.0, + "p95" : 40.0, + "p99" : 40.0, + "total" : 6 + } + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1718", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 5, + "addInputWall" : "12.38us", + "addInputCpu" : "17.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "468B", + "inputPositions" : 26, + "sumSquaredInputPositions" : 190.0, + "getOutputCalls" : 11, + "getOutputWall" : "915.42us", + "getOutputCpu" : "337.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.599999999999999E-5, + "max" : 1.3399999999999998E-4, + "p01" : 6.599999999999999E-5, + "p05" : 6.599999999999999E-5, + "p10" : 6.599999999999999E-5, + "p25" : 8.199999999999999E-5, + "p50" : 1.0099999999999999E-4, + "p75" : 1.3399999999999998E-4, + "p90" : 1.3399999999999998E-4, + "p95" : 1.3399999999999998E-4, + "p99" : 1.3399999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 3.0, + "max" : 9.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 6.0, + "p50" : 8.0, + "p75" : 9.0, + "p90" : 9.0, + "p95" : 9.0, + "p99" : 9.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.06155045899999999, + "max" : 0.09612883299999998, + "p01" : 0.06155045899999999, + "p05" : 0.06155045899999999, + "p10" : 0.06155045899999999, + "p25" : 0.08196366699999999, + "p50" : 0.08561304099999999, + "p75" : 0.09612883299999998, + "p90" : 0.09612883299999998, + "p95" : 0.09612883299999998, + "p99" : 0.09612883299999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 6.579299999999998E-5, + "max" : 7.075829999999999E-4, + "p01" : 6.579299999999998E-5, + "p05" : 6.579299999999998E-5, + "p10" : 6.579299999999998E-5, + "p25" : 8.537599999999999E-5, + "p50" : 1.0437499999999999E-4, + "p75" : 7.075829999999999E-4, + "p90" : 7.075829999999999E-4, + "p95" : 7.075829999999999E-4, + "p99" : 7.075829999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "325.26ms", + "finishCalls" : 4, + "finishWall" : "35.33us", + "finishCpu" : "29.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 26, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 0, + "rleProbes" : 0, + "totalProbes" : 5 + } + }, { + "stageId" : 14, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1718", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 9.207999999999999E-6, + "max" : 1.9416999999999997E-5, + "p01" : 9.207999999999999E-6, + "p05" : 9.207999999999999E-6, + "p10" : 9.207999999999999E-6, + "p25" : 1.1624999999999998E-5, + "p50" : 1.2957999999999999E-5, + "p75" : 1.9416999999999997E-5, + "p90" : 1.9416999999999997E-5, + "p95" : 1.9416999999999997E-5, + "p99" : 1.9416999999999997E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.9999999999999998E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.3999999999999998E-5, + "p75" : 1.9999999999999998E-5, + "p90" : 1.9999999999999998E-5, + "p95" : 1.9999999999999998E-5, + "p99" : 1.9999999999999998E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "53.21us", + "finishCpu" : "54.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.15", "20260330_075902_00004_iggau.16" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.5", + "state" : "FINISHED", + "plan" : { + "id" : "5", + "root" : { + "@type" : "filter", + "id" : "2208", + "source" : { + "@type" : "tableScan", + "id" : "3", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "partsupp", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + } ], + "assignments" : { + "6|bigint|suppkey_5" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "suppkey", + "type" : "bigint" + }, + "6|double|supplycost" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "supplycost", + "type" : "double" + }, + "6|bigint|partkey_4" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "partkey", + "type" : "bigint" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "logical", + "operator" : "AND", + "terms" : [ { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "suppkey_5" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMDY=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + }, { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_4" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMDc=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + } ] + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "3" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey_4" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey_4" + }, { + "type" : "bigint", + "name" : "suppkey_5" + }, { + "type" : "double", + "name" : "supplycost" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2208" : { + "outputRowCount" : 8000.0, + "symbolStatistics" : { + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 7665.0 + }, + "6|bigint|suppkey_5" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + } + } + }, + "3" : { + "outputRowCount" : 8000.0, + "symbolStatistics" : { + "6|bigint|partkey_4" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "6|double|supplycost" : { + "lowValue" : 1.05, + "highValue" : 999.99, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 7665.0 + }, + "6|bigint|suppkey_5" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + } + } + } + }, + "costs" : { + "2208" : { + "cpuCost" : 432000.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "3" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 216000.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2208\",\n \"name\" : \"ScanFilter\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:partsupp\",\n \"filterPredicate\" : \"\",\n \"dynamicFilters\" : \"{suppkey_5 = #df_2206, partkey_4 = #df_2207}\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey_4\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_5\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"supplycost\"\n } ],\n \"details\" : [ \"suppkey_5 := tpch:suppkey\", \"supplycost := tpch:supplycost\", \"partkey_4 := tpch:partkey\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "bigint", "double" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.174534Z", + "getSplitDistribution" : { + "3" : { + "count" : 1.0, + "total" : 3958.0, + "p01" : 3958.0, + "p05" : 3958.0, + "p10" : 3958.0, + "p25" : 3958.0, + "p50" : 3958.0, + "p75" : 3958.0, + "p90" : 3958.0, + "p95" : 3958.0, + "p99" : 3958.0, + "min" : 3958.0, + "max" : 3958.0, + "avg" : 3958.0 + } + }, + "splitSourceMetrics" : { + "3" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 3.0130584568328E7, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "169.48kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "94.91ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "22.82ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 8000, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "210.94kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 8000, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2376507208, + "min" : 0.0, + "max" : 0.002540111541748047, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 1.9119292575438867E-4, + "p95" : 3.1308564017664667E-4, + "p99" : 0.0015708407207339617 + }, + "outputDataSize" : "210.94kB", + "failedOutputDataSize" : "0B", + "outputPositions" : 8000, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 5, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2208", + "sourceId" : "3", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 8000, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 96, + "getOutputWall" : "33.41ms", + "getOutputCpu" : "17.24ms", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "1071548.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 8000 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2908299999999997E-4, + "max" : 0.006773790999999999, + "p01" : 1.2908299999999997E-4, + "p05" : 1.4620899999999998E-4, + "p10" : 2.0570799999999998E-4, + "p25" : 2.5741699999999996E-4, + "p50" : 3.6516699999999995E-4, + "p75" : 6.04167E-4, + "p90" : 0.0010473739999999998, + "p95" : 0.0016094999999999998, + "p99" : 0.006773790999999999, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.28E-4, + "max" : 0.001032, + "p01" : 1.28E-4, + "p05" : 1.4499999999999997E-4, + "p10" : 1.9699999999999996E-4, + "p25" : 2.4999999999999995E-4, + "p50" : 3.1099999999999997E-4, + "p75" : 4.2799999999999994E-4, + "p90" : 5.909999999999999E-4, + "p95" : 7.07E-4, + "p99" : 0.001032, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2208", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "4.85ms", + "addInputCpu" : "2.82ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "210.94kB", + "inputPositions" : 8000, + "sumSquaredInputPositions" : 1349376.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "210.94kB", + "outputPositions" : 8000, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2582999999999996E-5, + "max" : 0.038307498999999995, + "p01" : 3.2582999999999996E-5, + "p05" : 3.975E-5, + "p10" : 4.245799999999999E-5, + "p25" : 4.8874999999999995E-5, + "p50" : 5.545799999999999E-5, + "p75" : 1.0041699999999998E-4, + "p90" : 5.615419999999999E-4, + "p95" : 8.236239999999999E-4, + "p99" : 0.038307498999999995, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 292.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 5.889999999999999E-4, + "p01" : 3.2E-5, + "p05" : 4.0999999999999994E-5, + "p10" : 4.399999999999999E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 5.699999999999999E-5, + "p75" : 8.699999999999999E-5, + "p90" : 1.7599999999999997E-4, + "p95" : 2.5699999999999996E-4, + "p99" : 5.889999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "55.43ms", + "finishCpu" : "1.63ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.5.0.0", + "taskInstanceId" : -8459803886515919913, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.5.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "69.19kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "83.23kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.993093Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2624, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 0.002540111541748047, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 6.654494205369441E-4, + "total" : 811720875 + } + }, + "noMoreSplits" : [ "3" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.186329Z", + "firstStartTime" : "2026-03-30T07:59:03.873536Z", + "lastStartTime" : "2026-03-30T07:59:03.947845Z", + "lastEndTime" : "2026-03-30T07:59:03.948Z", + "endTime" : "2026-03-30T07:59:03.994833Z", + "elapsedTime" : "808.46ms", + "queuedTime" : "687.16ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "83.23kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "14.64ms", + "totalCpuTime" : "7.68ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.873535Z", + "lastStartTime" : "2026-03-30T07:59:03.947844Z", + "lastEndTime" : "2026-03-30T07:59:03.948331Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.105362725E10, + "p01" : 6.56290083E8, + "p05" : 6.56290083E8, + "p10" : 6.65737792E8, + "p25" : 6.7601775E8, + "p50" : 6.88955208E8, + "p75" : 7.11431833E8, + "p90" : 7.21258459E8, + "p95" : 7.30591625E8, + "p99" : 7.30591625E8, + "min" : 6.56290083E8, + "max" : 7.30591625E8, + "avg" : 6.90851703125E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1068250371E10, + "p01" : 6.63439208E8, + "p05" : 6.63439208E8, + "p10" : 6.66625E8, + "p25" : 6.76412958E8, + "p50" : 6.89279583E8, + "p75" : 7.12543458E8, + "p90" : 7.21819875E8, + "p95" : 7.31076458E8, + "p99" : 7.31076458E8, + "min" : 6.63439208E8, + "max" : 7.31076458E8, + "avg" : 6.917656481875E8 + }, + "totalScheduledTime" : "14.64ms", + "totalCpuTime" : "7.68ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2208", + "sourceId" : "3", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 32, + "getOutputWall" : "12.74ms", + "getOutputCpu" : "6.02ms", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "373750.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 2624 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 2.0570799999999998E-4, + "max" : 0.006773790999999999, + "p01" : 2.0570799999999998E-4, + "p05" : 2.0570799999999998E-4, + "p10" : 2.2629199999999998E-4, + "p25" : 2.6591599999999994E-4, + "p50" : 3.2987499999999993E-4, + "p75" : 5.024999999999999E-4, + "p90" : 0.0010473739999999998, + "p95" : 0.006773790999999999, + "p99" : 0.006773790999999999, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 2.0499999999999997E-4, + "max" : 0.001032, + "p01" : 2.0499999999999997E-4, + "p05" : 2.0499999999999997E-4, + "p10" : 2.2499999999999997E-4, + "p25" : 2.5499999999999996E-4, + "p50" : 3.1699999999999995E-4, + "p75" : 4.2599999999999995E-4, + "p90" : 7.07E-4, + "p95" : 0.001032, + "p99" : 0.001032, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2208", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "1.24ms", + "addInputCpu" : "994.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.975E-5, + "max" : 3.5595899999999993E-4, + "p01" : 3.975E-5, + "p05" : 3.975E-5, + "p10" : 4.562499999999999E-5, + "p25" : 5.083299999999999E-5, + "p50" : 5.787499999999999E-5, + "p75" : 1.0337599999999998E-4, + "p90" : 2.5733399999999996E-4, + "p95" : 3.5595899999999993E-4, + "p99" : 3.5595899999999993E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.0999999999999994E-5, + "max" : 2.5699999999999996E-4, + "p01" : 4.0999999999999994E-5, + "p05" : 4.0999999999999994E-5, + "p10" : 4.599999999999999E-5, + "p25" : 5.099999999999999E-5, + "p50" : 5.7999999999999994E-5, + "p75" : 9.999999999999999E-5, + "p90" : 1.7599999999999997E-4, + "p95" : 2.5699999999999996E-4, + "p99" : 2.5699999999999996E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "313.67us", + "finishCpu" : "321.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 85232 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.5.1.0", + "taskInstanceId" : -209023765274533262, + "version" : 1, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.5.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "69.19kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "54.70kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.985406Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2624, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 0.001669168472290039, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.5017832267884908E-4, + "p90" : 2.4113785244204324E-4, + "p95" : 4.646142602650552E-4, + "p99" : 0.001454054625628186, + "total" : 802125750 + } + }, + "noMoreSplits" : [ "3" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.176572Z", + "firstStartTime" : "2026-03-30T07:59:03.883732Z", + "lastStartTime" : "2026-03-30T07:59:03.938515Z", + "lastEndTime" : "2026-03-30T07:59:03.977Z", + "endTime" : "2026-03-30T07:59:03.992764Z", + "elapsedTime" : "802.08ms", + "queuedTime" : "693.04ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 9971666.651828, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "54.70kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "46.59ms", + "totalCpuTime" : "6.87ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.883731Z", + "lastStartTime" : "2026-03-30T07:59:03.938514Z", + "lastEndTime" : "2026-03-30T07:59:03.977174Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0667093586E10, + "p01" : 6.40226375E8, + "p05" : 6.40226375E8, + "p10" : 6.42741125E8, + "p25" : 6.52247084E8, + "p50" : 6.65520167E8, + "p75" : 6.86303959E8, + "p90" : 6.93155167E8, + "p95" : 6.94877333E8, + "p99" : 6.94877333E8, + "min" : 6.40226375E8, + "max" : 6.94877333E8, + "avg" : 6.66693349125E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0713672834E10, + "p01" : 6.4123975E8, + "p05" : 6.4123975E8, + "p10" : 6.43317E8, + "p25" : 6.52712834E8, + "p50" : 6.66026708E8, + "p75" : 6.86546625E8, + "p90" : 6.93334875E8, + "p95" : 7.33534916E8, + "p99" : 7.33534916E8, + "min" : 6.4123975E8, + "max" : 7.33534916E8, + "avg" : 6.69604552125E8 + }, + "totalScheduledTime" : "46.59ms", + "totalCpuTime" : "6.87ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "69.19kB", + "processedInputPositions" : 2624, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2208", + "sourceId" : "3", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2624, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 32, + "getOutputWall" : "5.87ms", + "getOutputCpu" : "4.85ms", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "328046.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 2624 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2908299999999997E-4, + "max" : 8.444169999999999E-4, + "p01" : 1.2908299999999997E-4, + "p05" : 1.2908299999999997E-4, + "p10" : 1.4620899999999998E-4, + "p25" : 2.4341699999999998E-4, + "p50" : 3.6516699999999995E-4, + "p75" : 4.3229099999999996E-4, + "p90" : 8.081669999999999E-4, + "p95" : 8.444169999999999E-4, + "p99" : 8.444169999999999E-4, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.28E-4, + "max" : 6.219999999999999E-4, + "p01" : 1.28E-4, + "p05" : 1.28E-4, + "p10" : 1.4499999999999997E-4, + "p25" : 2.2299999999999997E-4, + "p50" : 2.8299999999999994E-4, + "p75" : 3.8299999999999993E-4, + "p90" : 5.009999999999999E-4, + "p95" : 6.219999999999999E-4, + "p99" : 6.219999999999999E-4, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2208", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "1.43ms", + "addInputCpu" : "825.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "69.19kB", + "inputPositions" : 2624, + "sumSquaredInputPositions" : 430336.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "69.19kB", + "outputPositions" : 2624, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2582999999999996E-5, + "max" : 0.038307498999999995, + "p01" : 3.2582999999999996E-5, + "p05" : 3.2582999999999996E-5, + "p10" : 3.812499999999999E-5, + "p25" : 4.837499999999999E-5, + "p50" : 5.324999999999999E-5, + "p75" : 7.566599999999999E-5, + "p90" : 6.99832E-4, + "p95" : 0.038307498999999995, + "p99" : 0.038307498999999995, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 164.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 164.0, + "p99" : 164.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 5.889999999999999E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.899999999999999E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 5.4999999999999995E-5, + "p75" : 7.699999999999999E-5, + "p90" : 2.0699999999999996E-4, + "p95" : 5.889999999999999E-4, + "p99" : 5.889999999999999E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "38.74ms", + "finishCpu" : "742.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 56008 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.5.2.0", + "taskInstanceId" : -8040368458487151690, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.5.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "72.56kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "56.46kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.946767Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2752, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 0.0017850399017333984, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.6095765813910884E-4, + "p90" : 2.6693843483280684E-4, + "p95" : 3.0226536039737283E-4, + "p99" : 0.0017850399017333984, + "total" : 762660583 + } + }, + "noMoreSplits" : [ "3" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.188635Z", + "firstStartTime" : "2026-03-30T07:59:03.873254Z", + "lastStartTime" : "2026-03-30T07:59:03.926660Z", + "lastEndTime" : "2026-03-30T07:59:03.943Z", + "endTime" : "2026-03-30T07:59:03.952351Z", + "elapsedTime" : "761.01ms", + "queuedTime" : "681.91ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 2.0158917916500002E7, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56.46kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "33.68ms", + "totalCpuTime" : "8.27ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2752, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "72.56kB", + "processedInputPositions" : 2752, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.873254Z", + "lastStartTime" : "2026-03-30T07:59:03.926660Z", + "lastEndTime" : "2026-03-30T07:59:03.943263Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0513516376E10, + "p01" : 6.31504834E8, + "p05" : 6.31504834E8, + "p10" : 6.40340084E8, + "p25" : 6.47239667E8, + "p50" : 6.5621775E8, + "p75" : 6.68979166E8, + "p90" : 6.82723333E8, + "p95" : 6.84901333E8, + "p99" : 6.84901333E8, + "min" : 6.31504834E8, + "max" : 6.84901333E8, + "avg" : 6.570947735E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0547187961E10, + "p01" : 6.33300334E8, + "p05" : 6.33300334E8, + "p10" : 6.41204709E8, + "p25" : 6.48641417E8, + "p50" : 6.56529416E8, + "p75" : 6.6927925E8, + "p90" : 6.8371175E8, + "p95" : 7.01502E8, + "p99" : 7.01502E8, + "min" : 6.33300334E8, + "max" : 7.01502E8, + "avg" : 6.591992475625E8 + }, + "totalScheduledTime" : "33.68ms", + "totalCpuTime" : "8.27ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2752, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "72.56kB", + "processedInputPositions" : 2752, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2208", + "sourceId" : "3", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 2752, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "72.56kB", + "inputPositions" : 2752, + "sumSquaredInputPositions" : 488704.0, + "getOutputCalls" : 32, + "getOutputWall" : "14.80ms", + "getOutputCpu" : "6.37ms", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 292.0, + "p99" : 292.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "369752.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 2752 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4283399999999997E-4, + "max" : 0.006134833999999999, + "p01" : 1.4283399999999997E-4, + "p05" : 1.4283399999999997E-4, + "p10" : 2.2379199999999997E-4, + "p25" : 2.6604099999999996E-4, + "p50" : 5.534159999999999E-4, + "p75" : 8.491249999999998E-4, + "p90" : 0.0016094999999999998, + "p95" : 0.006134833999999999, + "p99" : 0.006134833999999999, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.4199999999999998E-4, + "max" : 0.001009, + "p01" : 1.4199999999999998E-4, + "p05" : 1.4199999999999998E-4, + "p10" : 2.2299999999999997E-4, + "p25" : 2.6499999999999994E-4, + "p50" : 3.27E-4, + "p75" : 5.059999999999999E-4, + "p90" : 5.909999999999999E-4, + "p95" : 0.001009, + "p99" : 0.001009, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "768B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "768B", + "spilledDataSize" : "0B" + }, { + "stageId" : 5, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2208", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "2.18ms", + "addInputCpu" : "1.00ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "72.56kB", + "inputPositions" : 2752, + "sumSquaredInputPositions" : 488704.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "72.56kB", + "outputPositions" : 2752, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 4.1915999999999996E-5, + "max" : 0.016320374999999998, + "p01" : 4.1915999999999996E-5, + "p05" : 4.1915999999999996E-5, + "p10" : 4.245799999999999E-5, + "p25" : 4.9791999999999994E-5, + "p50" : 5.724999999999999E-5, + "p75" : 1.6362499999999998E-4, + "p90" : 8.236239999999999E-4, + "p95" : 0.016320374999999998, + "p99" : 0.016320374999999998, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 164.0, + "max" : 292.0, + "p01" : 164.0, + "p05" : 164.0, + "p10" : 164.0, + "p25" : 164.0, + "p50" : 164.0, + "p75" : 164.0, + "p90" : 164.0, + "p95" : 292.0, + "p99" : 292.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.2999999999999995E-5, + "max" : 5.089999999999999E-4, + "p01" : 4.2999999999999995E-5, + "p05" : 4.2999999999999995E-5, + "p10" : 4.399999999999999E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 5.699999999999999E-5, + "p75" : 1.0099999999999999E-4, + "p90" : 1.6399999999999997E-4, + "p95" : 5.089999999999999E-4, + "p99" : 5.089999999999999E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "16.38ms", + "finishCpu" : "569.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 59896 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "3" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.partsupp", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.6", + "state" : "FINISHED", + "plan" : { + "id" : "6", + "root" : { + "@type" : "project", + "id" : "1237", + "source" : { + "@type" : "filter", + "id" : "609", + "source" : { + "@type" : "tableScan", + "id" : "0", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "part", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ { + "column" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "container", + "type" : "varchar(10)" + }, + "domain" : { + "values" : { + "@type" : "sortable", + "type" : "varchar(10)", + "inclusive" : [ true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true ], + "sortedRanges" : "DgAAAFZBUklBQkxFX1dJRFRIUAAAAABQAAAACQAAABIAAAAbAAAAJAAAAC0AAAA2AAAAQAAAAEoAAABUAAAAXgAAAGcAAABwAAAAegAAAIQAAACNAAAAlgAAAJwAAACiAAAAqAAAAK4AAAC0AAAAugAAAMEAAADIAAAAzwAAANYAAADcAAAA4gAAAOkAAADwAAAA9gAAAPwAAAADAQAACgEAABEBAAAYAQAAHwEAACYBAAAuAQAANgEAAD4BAABGAQAATQEAAFQBAABcAQAAZAEAAGsBAAByAQAAeAEAAH4BAACEAQAAigEAAJABAACWAQAAnQEAAKQBAACrAQAAsgEAALgBAAC+AQAAxQEAAMwBAADSAQAA2AEAAOABAADoAQAA8AEAAPgBAAAAAgAACAIAABECAAAaAgAAIwIAACwCAAA0AgAAPAIAAEUCAABOAgAAVgIAAF4CAABKVU1CTyBCQUdKVU1CTyBCQUdKVU1CTyBCT1hKVU1CTyBCT1hKVU1CTyBDQU5KVU1CTyBDQU5KVU1CTyBDQVNFSlVNQk8gQ0FTRUpVTUJPIERSVU1KVU1CTyBEUlVNSlVNQk8gSkFSSlVNQk8gSkFSSlVNQk8gUEFDS0pVTUJPIFBBQ0tKVU1CTyBQS0dKVU1CTyBQS0dMRyBCQUdMRyBCQUdMRyBCT1hMRyBCT1hMRyBDQU5MRyBDQU5MRyBDQVNFTEcgQ0FTRUxHIERSVU1MRyBEUlVNTEcgSkFSTEcgSkFSTEcgUEFDS0xHIFBBQ0tMRyBQS0dMRyBQS0dNRUQgQkFHTUVEIEJBR01FRCBCT1hNRUQgQk9YTUVEIENBTk1FRCBDQU5NRUQgQ0FTRU1FRCBDQVNFTUVEIERSVU1NRUQgRFJVTU1FRCBKQVJNRUQgSkFSTUVEIFBBQ0tNRUQgUEFDS01FRCBQS0dNRUQgUEtHU00gQkFHU00gQkFHU00gQk9YU00gQk9YU00gQ0FOU00gQ0FOU00gQ0FTRVNNIENBU0VTTSBEUlVNU00gRFJVTVNNIEpBUlNNIEpBUlNNIFBBQ0tTTSBQQUNLU00gUEtHU00gUEtHV1JBUCBCQUdXUkFQIEJBR1dSQVAgQk9YV1JBUCBCT1hXUkFQIENBTldSQVAgQ0FOV1JBUCBDQVNFV1JBUCBDQVNFV1JBUCBEUlVNV1JBUCBEUlVNV1JBUCBKQVJXUkFQIEpBUldSQVAgUEFDS1dSQVAgUEFDS1dSQVAgUEtHV1JBUCBQS0c=", + "discreteSetMarker" : "DISCRETE" + }, + "nullAllowed" : false + } + }, { + "column" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "type", + "type" : "varchar(25)" + }, + "domain" : { + "values" : { + "@type" : "sortable", + "type" : "varchar(25)", + "inclusive" : [ true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true ], + "sortedRanges" : "DgAAAFZBUklBQkxFX1dJRFRIPAAAAAA8AAAAFgAAACwAAABBAAAAVgAAAG0AAACEAAAAmAAAAKwAAADCAAAA2AAAAOwAAAAAAQAAEwEAACYBAAA7AQAAUAEAAGIBAAB0AQAAiAEAAJwBAACxAQAAxgEAANoBAADuAQAABAIAABoCAAAtAgAAQAIAAFUCAABqAgAAfgIAAJICAAClAgAAuAIAAM0CAADiAgAA9AIAAAYDAAAaAwAALgMAAEIDAABWAwAAaQMAAHwDAACRAwAApgMAALgDAADKAwAA3gMAAPIDAAAJBAAAIAQAADYEAABMBAAAZAQAAHwEAACRBAAApgQAAL0EAADUBAAARUNPTk9NWSBBTk9ESVpFRCBCUkFTU0VDT05PTVkgQU5PRElaRUQgQlJBU1NFQ09OT01ZIEJSVVNIRUQgQlJBU1NFQ09OT01ZIEJSVVNIRUQgQlJBU1NFQ09OT01ZIEJVUk5JU0hFRCBCUkFTU0VDT05PTVkgQlVSTklTSEVEIEJSQVNTRUNPTk9NWSBQTEFURUQgQlJBU1NFQ09OT01ZIFBMQVRFRCBCUkFTU0VDT05PTVkgUE9MSVNIRUQgQlJBU1NFQ09OT01ZIFBPTElTSEVEIEJSQVNTTEFSR0UgQU5PRElaRUQgQlJBU1NMQVJHRSBBTk9ESVpFRCBCUkFTU0xBUkdFIEJSVVNIRUQgQlJBU1NMQVJHRSBCUlVTSEVEIEJSQVNTTEFSR0UgQlVSTklTSEVEIEJSQVNTTEFSR0UgQlVSTklTSEVEIEJSQVNTTEFSR0UgUExBVEVEIEJSQVNTTEFSR0UgUExBVEVEIEJSQVNTTEFSR0UgUE9MSVNIRUQgQlJBU1NMQVJHRSBQT0xJU0hFRCBCUkFTU01FRElVTSBBTk9ESVpFRCBCUkFTU01FRElVTSBBTk9ESVpFRCBCUkFTU01FRElVTSBCUlVTSEVEIEJSQVNTTUVESVVNIEJSVVNIRUQgQlJBU1NNRURJVU0gQlVSTklTSEVEIEJSQVNTTUVESVVNIEJVUk5JU0hFRCBCUkFTU01FRElVTSBQTEFURUQgQlJBU1NNRURJVU0gUExBVEVEIEJSQVNTTUVESVVNIFBPTElTSEVEIEJSQVNTTUVESVVNIFBPTElTSEVEIEJSQVNTUFJPTU8gQU5PRElaRUQgQlJBU1NQUk9NTyBBTk9ESVpFRCBCUkFTU1BST01PIEJSVVNIRUQgQlJBU1NQUk9NTyBCUlVTSEVEIEJSQVNTUFJPTU8gQlVSTklTSEVEIEJSQVNTUFJPTU8gQlVSTklTSEVEIEJSQVNTUFJPTU8gUExBVEVEIEJSQVNTUFJPTU8gUExBVEVEIEJSQVNTUFJPTU8gUE9MSVNIRUQgQlJBU1NQUk9NTyBQT0xJU0hFRCBCUkFTU1NNQUxMIEFOT0RJWkVEIEJSQVNTU01BTEwgQU5PRElaRUQgQlJBU1NTTUFMTCBCUlVTSEVEIEJSQVNTU01BTEwgQlJVU0hFRCBCUkFTU1NNQUxMIEJVUk5JU0hFRCBCUkFTU1NNQUxMIEJVUk5JU0hFRCBCUkFTU1NNQUxMIFBMQVRFRCBCUkFTU1NNQUxMIFBMQVRFRCBCUkFTU1NNQUxMIFBPTElTSEVEIEJSQVNTU01BTEwgUE9MSVNIRUQgQlJBU1NTVEFOREFSRCBBTk9ESVpFRCBCUkFTU1NUQU5EQVJEIEFOT0RJWkVEIEJSQVNTU1RBTkRBUkQgQlJVU0hFRCBCUkFTU1NUQU5EQVJEIEJSVVNIRUQgQlJBU1NTVEFOREFSRCBCVVJOSVNIRUQgQlJBU1NTVEFOREFSRCBCVVJOSVNIRUQgQlJBU1NTVEFOREFSRCBQTEFURUQgQlJBU1NTVEFOREFSRCBQTEFURUQgQlJBU1NTVEFOREFSRCBQT0xJU0hFRCBCUkFTU1NUQU5EQVJEIFBPTElTSEVEIEJSQVNT", + "discreteSetMarker" : "DISCRETE" + }, + "nullAllowed" : false + } + } ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "partkey" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "type" + }, { + "type" : "integer", + "name" : "size" + } ], + "assignments" : { + "11|varchar(25)|type" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "type", + "type" : "varchar(25)" + }, + "11|varchar(25)|mfgr" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "mfgr", + "type" : "varchar(25)" + }, + "6|bigint|partkey" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "partkey", + "type" : "bigint" + }, + "7|integer|size" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "size", + "type" : "integer" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "logical", + "operator" : "AND", + "terms" : [ { + "@type" : "comparison", + "operator" : "EQUAL", + "left" : { + "@type" : "reference", + "type" : "integer", + "name" : "size" + }, + "right" : { + "@type" : "constant", + "type" : "integer", + "valueAsBlock" : "CQAAAElOVF9BUlJBWQEAAAAADwAAAA==" + } + }, { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$like" + }, + "returnType" : "boolean", + "argumentTypes" : [ "varchar(25)", "LikePattern" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$like(varchar(x),likepattern):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : true, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "type" + }, { + "@type" : "constant", + "type" : "LikePattern", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAACwAAAAYAAAAlQlJBU1MA" + } ] + } ] + } + }, + "assignments" : { + "assignments" : { + "6|bigint|partkey" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey" + }, + "11|varchar(25)|mfgr" : { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "mfgr" + } + } + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "partkey" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + }, { + "type" : "varchar(25)", + "name" : "type" + }, { + "type" : "integer", + "name" : "size" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "0" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "partkey" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "partkey" + }, { + "type" : "varchar(25)", + "name" : "mfgr" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1237" : { + "outputRowCount" : 36.0, + "symbolStatistics" : { + "6|bigint|partkey" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 36.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + } + } + }, + "609" : { + "outputRowCount" : 36.0, + "symbolStatistics" : { + "6|bigint|partkey" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 36.0 + }, + "7|integer|size" : { + "lowValue" : 15.0, + "highValue" : 15.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 1.25 + }, + "11|varchar(25)|type" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 1.545, + "distinctValuesCount" : 10.0 + } + } + }, + "0" : { + "outputRowCount" : 2000.0, + "symbolStatistics" : { + "6|bigint|partkey" : { + "lowValue" : 1.0, + "highValue" : 2000.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 2000.0 + }, + "7|integer|size" : { + "lowValue" : 1.0, + "highValue" : 50.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 50.0 + }, + "11|varchar(25)|mfgr" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 0.035, + "distinctValuesCount" : 5.0 + }, + "11|varchar(25)|type" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 1.545, + "distinctValuesCount" : 150.0 + } + } + } + }, + "costs" : { + "1237" : { + "cpuCost" : 102825.26, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 505.26, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "609" : { + "cpuCost" : 102320.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 51160.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "0" : { + "cpuCost" : 51160.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 51160.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1237\",\n \"name\" : \"ScanFilterProject\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:part\",\n \"filterPredicate\" : \"((size = integer '15') AND $like(type, LikePattern '[%BRASS]'))\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"partkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"mfgr\"\n } ],\n \"details\" : [ \"type := tpch:type\", \" :: [[ECONOMY ANODIZED BRASS], [ECONOMY BRUSHED BRASS], [ECONOMY BURNISHED BRASS], [ECONOMY PLATED BRASS], [ECONOMY POLISHED BRASS], [LARGE ANODIZED BRASS], [LARGE BRUSHED BRASS], [LARGE BURNISHED BRASS], [LARGE PLATED BRASS], [LARGE POLISHED BRASS], [MEDIUM ANODIZED BRASS], [MEDIUM BRUSHED BRASS], [MEDIUM BURNISHED BRASS], [MEDIUM PLATED BRASS], [MEDIUM POLISHED BRASS], [PROMO ANODIZED BRASS], [PROMO BRUSHED BRASS], [PROMO BURNISHED BRASS], [PROMO PLATED BRASS], [PROMO POLISHED BRASS], [SMALL ANODIZED BRASS], [SMALL BRUSHED BRASS], [SMALL BURNISHED BRASS], [SMALL PLATED BRASS], [SMALL POLISHED BRASS], [STANDARD ANODIZED BRASS], [STANDARD BRUSHED BRASS], [STANDARD BURNISHED BRASS], [STANDARD PLATED BRASS], [STANDARD POLISHED BRASS]]\", \"mfgr := tpch:mfgr\", \"partkey := tpch:partkey\", \"size := tpch:size\", \"tpch:container\", \" :: [[JUMBO BAG, WRAP PKG]]\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.149670Z", + "getSplitDistribution" : { + "0" : { + "count" : 1.0, + "total" : 4334.0, + "p01" : 4334.0, + "p05" : 4334.0, + "p10" : 4334.0, + "p25" : 4334.0, + "p50" : 4334.0, + "p75" : 4334.0, + "p90" : 4334.0, + "p95" : 4334.0, + "p99" : 4334.0, + "min" : 4334.0, + "max" : 4334.0, + "avg" : 4334.0 + } + }, + "splitSourceMetrics" : { + "0" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 2331341.480376, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "7.17kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "4.08s", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "56.51ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 376, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "3.88kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 376, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2399172334, + "min" : 0.0, + "max" : 9.059906005859375E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 4.5299530029296875E-6 + }, + "outputDataSize" : "112B", + "failedOutputDataSize" : "0B", + "outputPositions" : 4, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 6, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1237", + "sourceId" : "0", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 376, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "3.88kB", + "inputPositions" : 376, + "sumSquaredInputPositions" : 3226.0, + "getOutputCalls" : 52, + "getOutputWall" : "4.07s", + "getOutputCpu" : "54.63ms", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 4.0, + "max" : 19.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 5.0, + "p25" : 7.0, + "p50" : 8.0, + "p75" : 9.0, + "p90" : 10.0, + "p95" : 11.0, + "p99" : 19.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 4.2849999999999995E-4, + "max" : 0.6824894999999999, + "p01" : 4.2849999999999995E-4, + "p05" : 4.893749999999999E-4, + "p10" : 5.02833E-4, + "p25" : 6.251249999999999E-4, + "p50" : 8.606669999999999E-4, + "p75" : 0.0018217499999999998, + "p90" : 0.6746308749999999, + "p95" : 0.677068375, + "p99" : 0.6824894999999999, + "total" : 48 + }, + "Filter CPU time" : { + "duration" : "1861912.00ns" + }, + "Projection CPU time" : { + "duration" : "41333.00ns" + }, + "CPU time distribution (s)" : { + "min" : 4.2799999999999994E-4, + "max" : 0.010445999999999999, + "p01" : 4.2799999999999994E-4, + "p05" : 4.8799999999999994E-4, + "p10" : 5.009999999999999E-4, + "p25" : 6.039999999999999E-4, + "p50" : 7.479999999999999E-4, + "p75" : 9.129999999999999E-4, + "p90" : 0.0021659999999999995, + "p95" : 0.0022159999999999997, + "p99" : 0.010445999999999999, + "total" : 48 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "864B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "864B", + "spilledDataSize" : "0B" + }, { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1237", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 4, + "addInputWall" : "61.34us", + "addInputCpu" : "64.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "112B", + "inputPositions" : 4, + "sumSquaredInputPositions" : 4.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "112B", + "outputPositions" : 4, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.374999999999999E-6, + "max" : 1.0787499999999998E-4, + "p01" : 5.374999999999999E-6, + "p05" : 5.499999999999999E-6, + "p10" : 5.666999999999999E-6, + "p25" : 6.624999999999999E-6, + "p50" : 8.208999999999999E-6, + "p75" : 1.1249999999999999E-5, + "p90" : 1.9499999999999996E-5, + "p95" : 2.2248999999999997E-5, + "p99" : 1.0787499999999998E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 1.0799999999999998E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 1.1999999999999999E-5, + "p90" : 2.1999999999999996E-5, + "p95" : 2.3999999999999997E-5, + "p99" : 1.0799999999999998E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "541.54us", + "finishCpu" : "585.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 304 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.6.0.0", + "taskInstanceId" : 3300209554949388602, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.6.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "56B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "2.39kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.953932Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 2, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 9.059906005859375E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 4.5299530029296875E-6, + "total" : 818640458 + } + }, + "noMoreSplits" : [ "0" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.153254Z", + "firstStartTime" : "2026-03-30T07:59:03.198304Z", + "lastStartTime" : "2026-03-30T07:59:03.938244Z", + "lastEndTime" : "2026-03-30T07:59:03.939Z", + "endTime" : "2026-03-30T07:59:03.956202Z", + "elapsedTime" : "795.80ms", + "queuedTime" : "37.90ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 986594.951376, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.39kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.37s", + "totalCpuTime" : "25.50ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 132, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.80kB", + "processedInputPositions" : 132, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "56B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.198304Z", + "lastStartTime" : "2026-03-30T07:59:03.938244Z", + "lastEndTime" : "2026-03-30T07:59:03.939569Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0036550001E10, + "p01" : 3100542.0, + "p05" : 3100542.0, + "p10" : 3525709.0, + "p25" : 6.9773125E8, + "p50" : 7.11607583E8, + "p75" : 7.321195E8, + "p90" : 7.411845E8, + "p95" : 7.43019584E8, + "p99" : 7.43019584E8, + "min" : 3100542.0, + "max" : 7.43019584E8, + "avg" : 6.272843750625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1408187209E10, + "p01" : 6.80623084E8, + "p05" : 6.80623084E8, + "p10" : 6.8561475E8, + "p25" : 6.983495E8, + "p50" : 7.12448958E8, + "p75" : 7.32640916E8, + "p90" : 7.4164E8, + "p95" : 7.44343625E8, + "p99" : 7.44343625E8, + "min" : 6.80623084E8, + "max" : 7.44343625E8, + "avg" : 7.130117005625E8 + }, + "totalScheduledTime" : "1.37s", + "totalCpuTime" : "25.50ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 132, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.80kB", + "processedInputPositions" : 132, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "56B", + "outputPositions" : 2, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1237", + "sourceId" : "0", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 132, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.80kB", + "inputPositions" : 132, + "sumSquaredInputPositions" : 1130.0, + "getOutputCalls" : 18, + "getOutputWall" : "1.37s", + "getOutputCpu" : "24.90ms", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 6.0, + "max" : 12.0, + "p01" : 6.0, + "p05" : 6.0, + "p10" : 6.0, + "p25" : 7.0, + "p50" : 8.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 12.0, + "p99" : 12.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 4.2849999999999995E-4, + "max" : 0.6824894999999999, + "p01" : 4.2849999999999995E-4, + "p05" : 4.2849999999999995E-4, + "p10" : 4.893749999999999E-4, + "p25" : 5.309159999999999E-4, + "p50" : 7.646249999999999E-4, + "p75" : 0.0011342079999999998, + "p90" : 0.677068375, + "p95" : 0.6824894999999999, + "p99" : 0.6824894999999999, + "total" : 16 + }, + "Filter CPU time" : { + "duration" : "598498.00ns" + }, + "Projection CPU time" : { + "duration" : "12333.00ns" + }, + "CPU time distribution (s)" : { + "min" : 4.2799999999999994E-4, + "max" : 0.010445999999999999, + "p01" : 4.2799999999999994E-4, + "p05" : 4.2799999999999994E-4, + "p10" : 4.8799999999999994E-4, + "p25" : 5.059999999999999E-4, + "p50" : 6.809999999999999E-4, + "p75" : 8.119999999999999E-4, + "p90" : 0.005605999999999999, + "p95" : 0.010445999999999999, + "p99" : 0.010445999999999999, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "864B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "864B", + "spilledDataSize" : "0B" + }, { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1237", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 2, + "addInputWall" : "29.42us", + "addInputCpu" : "31.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "56B", + "inputPositions" : 2, + "sumSquaredInputPositions" : 2.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "56B", + "outputPositions" : 2, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.374999999999999E-6, + "max" : 5.491699999999999E-5, + "p01" : 5.374999999999999E-6, + "p05" : 5.374999999999999E-6, + "p10" : 6.082999999999999E-6, + "p25" : 6.666999999999999E-6, + "p50" : 8.917E-6, + "p75" : 1.1249999999999999E-5, + "p90" : 2.1207999999999998E-5, + "p95" : 5.491699999999999E-5, + "p99" : 5.491699999999999E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 5.599999999999999E-5, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 1.0999999999999998E-5, + "p90" : 2.2999999999999997E-5, + "p95" : 5.599999999999999E-5, + "p99" : 5.599999999999999E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "166.58us", + "finishCpu" : "175.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 304 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.6.1.0", + "taskInstanceId" : 6072251273757672844, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.6.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "28B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "3.59kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.940610Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 4.5299530029296875E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 790492417 + } + }, + "noMoreSplits" : [ "0" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.153114Z", + "firstStartTime" : "2026-03-30T07:59:03.198485Z", + "lastStartTime" : "2026-03-30T07:59:03.930112Z", + "lastEndTime" : "2026-03-30T07:59:03.931Z", + "endTime" : "2026-03-30T07:59:03.942699Z", + "elapsedTime" : "781.92ms", + "queuedTime" : "37.68ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 1344746.529, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "3.59kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.05s", + "totalCpuTime" : "16.73ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 118, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1022B", + "processedInputPositions" : 118, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.198484Z", + "lastStartTime" : "2026-03-30T07:59:03.930112Z", + "lastEndTime" : "2026-03-30T07:59:03.931875Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 9.211452581E9, + "p01" : 1842375.0, + "p05" : 1842375.0, + "p10" : 3600875.0, + "p25" : 6.89776167E8, + "p50" : 7.01739041E8, + "p75" : 7.15816125E8, + "p90" : 7.30212208E8, + "p95" : 7.33448958E8, + "p99" : 7.33448958E8, + "min" : 1842375.0, + "max" : 7.33448958E8, + "avg" : 5.757157863125E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1258329915E10, + "p01" : 6.78986625E8, + "p05" : 6.78986625E8, + "p10" : 6.79014917E8, + "p25" : 6.911575E8, + "p50" : 7.0351625E8, + "p75" : 7.17865625E8, + "p90" : 7.30693333E8, + "p95" : 7.35211333E8, + "p99" : 7.35211333E8, + "min" : 6.78986625E8, + "max" : 7.35211333E8, + "avg" : 7.036456196875E8 + }, + "totalScheduledTime" : "2.05s", + "totalCpuTime" : "16.73ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 118, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1022B", + "processedInputPositions" : 118, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1237", + "sourceId" : "0", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 118, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1022B", + "inputPositions" : 118, + "sumSquaredInputPositions" : 914.0, + "getOutputCalls" : 17, + "getOutputWall" : "2.04s", + "getOutputCpu" : "16.13ms", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 5.0, + "max" : 11.0, + "p01" : 5.0, + "p05" : 5.0, + "p10" : 5.0, + "p25" : 6.0, + "p50" : 8.0, + "p75" : 9.0, + "p90" : 9.0, + "p95" : 11.0, + "p99" : 11.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 4.5504199999999996E-4, + "max" : 0.6773674579999999, + "p01" : 4.5504199999999996E-4, + "p05" : 4.5504199999999996E-4, + "p10" : 5.117499999999999E-4, + "p25" : 6.341249999999999E-4, + "p50" : 0.0013548749999999997, + "p75" : 0.0019808749999999996, + "p90" : 0.6753475829999999, + "p95" : 0.6773674579999999, + "p99" : 0.6773674579999999, + "total" : 16 + }, + "Filter CPU time" : { + "duration" : "947123.00ns" + }, + "Projection CPU time" : { + "duration" : "13083.00ns" + }, + "CPU time distribution (s)" : { + "min" : 4.539999999999999E-4, + "max" : 0.0022159999999999997, + "p01" : 4.539999999999999E-4, + "p05" : 4.539999999999999E-4, + "p10" : 5.099999999999999E-4, + "p25" : 6.229999999999999E-4, + "p50" : 7.529999999999999E-4, + "p75" : 0.0010699999999999998, + "p90" : 0.002214, + "p95" : 0.0022159999999999997, + "p99" : 0.0022159999999999997, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "864B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "864B", + "spilledDataSize" : "0B" + }, { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1237", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 1, + "addInputWall" : "16.92us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.416999999999999E-6, + "max" : 2.2248999999999997E-5, + "p01" : 5.416999999999999E-6, + "p05" : 5.416999999999999E-6, + "p10" : 5.499999999999999E-6, + "p25" : 6.832999999999999E-6, + "p50" : 8.084E-6, + "p75" : 1.0791999999999998E-5, + "p90" : 1.6542E-5, + "p95" : 2.2248999999999997E-5, + "p99" : 2.2248999999999997E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 2.3999999999999997E-5, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 1.1999999999999999E-5, + "p90" : 2.0999999999999995E-5, + "p95" : 2.3999999999999997E-5, + "p99" : 2.3999999999999997E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "135.67us", + "finishCpu" : "153.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 152 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.6.2.0", + "taskInstanceId" : -6130566347470731659, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.6.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "28B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "1.20kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.945113Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 4.5299530029296875E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 2.6709169768112016E-6, + "total" : 790039459 + } + }, + "noMoreSplits" : [ "0" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.153806Z", + "firstStartTime" : "2026-03-30T07:59:03.243001Z", + "lastStartTime" : "2026-03-30T07:59:03.934289Z", + "lastEndTime" : "2026-03-30T07:59:03.935Z", + "endTime" : "2026-03-30T07:59:03.947226Z", + "elapsedTime" : "787.21ms", + "queuedTime" : "82.98ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.20kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "660.01ms", + "totalCpuTime" : "14.28ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 126, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.08kB", + "processedInputPositions" : 126, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.243001Z", + "lastStartTime" : "2026-03-30T07:59:03.934289Z", + "lastEndTime" : "2026-03-30T07:59:03.935145Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0560986293E10, + "p01" : 4.3199792E7, + "p05" : 4.3199792E7, + "p10" : 6.75113875E8, + "p25" : 6.88630833E8, + "p50" : 6.9859275E8, + "p75" : 7.0961E8, + "p90" : 7.24917625E8, + "p95" : 7.34392E8, + "p99" : 7.34392E8, + "min" : 4.3199792E7, + "max" : 7.34392E8, + "avg" : 6.600616433125E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1220985879E10, + "p01" : 6.81189917E8, + "p05" : 6.81189917E8, + "p10" : 6.81428709E8, + "p25" : 6.89265458E8, + "p50" : 7.00840417E8, + "p75" : 7.12001542E8, + "p90" : 7.25932042E8, + "p95" : 7.35247E8, + "p99" : 7.35247E8, + "min" : 6.81189917E8, + "max" : 7.35247E8, + "avg" : 7.013116174375E8 + }, + "totalScheduledTime" : "660.01ms", + "totalCpuTime" : "14.28ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 126, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.08kB", + "processedInputPositions" : 126, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1237", + "sourceId" : "0", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 126, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.08kB", + "inputPositions" : 126, + "sumSquaredInputPositions" : 1182.0, + "getOutputCalls" : 17, + "getOutputWall" : "659.35ms", + "getOutputCpu" : "13.60ms", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 4.0, + "max" : 19.0, + "p01" : 4.0, + "p05" : 4.0, + "p10" : 4.0, + "p25" : 6.0, + "p50" : 8.0, + "p75" : 9.0, + "p90" : 10.0, + "p95" : 19.0, + "p99" : 19.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 6.0575E-4, + "max" : 0.6379599579999999, + "p01" : 6.0575E-4, + "p05" : 6.0575E-4, + "p10" : 6.13958E-4, + "p25" : 8.159589999999999E-4, + "p50" : 9.684169999999998E-4, + "p75" : 0.002194584, + "p90" : 0.006279124999999999, + "p95" : 0.6379599579999999, + "p99" : 0.6379599579999999, + "total" : 16 + }, + "Filter CPU time" : { + "duration" : "316291.00ns" + }, + "Projection CPU time" : { + "duration" : "15917.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.729999999999999E-4, + "max" : 0.0019069999999999996, + "p01" : 5.729999999999999E-4, + "p05" : 5.729999999999999E-4, + "p10" : 6.039999999999999E-4, + "p25" : 6.979999999999999E-4, + "p50" : 7.779999999999999E-4, + "p75" : 9.009999999999999E-4, + "p90" : 0.0012449999999999998, + "p95" : 0.0019069999999999996, + "p99" : 0.0019069999999999996, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "864B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "864B", + "spilledDataSize" : "0B" + }, { + "stageId" : 6, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1237", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 1, + "addInputWall" : "15.00us", + "addInputCpu" : "15.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "28B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "28B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.582999999999999E-6, + "max" : 1.0787499999999998E-4, + "p01" : 5.582999999999999E-6, + "p05" : 5.582999999999999E-6, + "p10" : 5.707999999999999E-6, + "p25" : 6.624999999999999E-6, + "p50" : 8.249999999999999E-6, + "p75" : 1.5457999999999997E-5, + "p90" : 1.9499999999999996E-5, + "p95" : 1.0787499999999998E-4, + "p99" : 1.0787499999999998E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 1.0799999999999998E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 1.7999999999999997E-5, + "p90" : 2.1999999999999996E-5, + "p95" : 1.0799999999999998E-4, + "p99" : 1.0799999999999998E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "239.29us", + "finishCpu" : "257.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 152 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "0" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.part", + "predicate" : { + "columnDomains" : [ { + "column" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "container", + "type" : "varchar(10)" + }, + "domain" : { + "values" : { + "@type" : "sortable", + "type" : "varchar(10)", + "inclusive" : [ true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true ], + "sortedRanges" : "DgAAAFZBUklBQkxFX1dJRFRIUAAAAABQAAAACQAAABIAAAAbAAAAJAAAAC0AAAA2AAAAQAAAAEoAAABUAAAAXgAAAGcAAABwAAAAegAAAIQAAACNAAAAlgAAAJwAAACiAAAAqAAAAK4AAAC0AAAAugAAAMEAAADIAAAAzwAAANYAAADcAAAA4gAAAOkAAADwAAAA9gAAAPwAAAADAQAACgEAABEBAAAYAQAAHwEAACYBAAAuAQAANgEAAD4BAABGAQAATQEAAFQBAABcAQAAZAEAAGsBAAByAQAAeAEAAH4BAACEAQAAigEAAJABAACWAQAAnQEAAKQBAACrAQAAsgEAALgBAAC+AQAAxQEAAMwBAADSAQAA2AEAAOABAADoAQAA8AEAAPgBAAAAAgAACAIAABECAAAaAgAAIwIAACwCAAA0AgAAPAIAAEUCAABOAgAAVgIAAF4CAABKVU1CTyBCQUdKVU1CTyBCQUdKVU1CTyBCT1hKVU1CTyBCT1hKVU1CTyBDQU5KVU1CTyBDQU5KVU1CTyBDQVNFSlVNQk8gQ0FTRUpVTUJPIERSVU1KVU1CTyBEUlVNSlVNQk8gSkFSSlVNQk8gSkFSSlVNQk8gUEFDS0pVTUJPIFBBQ0tKVU1CTyBQS0dKVU1CTyBQS0dMRyBCQUdMRyBCQUdMRyBCT1hMRyBCT1hMRyBDQU5MRyBDQU5MRyBDQVNFTEcgQ0FTRUxHIERSVU1MRyBEUlVNTEcgSkFSTEcgSkFSTEcgUEFDS0xHIFBBQ0tMRyBQS0dMRyBQS0dNRUQgQkFHTUVEIEJBR01FRCBCT1hNRUQgQk9YTUVEIENBTk1FRCBDQU5NRUQgQ0FTRU1FRCBDQVNFTUVEIERSVU1NRUQgRFJVTU1FRCBKQVJNRUQgSkFSTUVEIFBBQ0tNRUQgUEFDS01FRCBQS0dNRUQgUEtHU00gQkFHU00gQkFHU00gQk9YU00gQk9YU00gQ0FOU00gQ0FOU00gQ0FTRVNNIENBU0VTTSBEUlVNU00gRFJVTVNNIEpBUlNNIEpBUlNNIFBBQ0tTTSBQQUNLU00gUEtHU00gUEtHV1JBUCBCQUdXUkFQIEJBR1dSQVAgQk9YV1JBUCBCT1hXUkFQIENBTldSQVAgQ0FOV1JBUCBDQVNFV1JBUCBDQVNFV1JBUCBEUlVNV1JBUCBEUlVNV1JBUCBKQVJXUkFQIEpBUldSQVAgUEFDS1dSQVAgUEFDS1dSQVAgUEtHV1JBUCBQS0c=", + "discreteSetMarker" : "DISCRETE" + }, + "nullAllowed" : false + } + }, { + "column" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "type", + "type" : "varchar(25)" + }, + "domain" : { + "values" : { + "@type" : "sortable", + "type" : "varchar(25)", + "inclusive" : [ true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true ], + "sortedRanges" : "DgAAAFZBUklBQkxFX1dJRFRIPAAAAAA8AAAAFgAAACwAAABBAAAAVgAAAG0AAACEAAAAmAAAAKwAAADCAAAA2AAAAOwAAAAAAQAAEwEAACYBAAA7AQAAUAEAAGIBAAB0AQAAiAEAAJwBAACxAQAAxgEAANoBAADuAQAABAIAABoCAAAtAgAAQAIAAFUCAABqAgAAfgIAAJICAAClAgAAuAIAAM0CAADiAgAA9AIAAAYDAAAaAwAALgMAAEIDAABWAwAAaQMAAHwDAACRAwAApgMAALgDAADKAwAA3gMAAPIDAAAJBAAAIAQAADYEAABMBAAAZAQAAHwEAACRBAAApgQAAL0EAADUBAAARUNPTk9NWSBBTk9ESVpFRCBCUkFTU0VDT05PTVkgQU5PRElaRUQgQlJBU1NFQ09OT01ZIEJSVVNIRUQgQlJBU1NFQ09OT01ZIEJSVVNIRUQgQlJBU1NFQ09OT01ZIEJVUk5JU0hFRCBCUkFTU0VDT05PTVkgQlVSTklTSEVEIEJSQVNTRUNPTk9NWSBQTEFURUQgQlJBU1NFQ09OT01ZIFBMQVRFRCBCUkFTU0VDT05PTVkgUE9MSVNIRUQgQlJBU1NFQ09OT01ZIFBPTElTSEVEIEJSQVNTTEFSR0UgQU5PRElaRUQgQlJBU1NMQVJHRSBBTk9ESVpFRCBCUkFTU0xBUkdFIEJSVVNIRUQgQlJBU1NMQVJHRSBCUlVTSEVEIEJSQVNTTEFSR0UgQlVSTklTSEVEIEJSQVNTTEFSR0UgQlVSTklTSEVEIEJSQVNTTEFSR0UgUExBVEVEIEJSQVNTTEFSR0UgUExBVEVEIEJSQVNTTEFSR0UgUE9MSVNIRUQgQlJBU1NMQVJHRSBQT0xJU0hFRCBCUkFTU01FRElVTSBBTk9ESVpFRCBCUkFTU01FRElVTSBBTk9ESVpFRCBCUkFTU01FRElVTSBCUlVTSEVEIEJSQVNTTUVESVVNIEJSVVNIRUQgQlJBU1NNRURJVU0gQlVSTklTSEVEIEJSQVNTTUVESVVNIEJVUk5JU0hFRCBCUkFTU01FRElVTSBQTEFURUQgQlJBU1NNRURJVU0gUExBVEVEIEJSQVNTTUVESVVNIFBPTElTSEVEIEJSQVNTTUVESVVNIFBPTElTSEVEIEJSQVNTUFJPTU8gQU5PRElaRUQgQlJBU1NQUk9NTyBBTk9ESVpFRCBCUkFTU1BST01PIEJSVVNIRUQgQlJBU1NQUk9NTyBCUlVTSEVEIEJSQVNTUFJPTU8gQlVSTklTSEVEIEJSQVNTUFJPTU8gQlVSTklTSEVEIEJSQVNTUFJPTU8gUExBVEVEIEJSQVNTUFJPTU8gUExBVEVEIEJSQVNTUFJPTU8gUE9MSVNIRUQgQlJBU1NQUk9NTyBQT0xJU0hFRCBCUkFTU1NNQUxMIEFOT0RJWkVEIEJSQVNTU01BTEwgQU5PRElaRUQgQlJBU1NTTUFMTCBCUlVTSEVEIEJSQVNTU01BTEwgQlJVU0hFRCBCUkFTU1NNQUxMIEJVUk5JU0hFRCBCUkFTU1NNQUxMIEJVUk5JU0hFRCBCUkFTU1NNQUxMIFBMQVRFRCBCUkFTU1NNQUxMIFBMQVRFRCBCUkFTU1NNQUxMIFBPTElTSEVEIEJSQVNTU01BTEwgUE9MSVNIRUQgQlJBU1NTVEFOREFSRCBBTk9ESVpFRCBCUkFTU1NUQU5EQVJEIEFOT0RJWkVEIEJSQVNTU1RBTkRBUkQgQlJVU0hFRCBCUkFTU1NUQU5EQVJEIEJSVVNIRUQgQlJBU1NTVEFOREFSRCBCVVJOSVNIRUQgQlJBU1NTVEFOREFSRCBCVVJOSVNIRUQgQlJBU1NTVEFOREFSRCBQTEFURUQgQlJBU1NTVEFOREFSRCBQTEFURUQgQlJBU1NTVEFOREFSRCBQT0xJU0hFRCBCUkFTU1NUQU5EQVJEIFBPTElTSEVEIEJSQVNT", + "discreteSetMarker" : "DISCRETE" + }, + "nullAllowed" : false + } + } ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.8", + "state" : "FINISHED", + "plan" : { + "id" : "8", + "root" : { + "@type" : "filter", + "id" : "2214", + "source" : { + "@type" : "tableScan", + "id" : "1", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "supplier", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "bigint", + "name" : "nationkey" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "assignments" : { + "6|bigint|suppkey" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "suppkey", + "type" : "bigint" + }, + "6|bigint|nationkey" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "nationkey", + "type" : "bigint" + }, + "6|double|acctbal" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "acctbal", + "type" : "double" + }, + "11|varchar(25)|name_1" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "name", + "type" : "varchar(25)" + }, + "11|varchar(40)|address" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "address", + "type" : "varchar(40)" + }, + "11|varchar(15)|phone" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "phone", + "type" : "varchar(15)" + }, + "12|varchar(101)|comment_2" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "comment", + "type" : "varchar(101)" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMTM=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "bigint", + "name" : "nationkey" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "1" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey" + }, { + "type" : "varchar(25)", + "name" : "name_1" + }, { + "type" : "varchar(40)", + "name" : "address" + }, { + "type" : "bigint", + "name" : "nationkey" + }, { + "type" : "varchar(15)", + "name" : "phone" + }, { + "type" : "double", + "name" : "acctbal" + }, { + "type" : "varchar(101)", + "name" : "comment_2" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2214" : { + "outputRowCount" : 100.0, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|suppkey" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|nationkey" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 100.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 100.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 100.0 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 100.0 + } + } + }, + "1" : { + "outputRowCount" : 100.0, + "symbolStatistics" : { + "6|double|acctbal" : { + "lowValue" : -966.2, + "highValue" : 9915.24, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|suppkey" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + }, + "6|bigint|nationkey" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "12|varchar(101)|comment_2" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 61.15, + "distinctValuesCount" : 100.0 + }, + "11|varchar(40)|address" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 25.37, + "distinctValuesCount" : 100.0 + }, + "11|varchar(25)|name_1" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 18.0, + "distinctValuesCount" : 100.0 + }, + "11|varchar(15)|phone" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 15.0, + "distinctValuesCount" : 100.0 + } + } + } + }, + "costs" : { + "2214" : { + "cpuCost" : 33304.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 16652.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1" : { + "cpuCost" : 16652.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 16652.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2214\",\n \"name\" : \"ScanFilter\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:supplier\",\n \"filterPredicate\" : \"\",\n \"dynamicFilters\" : \"{nationkey = #df_2213}\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_1\"\n }, {\n \"type\" : \"varchar(40)\",\n \"name\" : \"address\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey\"\n }, {\n \"type\" : \"varchar(15)\",\n \"name\" : \"phone\"\n }, {\n \"type\" : \"double\",\n \"name\" : \"acctbal\"\n }, {\n \"type\" : \"varchar(101)\",\n \"name\" : \"comment_2\"\n } ],\n \"details\" : [ \"suppkey := tpch:suppkey\", \"nationkey := tpch:nationkey\", \"acctbal := tpch:acctbal\", \"name_1 := tpch:name\", \"address := tpch:address\", \"phone := tpch:phone\", \"comment_2 := tpch:comment\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)", "varchar(40)", "bigint", "varchar(15)", "double", "varchar(101)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.171136Z", + "getSplitDistribution" : { + "1" : { + "count" : 1.0, + "total" : 3125.0, + "p01" : 3125.0, + "p05" : 3125.0, + "p10" : 3125.0, + "p25" : 3125.0, + "p50" : 3125.0, + "p75" : 3125.0, + "p90" : 3125.0, + "p95" : 3125.0, + "p99" : 3125.0, + "min" : 3125.0, + "max" : 3125.0, + "avg" : 3125.0 + } + }, + "splitSourceMetrics" : { + "1" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 1269751.205884, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "34.55kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "77.10ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "13.18ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 100, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "16.26kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 100, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2416524583, + "min" : 0.0, + "max" : 2.162456512451172E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 4.960699488862354E-7, + "p95" : 4.254716496510154E-6, + "p99" : 1.499631702406925E-4 + }, + "outputDataSize" : "16.26kB", + "failedOutputDataSize" : "0B", + "outputPositions" : 100, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 8, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2214", + "sourceId" : "1", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 100, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 96, + "getOutputWall" : "15.14ms", + "getOutputCpu" : "9.09ms", + "outputDataSize" : "16.26kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "801577.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 100 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 9.108399999999998E-5, + "max" : 0.0027709999999999996, + "p01" : 9.108399999999998E-5, + "p05" : 1.0395899999999999E-4, + "p10" : 1.0629199999999999E-4, + "p25" : 1.3374999999999997E-4, + "p50" : 1.6945799999999996E-4, + "p75" : 2.8237499999999997E-4, + "p90" : 8.415839999999999E-4, + "p95" : 8.645409999999999E-4, + "p99" : 0.0027709999999999996, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 8.899999999999998E-5, + "max" : 0.001032, + "p01" : 8.899999999999998E-5, + "p05" : 1.0299999999999998E-4, + "p10" : 1.0499999999999999E-4, + "p25" : 1.3199999999999998E-4, + "p50" : 1.6499999999999997E-4, + "p75" : 2.0599999999999997E-4, + "p90" : 2.6099999999999995E-4, + "p95" : 3.0999999999999995E-4, + "p99" : 0.001032, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "2kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2214", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "1.24ms", + "addInputCpu" : "1.26ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "16.26kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "16.26kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.8249999999999996E-5, + "max" : 0.035971749, + "p01" : 1.8249999999999996E-5, + "p05" : 2.0207999999999997E-5, + "p10" : 2.1291999999999995E-5, + "p25" : 2.6583999999999995E-5, + "p50" : 3.1833999999999994E-5, + "p75" : 3.8166999999999996E-5, + "p90" : 1.0512499999999998E-4, + "p95" : 7.057489999999999E-4, + "p99" : 0.035971749, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.8999999999999998E-5, + "max" : 5.29E-4, + "p01" : 1.8999999999999998E-5, + "p05" : 1.9999999999999998E-5, + "p10" : 2.1999999999999996E-5, + "p25" : 2.6999999999999996E-5, + "p50" : 3.2E-5, + "p75" : 3.899999999999999E-5, + "p90" : 1.0499999999999999E-4, + "p95" : 2.3099999999999998E-4, + "p99" : 5.29E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "57.45ms", + "finishCpu" : "1.62ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 7256 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.8.2.0", + "taskInstanceId" : 2165818081785232144, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.8.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "5.81kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "20.83kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.955720Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 36, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 1.4925003051757812E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 8.692526968924821E-8, + "p90" : 1.4035802317063237E-7, + "p95" : 3.002057695618213E-6, + "p99" : 8.60085979577076E-5, + "total" : 790734042 + } + }, + "noMoreSplits" : [ "1" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.174024Z", + "firstStartTime" : "2026-03-30T07:59:03.872876Z", + "lastStartTime" : "2026-03-30T07:59:03.926661Z", + "lastEndTime" : "2026-03-30T07:59:03.947Z", + "endTime" : "2026-03-30T07:59:03.975536Z", + "elapsedTime" : "787.01ms", + "queuedTime" : "684.34ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 1060911.3126400001, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "20.83kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "26.43ms", + "totalCpuTime" : "4.51ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 36, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "5.81kB", + "processedInputPositions" : 36, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "5.81kB", + "outputPositions" : 36, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872876Z", + "lastStartTime" : "2026-03-30T07:59:03.926661Z", + "lastEndTime" : "2026-03-30T07:59:03.947081Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0574967374E10, + "p01" : 6.34457625E8, + "p05" : 6.34457625E8, + "p10" : 6.43038875E8, + "p25" : 6.51136666E8, + "p50" : 6.59988833E8, + "p75" : 6.70984292E8, + "p90" : 6.85574E8, + "p95" : 6.88235083E8, + "p99" : 6.88235083E8, + "min" : 6.34457625E8, + "max" : 6.88235083E8, + "avg" : 6.60935460875E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0601388457E10, + "p01" : 6.35099625E8, + "p05" : 6.35099625E8, + "p10" : 6.43337541E8, + "p25" : 6.51365958E8, + "p50" : 6.60154875E8, + "p75" : 6.71879625E8, + "p90" : 6.85749833E8, + "p95" : 7.08653708E8, + "p99" : 7.08653708E8, + "min" : 6.35099625E8, + "max" : 7.08653708E8, + "avg" : 6.625867785625E8 + }, + "totalScheduledTime" : "26.43ms", + "totalCpuTime" : "4.51ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 36, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "5.81kB", + "processedInputPositions" : 36, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "5.81kB", + "outputPositions" : 36, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2214", + "sourceId" : "1", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 36, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.81kB", + "inputPositions" : 36, + "sumSquaredInputPositions" : 96.0, + "getOutputCalls" : 32, + "getOutputWall" : "5.08ms", + "getOutputCpu" : "3.01ms", + "outputDataSize" : "5.81kB", + "outputPositions" : 36, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "440245.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 36 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2437499999999997E-4, + "max" : 0.001045875, + "p01" : 1.2437499999999997E-4, + "p05" : 1.2437499999999997E-4, + "p10" : 1.2754099999999998E-4, + "p25" : 1.5262499999999998E-4, + "p50" : 1.7841699999999997E-4, + "p75" : 3.9779099999999993E-4, + "p90" : 8.415839999999999E-4, + "p95" : 0.001045875, + "p99" : 0.001045875, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.2299999999999998E-4, + "max" : 3.8299999999999993E-4, + "p01" : 1.2299999999999998E-4, + "p05" : 1.2299999999999998E-4, + "p10" : 1.2599999999999997E-4, + "p25" : 1.4299999999999998E-4, + "p50" : 1.69E-4, + "p75" : 2.3199999999999997E-4, + "p90" : 2.8099999999999995E-4, + "p95" : 3.8299999999999993E-4, + "p99" : 3.8299999999999993E-4, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "2kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2214", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "479.83us", + "addInputCpu" : "483.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.81kB", + "inputPositions" : 36, + "sumSquaredInputPositions" : 96.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "5.81kB", + "outputPositions" : 36, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 2.4541999999999996E-5, + "max" : 0.020265000999999998, + "p01" : 2.4541999999999996E-5, + "p05" : 2.4541999999999996E-5, + "p10" : 2.6499999999999997E-5, + "p25" : 2.8416999999999996E-5, + "p50" : 3.3373999999999996E-5, + "p75" : 3.845899999999999E-5, + "p90" : 1.0512499999999998E-4, + "p95" : 0.020265000999999998, + "p99" : 0.020265000999999998, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 2.4999999999999998E-5, + "max" : 5.29E-4, + "p01" : 2.4999999999999998E-5, + "p05" : 2.4999999999999998E-5, + "p10" : 2.5999999999999995E-5, + "p25" : 2.7999999999999996E-5, + "p50" : 3.5E-5, + "p75" : 3.899999999999999E-5, + "p90" : 1.0499999999999999E-4, + "p95" : 5.29E-4, + "p99" : 5.29E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "20.35ms", + "finishCpu" : "618.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 5008 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.8.0.0", + "taskInstanceId" : 2915961369619835051, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.8.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "5.21kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "13.72kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.986482Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 32, + "totalPagesSent" : 5, + "utilization" : { + "min" : 0.0, + "max" : 2.162456512451172E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 6.47378279072074E-9, + "p75" : 1.1953555637726828E-6, + "p90" : 1.90868463236186E-6, + "p95" : 3.9972197382555175E-6, + "p99" : 3.60716389526688E-5, + "total" : 812341291 + } + }, + "noMoreSplits" : [ "1" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.184158Z", + "firstStartTime" : "2026-03-30T07:59:03.868867Z", + "lastStartTime" : "2026-03-30T07:59:03.947427Z", + "lastEndTime" : "2026-03-30T07:59:03.948Z", + "endTime" : "2026-03-30T07:59:03.993039Z", + "elapsedTime" : "807.70ms", + "queuedTime" : "683.53ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 208839.893244, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "13.72kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "9.82ms", + "totalCpuTime" : "4.65ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "5.21kB", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "5.21kB", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.868866Z", + "lastStartTime" : "2026-03-30T07:59:03.947365Z", + "lastEndTime" : "2026-03-30T07:59:03.948302Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.106771296E10, + "p01" : 6.53039292E8, + "p05" : 6.53039292E8, + "p10" : 6.66654084E8, + "p25" : 6.77968584E8, + "p50" : 6.89851375E8, + "p75" : 7.10343875E8, + "p90" : 7.31348125E8, + "p95" : 7.31529875E8, + "p99" : 7.31529875E8, + "min" : 6.53039292E8, + "max" : 7.31529875E8, + "avg" : 6.9173206E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1077523208E10, + "p01" : 6.55888125E8, + "p05" : 6.55888125E8, + "p10" : 6.6723575E8, + "p25" : 6.78172459E8, + "p50" : 6.90007625E8, + "p75" : 7.10468083E8, + "p90" : 7.3177375E8, + "p95" : 7.32465458E8, + "p99" : 7.32465458E8, + "min" : 6.55888125E8, + "max" : 7.32465458E8, + "avg" : 6.923452005E8 + }, + "totalScheduledTime" : "9.82ms", + "totalCpuTime" : "4.65ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "5.21kB", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "5.21kB", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2214", + "sourceId" : "1", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.21kB", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 32, + "getOutputWall" : "6.08ms", + "getOutputCpu" : "3.36ms", + "outputDataSize" : "5.21kB", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "188587.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 32 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 9.108399999999998E-5, + "max" : 0.0027709999999999996, + "p01" : 9.108399999999998E-5, + "p05" : 9.108399999999998E-5, + "p10" : 9.845799999999998E-5, + "p25" : 1.3374999999999997E-4, + "p50" : 1.57499E-4, + "p75" : 2.2749999999999997E-4, + "p90" : 8.559169999999999E-4, + "p95" : 0.0027709999999999996, + "p99" : 0.0027709999999999996, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 8.899999999999998E-5, + "max" : 0.001032, + "p01" : 8.899999999999998E-5, + "p05" : 8.899999999999998E-5, + "p10" : 9.799999999999998E-5, + "p25" : 1.3199999999999998E-4, + "p50" : 1.5599999999999997E-4, + "p75" : 2.0599999999999997E-4, + "p90" : 2.2999999999999998E-4, + "p95" : 0.001032, + "p99" : 0.001032, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "2kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2214", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "355.75us", + "addInputCpu" : "363.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.21kB", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "5.21kB", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.8249999999999996E-5, + "max" : 7.057489999999999E-4, + "p01" : 1.8249999999999996E-5, + "p05" : 1.8249999999999996E-5, + "p10" : 1.9624999999999996E-5, + "p25" : 2.4624999999999995E-5, + "p50" : 3.1001E-5, + "p75" : 3.7916999999999996E-5, + "p90" : 2.3241699999999995E-4, + "p95" : 7.057489999999999E-4, + "p99" : 7.057489999999999E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.8999999999999998E-5, + "max" : 2.3099999999999998E-4, + "p01" : 1.8999999999999998E-5, + "p05" : 1.8999999999999998E-5, + "p10" : 1.9999999999999998E-5, + "p25" : 2.2999999999999997E-5, + "p50" : 3.2E-5, + "p75" : 3.899999999999999E-5, + "p90" : 1.8599999999999997E-4, + "p95" : 2.3099999999999998E-4, + "p99" : 2.3099999999999998E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "988.04us", + "finishCpu" : "466.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 7256 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.8.1.0", + "taskInstanceId" : -7724890598069153267, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.8.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "5.24kB", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.981261Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 32, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 1.9812583923339844E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 8.820270702358294E-7, + "p90" : 1.4383309362117898E-6, + "p95" : 2.2299082016112348E-5, + "p99" : 1.8998405183430866E-4, + "total" : 813449250 + } + }, + "noMoreSplits" : [ "1" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.171947Z", + "firstStartTime" : "2026-03-30T07:59:03.883721Z", + "lastStartTime" : "2026-03-30T07:59:03.938293Z", + "lastEndTime" : "2026-03-30T07:59:03.974Z", + "endTime" : "2026-03-30T07:59:03.985555Z", + "elapsedTime" : "809.18ms", + "queuedTime" : "707.34ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "40.85ms", + "totalCpuTime" : "4.02ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "5.24kB", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "5.24kB", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.883720Z", + "lastStartTime" : "2026-03-30T07:59:03.938293Z", + "lastEndTime" : "2026-03-30T07:59:03.974405Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.066481946E10, + "p01" : 6.40344917E8, + "p05" : 6.40344917E8, + "p10" : 6.42430334E8, + "p25" : 6.52206041E8, + "p50" : 6.64934E8, + "p75" : 6.85959709E8, + "p90" : 6.93404792E8, + "p95" : 6.94911834E8, + "p99" : 6.94911834E8, + "min" : 6.40344917E8, + "max" : 6.94911834E8, + "avg" : 6.6655121625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0705657877E10, + "p01" : 6.40561625E8, + "p05" : 6.40561625E8, + "p10" : 6.43122792E8, + "p25" : 6.52452E8, + "p50" : 6.65381084E8, + "p75" : 6.86102667E8, + "p90" : 6.93555542E8, + "p95" : 7.31021792E8, + "p99" : 7.31021792E8, + "min" : 6.40561625E8, + "max" : 7.31021792E8, + "avg" : 6.691036173125E8 + }, + "totalScheduledTime" : "40.85ms", + "totalCpuTime" : "4.02ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "5.24kB", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "5.24kB", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2214", + "sourceId" : "1", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.24kB", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 32, + "getOutputWall" : "3.98ms", + "getOutputCpu" : "2.72ms", + "outputDataSize" : "5.24kB", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "172745.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 32 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0395899999999999E-4, + "max" : 8.645409999999999E-4, + "p01" : 1.0395899999999999E-4, + "p05" : 1.0395899999999999E-4, + "p10" : 1.0629199999999999E-4, + "p25" : 1.3162399999999997E-4, + "p50" : 1.6524999999999998E-4, + "p75" : 2.8237499999999997E-4, + "p90" : 6.34458E-4, + "p95" : 8.645409999999999E-4, + "p99" : 8.645409999999999E-4, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.0299999999999998E-4, + "max" : 3.0999999999999995E-4, + "p01" : 1.0299999999999998E-4, + "p05" : 1.0299999999999998E-4, + "p10" : 1.0499999999999999E-4, + "p25" : 1.3E-4, + "p50" : 1.6299999999999998E-4, + "p75" : 1.9599999999999997E-4, + "p90" : 2.6099999999999995E-4, + "p95" : 3.0999999999999995E-4, + "p99" : 3.0999999999999995E-4, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "2kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 8, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2214", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "405.08us", + "addInputCpu" : "414.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "5.24kB", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "5.24kB", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 2.0207999999999997E-5, + "max" : 0.035971749, + "p01" : 2.0207999999999997E-5, + "p05" : 2.0207999999999997E-5, + "p10" : 2.3333999999999997E-5, + "p25" : 2.6583999999999995E-5, + "p50" : 3.079199999999999E-5, + "p75" : 5.879099999999999E-5, + "p90" : 7.016599999999999E-5, + "p95" : 0.035971749, + "p99" : 0.035971749, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.9999999999999998E-5, + "max" : 3.9199999999999993E-4, + "p01" : 1.9999999999999998E-5, + "p05" : 1.9999999999999998E-5, + "p10" : 2.2999999999999997E-5, + "p25" : 2.6999999999999996E-5, + "p50" : 3.2E-5, + "p75" : 5.899999999999999E-5, + "p90" : 7.099999999999999E-5, + "p95" : 3.9199999999999993E-4, + "p99" : 3.9199999999999993E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "36.11ms", + "finishCpu" : "532.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 6648 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "1" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.supplier", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.9", + "state" : "FINISHED", + "plan" : { + "id" : "9", + "root" : { + "@type" : "join", + "id" : "1687", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1984", + "sourceFragmentIds" : [ "10" ], + "outputs" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "regionkey" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2564", + "type" : "GATHER", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "regionkey_12" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1985", + "sourceFragmentIds" : [ "11" ], + "outputs" : [ { + "type" : "bigint", + "name" : "regionkey_12" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "regionkey_12" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "regionkey" + }, + "right" : { + "type" : "bigint", + "name" : "regionkey_12" + } + } ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "rightOutputSymbols" : [ ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2215" : { + "type" : "bigint", + "name" : "regionkey_12" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 5.0, + "outputSizeInBytes" : 105.4, + "cpuCost" : 2605.4, + "memoryCost" : 9.0, + "networkCost" : 761.0 + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "regionkey" + }, { + "type" : "bigint", + "name" : "regionkey_12" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey_8" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1687" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 5.0 + }, + "6|bigint|nationkey_8" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + }, + "1984" : { + "outputRowCount" : 25.0, + "symbolStatistics" : { + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 25.0 + }, + "6|bigint|regionkey" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + }, + "6|bigint|nationkey_8" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + } + } + }, + "2564" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "6|bigint|regionkey_12" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + }, + "1985" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "6|bigint|regionkey_12" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + } + }, + "costs" : { + "1687" : { + "cpuCost" : 3348.4, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 761.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 866.4, + "maxMemory" : 9.0, + "networkCost" : 0.0 + } + }, + "1984" : { + "cpuCost" : 2256.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 752.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 752.0, + "maxMemory" : 0.0, + "networkCost" : 752.0 + } + }, + "2564" : { + "cpuCost" : 226.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 9.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1985" : { + "cpuCost" : 226.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 9.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 9.0, + "maxMemory" : 0.0, + "networkCost" : 9.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1687\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(regionkey = regionkey_12)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_8\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {regionkey_12 -> #df_2215}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1984\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[10]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_8\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2564\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"SINGLE\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_12\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1985\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[11]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_12\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.148302Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 27, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 27, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "265.67kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "6.02ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "4.09ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "3.02s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "963B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 26, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "761B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 26, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "2.74s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2540540459, + "min" : 0.0, + "max" : 1.2874603271484375E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "110B", + "failedOutputDataSize" : "0B", + "outputPositions" : 5, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 9, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1985", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "451.83us", + "getOutputCpu" : "118.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.1799999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.1799999999999998E-4, + "p99" : 1.1799999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.058909332999999994, + "max" : 0.7357527919999999, + "p01" : 0.058909332999999994, + "p05" : 0.058909332999999994, + "p10" : 0.06210166599999999, + "p25" : 0.07883275, + "p50" : 0.09281841599999999, + "p75" : 0.10264983399999998, + "p90" : 0.10840804099999998, + "p95" : 0.7357527919999999, + "p99" : 0.7357527919999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.5183299999999995E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 4.5183299999999995E-4, + "p99" : 4.5183299999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.68s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 104, + "averageBytesPerRequest" : 2, + "successfulRequestsCount" : 40, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 41.0, + "max" : 734.0, + "p01" : 41.0, + "p05" : 41.0, + "p10" : 41.0, + "p25" : 52.0, + "p50" : 696.0, + "p75" : 707.0, + "p90" : 734.0, + "p95" : 734.0, + "p99" : 734.0, + "total" : 6 + } + } + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.83us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 9.999999999999999E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.08375712499999999, + "max" : 0.09128358299999999, + "p01" : 0.08375712499999999, + "p05" : 0.08375712499999999, + "p10" : 0.08375712499999999, + "p25" : 0.08375712499999999, + "p50" : 0.09042666599999999, + "p75" : 0.09128358299999999, + "p90" : 0.09128358299999999, + "p95" : 0.09128358299999999, + "p99" : 0.09128358299999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.1833999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.1833999999999999E-5, + "p90" : 1.1833999999999999E-5, + "p95" : 1.1833999999999999E-5, + "p99" : 1.1833999999999999E-5, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "265.47ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1984", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "920B", + "internalNetworkInputPositions" : 25, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 3, + "getOutputWall" : "129.25us", + "getOutputCpu" : "124.00us", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.599999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.2999999999999996E-5, + "p90" : 4.4999999999999996E-5, + "p95" : 4.599999999999999E-5, + "p99" : 4.599999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.07479349999999998, + "max" : 0.09793933299999999, + "p01" : 0.07479349999999998, + "p05" : 0.07479349999999998, + "p10" : 0.07794216699999999, + "p25" : 0.08072037499999998, + "p50" : 0.09070724999999999, + "p75" : 0.09552187499999999, + "p90" : 0.09711449999999999, + "p95" : 0.09793933299999999, + "p99" : 0.09793933299999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.787499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.4042E-5, + "p90" : 4.7332999999999996E-5, + "p95" : 4.787499999999999E-5, + "p99" : 4.787499999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "1.06s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 416, + "averageBytesPerRequest" : 73, + "successfulRequestsCount" : 48, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 82.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 29.0, + "p50" : 50.0, + "p75" : 74.0, + "p90" : 82.0, + "p95" : 82.0, + "p99" : 82.0, + "total" : 8 + } + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "35.33us", + "addInputCpu" : "36.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "149B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.417E-6, + "max" : 1.9154299999999997E-4, + "p01" : 8.417E-6, + "p05" : 8.417E-6, + "p10" : 9.791999999999999E-6, + "p25" : 1.2040999999999999E-5, + "p50" : 1.6166999999999996E-5, + "p75" : 3.0374999999999996E-5, + "p90" : 4.754099999999999E-5, + "p95" : 1.9154299999999997E-4, + "p99" : 1.9154299999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 1.9199999999999998E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.1999999999999999E-5, + "p50" : 1.6E-5, + "p75" : 2.4999999999999998E-5, + "p90" : 3.9999999999999996E-5, + "p95" : 1.9199999999999998E-4, + "p99" : 1.9199999999999998E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "353.87us", + "finishCpu" : "340.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 432 + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "5.96us", + "addInputCpu" : "9.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 31, + "getOutputWall" : "614.42us", + "getOutputCpu" : "560.00us", + "outputDataSize" : "149B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0999999999999995E-5, + "max" : 2.1399999999999997E-4, + "p01" : 2.0999999999999995E-5, + "p05" : 2.0999999999999995E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 3.699999999999999E-5, + "p50" : 4.4999999999999996E-5, + "p75" : 6.199999999999999E-5, + "p90" : 9.499999999999999E-5, + "p95" : 2.1399999999999997E-4, + "p99" : 2.1399999999999997E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.029753499999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0030186249999999996, + "p90" : 0.029255416999999995, + "p95" : 0.029753499999999995, + "p99" : 0.029753499999999995, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.2874999999999997E-5, + "max" : 2.2629299999999997E-4, + "p01" : 2.2874999999999997E-5, + "p05" : 2.2874999999999997E-5, + "p10" : 3.174999999999999E-5, + "p25" : 3.9874999999999993E-5, + "p50" : 6.779099999999999E-5, + "p75" : 8.554199999999999E-5, + "p90" : 9.649999999999999E-5, + "p95" : 2.2629299999999997E-4, + "p99" : 2.2629299999999997E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "62.03ms", + "finishCalls" : 13, + "finishWall" : "229.79us", + "finishCpu" : "157.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 20, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "19.13us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.799999999999999E-5, + "max" : 1.0999999999999999E-4, + "p01" : 6.799999999999999E-5, + "p05" : 6.799999999999999E-5, + "p10" : 6.799999999999999E-5, + "p25" : 6.799999999999999E-5, + "p50" : 1.0799999999999998E-4, + "p75" : 1.0999999999999999E-4, + "p90" : 1.0999999999999999E-4, + "p95" : 1.0999999999999999E-4, + "p99" : 1.0999999999999999E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.005012124999999999, + "max" : 0.010068916999999998, + "p01" : 0.005012124999999999, + "p05" : 0.005012124999999999, + "p10" : 0.005012124999999999, + "p25" : 0.005012124999999999, + "p50" : 0.007804624999999999, + "p75" : 0.010068916999999998, + "p90" : 0.010068916999999998, + "p95" : 0.010068916999999998, + "p99" : 0.010068916999999998, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 6.833399999999999E-5, + "max" : 1.0883299999999998E-4, + "p01" : 6.833399999999999E-5, + "p05" : 6.833399999999999E-5, + "p10" : 6.833399999999999E-5, + "p25" : 6.833399999999999E-5, + "p50" : 1.0804099999999999E-4, + "p75" : 1.0883299999999998E-4, + "p90" : 1.0883299999999998E-4, + "p95" : 1.0883299999999998E-4, + "p99" : 1.0883299999999998E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "22.88ms", + "finishCalls" : 6, + "finishWall" : "266.08us", + "finishCpu" : "268.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "49.21us", + "addInputCpu" : "41.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 6.4E-5, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 1.9999999999999998E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 5.2999999999999994E-5, + "p90" : 5.999999999999999E-5, + "p95" : 6.4E-5, + "p99" : 6.4E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 8.040999999999998E-6, + "max" : 9.408399999999999E-5, + "p01" : 8.040999999999998E-6, + "p05" : 8.040999999999998E-6, + "p10" : 8.915999999999999E-6, + "p25" : 2.3874999999999998E-5, + "p50" : 3.133299999999999E-5, + "p75" : 7.1459E-5, + "p90" : 8.979099999999998E-5, + "p95" : 9.408399999999999E-5, + "p99" : 9.408399999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "417.34us", + "finishCpu" : "310.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "22.71us", + "addInputCpu" : "23.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 5, + "getOutputWall" : "34.87us", + "getOutputCpu" : "32.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-5, + "max" : 1.6399999999999997E-4, + "p01" : 4.9999999999999996E-5, + "p05" : 4.9999999999999996E-5, + "p10" : 4.9999999999999996E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 1.1699999999999998E-4, + "p75" : 1.6399999999999997E-4, + "p90" : 1.6399999999999997E-4, + "p95" : 1.6399999999999997E-4, + "p99" : 1.6399999999999997E-4, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 5.262399999999999E-5, + "max" : 1.6629199999999999E-4, + "p01" : 5.262399999999999E-5, + "p05" : 5.262399999999999E-5, + "p10" : 5.262399999999999E-5, + "p25" : 5.262399999999999E-5, + "p50" : 1.3508399999999997E-4, + "p75" : 1.6629199999999999E-4, + "p90" : 1.6629199999999999E-4, + "p95" : 1.6629199999999999E-4, + "p99" : 1.6629199999999999E-4, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "296.41us", + "finishCpu" : "276.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.9.1.0", + "taskInstanceId" : -4515377734492881141, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.9.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "110B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "132.84kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.001577Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 5, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 1.2874603271484375E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 850961125 + } + }, + "noMoreSplits" : [ "1985", "1984" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.149050Z", + "firstStartTime" : "2026-03-30T07:59:03.872342Z", + "lastStartTime" : "2026-03-30T07:59:03.908668Z", + "lastEndTime" : "2026-03-30T07:59:03.998Z", + "endTime" : "2026-03-30T07:59:04.002775Z", + "elapsedTime" : "847.02ms", + "queuedTime" : "716.58ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "132.84kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.93ms", + "totalCpuTime" : "1.49ms", + "totalBlockedTime" : "849.44ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "402B", + "internalNetworkInputPositions" : 11, + "processedInputDataSize" : "317B", + "processedInputPositions" : 11, + "inputBlockedTime" : "750.35ms", + "outputDataSize" : "110B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872342Z", + "lastStartTime" : "2026-03-30T07:59:03.905400Z", + "lastEndTime" : "2026-03-30T07:59:03.988040Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.731048875E9, + "p01" : 6.6700825E8, + "p05" : 6.6700825E8, + "p10" : 6.6700825E8, + "p25" : 6.80177667E8, + "p50" : 6.83803E8, + "p75" : 7.00059958E8, + "p90" : 7.00059958E8, + "p95" : 7.00059958E8, + "p99" : 7.00059958E8, + "min" : 6.6700825E8, + "max" : 7.00059958E8, + "avg" : 6.8276221875E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.12747025E9, + "p01" : 7.80648042E8, + "p05" : 7.80648042E8, + "p10" : 7.80648042E8, + "p25" : 7.81532375E8, + "p50" : 7.82588041E8, + "p75" : 7.82701792E8, + "p90" : 7.82701792E8, + "p95" : 7.82701792E8, + "p99" : 7.82701792E8, + "min" : 7.80648042E8, + "max" : 7.82701792E8, + "avg" : 7.818675625E8 + }, + "totalScheduledTime" : "913.63us", + "totalCpuTime" : "504.00us", + "totalBlockedTime" : "381.04ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "381.03ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1985", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "451.83us", + "getOutputCpu" : "118.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.1799999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.1799999999999998E-4, + "p90" : 1.1799999999999998E-4, + "p95" : 1.1799999999999998E-4, + "p99" : 1.1799999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.07883275, + "max" : 0.10840804099999998, + "p01" : 0.07883275, + "p05" : 0.07883275, + "p10" : 0.07883275, + "p25" : 0.09507520799999998, + "p50" : 0.09871691699999999, + "p75" : 0.10840804099999998, + "p90" : 0.10840804099999998, + "p95" : 0.10840804099999998, + "p99" : 0.10840804099999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.5183299999999995E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.5183299999999995E-4, + "p90" : 4.5183299999999995E-4, + "p95" : 4.5183299999999995E-4, + "p99" : 4.5183299999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "381.03ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 104, + "averageBytesPerRequest" : 8, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 2.0, + "max" : 104.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 41.0, + "p50" : 52.0, + "p75" : 104.0, + "p90" : 104.0, + "p95" : 104.0, + "p99" : 104.0, + "total" : 4 + } + } + }, { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "49.21us", + "addInputCpu" : "41.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 5.999999999999999E-5, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.0E-6, + "p25" : 2.0999999999999995E-5, + "p50" : 5.2999999999999994E-5, + "p75" : 5.999999999999999E-5, + "p90" : 5.999999999999999E-5, + "p95" : 5.999999999999999E-5, + "p99" : 5.999999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.915999999999999E-6, + "max" : 9.408399999999999E-5, + "p01" : 8.915999999999999E-6, + "p05" : 8.915999999999999E-6, + "p10" : 8.915999999999999E-6, + "p25" : 2.3874999999999998E-5, + "p50" : 7.1459E-5, + "p75" : 9.408399999999999E-5, + "p90" : 9.408399999999999E-5, + "p95" : 9.408399999999999E-5, + "p99" : 9.408399999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "149.13us", + "finishCpu" : "101.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.895377Z", + "lastStartTime" : "2026-03-30T07:59:03.895377Z", + "lastEndTime" : "2026-03-30T07:59:03.998483Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.90034583E8, + "p01" : 6.90034583E8, + "p05" : 6.90034583E8, + "p10" : 6.90034583E8, + "p25" : 6.90034583E8, + "p50" : 6.90034583E8, + "p75" : 6.90034583E8, + "p90" : 6.90034583E8, + "p95" : 6.90034583E8, + "p99" : 6.90034583E8, + "min" : 6.90034583E8, + "max" : 6.90034583E8, + "avg" : 6.90034583E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.93139917E8, + "p01" : 7.93139917E8, + "p05" : 7.93139917E8, + "p10" : 7.93139917E8, + "p25" : 7.93139917E8, + "p50" : 7.93139917E8, + "p75" : 7.93139917E8, + "p90" : 7.93139917E8, + "p95" : 7.93139917E8, + "p99" : 7.93139917E8, + "min" : 7.93139917E8, + "max" : 7.93139917E8, + "avg" : 7.93139917E8 + }, + "totalScheduledTime" : "308.96us", + "totalCpuTime" : "305.00us", + "totalBlockedTime" : "99.09ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "91.28ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "7.80ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.83us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 9.999999999999999E-6, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 9.999999999999999E-6, + "p95" : 9.999999999999999E-6, + "p99" : 9.999999999999999E-6, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.09128358299999999, + "max" : 0.09128358299999999, + "p01" : 0.09128358299999999, + "p05" : 0.09128358299999999, + "p10" : 0.09128358299999999, + "p25" : 0.09128358299999999, + "p50" : 0.09128358299999999, + "p75" : 0.09128358299999999, + "p90" : 0.09128358299999999, + "p95" : 0.09128358299999999, + "p99" : 0.09128358299999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1833999999999999E-5, + "max" : 1.1833999999999999E-5, + "p01" : 1.1833999999999999E-5, + "p05" : 1.1833999999999999E-5, + "p10" : 1.1833999999999999E-5, + "p25" : 1.1833999999999999E-5, + "p50" : 1.1833999999999999E-5, + "p75" : 1.1833999999999999E-5, + "p90" : 1.1833999999999999E-5, + "p95" : 1.1833999999999999E-5, + "p99" : 1.1833999999999999E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "91.28ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "22.71us", + "addInputCpu" : "23.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 3, + "getOutputWall" : "13.75us", + "getOutputCpu" : "13.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.6399999999999997E-4, + "max" : 1.6399999999999997E-4, + "p01" : 1.6399999999999997E-4, + "p05" : 1.6399999999999997E-4, + "p10" : 1.6399999999999997E-4, + "p25" : 1.6399999999999997E-4, + "p50" : 1.6399999999999997E-4, + "p75" : 1.6399999999999997E-4, + "p90" : 1.6399999999999997E-4, + "p95" : 1.6399999999999997E-4, + "p99" : 1.6399999999999997E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.6629199999999999E-4, + "max" : 1.6629199999999999E-4, + "p01" : 1.6629199999999999E-4, + "p05" : 1.6629199999999999E-4, + "p10" : 1.6629199999999999E-4, + "p25" : 1.6629199999999999E-4, + "p50" : 1.6629199999999999E-4, + "p75" : 1.6629199999999999E-4, + "p90" : 1.6629199999999999E-4, + "p95" : 1.6629199999999999E-4, + "p99" : 1.6629199999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "129.83us", + "finishCpu" : "128.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "19.13us", + "addInputCpu" : "18.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.0799999999999998E-4, + "max" : 1.0799999999999998E-4, + "p01" : 1.0799999999999998E-4, + "p05" : 1.0799999999999998E-4, + "p10" : 1.0799999999999998E-4, + "p25" : 1.0799999999999998E-4, + "p50" : 1.0799999999999998E-4, + "p75" : 1.0799999999999998E-4, + "p90" : 1.0799999999999998E-4, + "p95" : 1.0799999999999998E-4, + "p99" : 1.0799999999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.007804624999999999, + "max" : 0.007804624999999999, + "p01" : 0.007804624999999999, + "p05" : 0.007804624999999999, + "p10" : 0.007804624999999999, + "p25" : 0.007804624999999999, + "p50" : 0.007804624999999999, + "p75" : 0.007804624999999999, + "p90" : 0.007804624999999999, + "p95" : 0.007804624999999999, + "p99" : 0.007804624999999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0804099999999999E-4, + "max" : 1.0804099999999999E-4, + "p01" : 1.0804099999999999E-4, + "p05" : 1.0804099999999999E-4, + "p10" : 1.0804099999999999E-4, + "p25" : 1.0804099999999999E-4, + "p50" : 1.0804099999999999E-4, + "p75" : 1.0804099999999999E-4, + "p90" : 1.0804099999999999E-4, + "p95" : 1.0804099999999999E-4, + "p99" : 1.0804099999999999E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "7.80ms", + "finishCalls" : 2, + "finishWall" : "88.92us", + "finishCpu" : "90.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.892280Z", + "lastStartTime" : "2026-03-30T07:59:03.908667Z", + "lastEndTime" : "2026-03-30T07:59:03.997139Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.78092975E9, + "p01" : 6.8693325E8, + "p05" : 6.8693325E8, + "p10" : 6.8693325E8, + "p25" : 6.92945708E8, + "p50" : 6.97728917E8, + "p75" : 7.03321875E8, + "p90" : 7.03321875E8, + "p95" : 7.03321875E8, + "p99" : 7.03321875E8, + "min" : 6.8693325E8, + "max" : 7.03321875E8, + "avg" : 6.952324375E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.162942041E9, + "p01" : 7.89960208E8, + "p05" : 7.89960208E8, + "p10" : 7.89960208E8, + "p25" : 7.90072375E8, + "p50" : 7.91134E8, + "p75" : 7.91775458E8, + "p90" : 7.91775458E8, + "p95" : 7.91775458E8, + "p99" : 7.91775458E8, + "min" : 7.89960208E8, + "max" : 7.91775458E8, + "avg" : 7.9073551025E8 + }, + "totalScheduledTime" : "704.87us", + "totalCpuTime" : "684.00us", + "totalBlockedTime" : "369.32ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "359B", + "internalNetworkInputPositions" : 10, + "processedInputDataSize" : "308B", + "processedInputPositions" : 10, + "inputBlockedTime" : "369.31ms", + "outputDataSize" : "110B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1984", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "359B", + "internalNetworkInputPositions" : 10, + "inputDataSize" : "308B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 1, + "getOutputWall" : "47.88us", + "getOutputCpu" : "45.00us", + "outputDataSize" : "308B", + "outputPositions" : 10, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.4999999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.4999999999999996E-5, + "p90" : 4.4999999999999996E-5, + "p95" : 4.4999999999999996E-5, + "p99" : 4.4999999999999996E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08514533299999999, + "max" : 0.09793933299999999, + "p01" : 0.08514533299999999, + "p05" : 0.08514533299999999, + "p10" : 0.08514533299999999, + "p25" : 0.09070724999999999, + "p50" : 0.09552187499999999, + "p75" : 0.09793933299999999, + "p90" : 0.09793933299999999, + "p95" : 0.09793933299999999, + "p99" : 0.09793933299999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.787499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.787499999999999E-5, + "p90" : 4.787499999999999E-5, + "p95" : 4.787499999999999E-5, + "p99" : 4.787499999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "369.31ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 416, + "averageBytesPerRequest" : 87, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 91.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 7.0, + "p50" : 90.0, + "p75" : 91.0, + "p90" : 91.0, + "p95" : 91.0, + "p99" : 91.0, + "total" : 4 + } + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "1.88us", + "addInputCpu" : "4.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "308B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 11, + "getOutputWall" : "153.75us", + "getOutputCpu" : "146.00us", + "outputDataSize" : "149B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.0999999999999995E-5, + "max" : 9.499999999999999E-5, + "p01" : 2.0999999999999995E-5, + "p05" : 2.0999999999999995E-5, + "p10" : 2.0999999999999995E-5, + "p25" : 2.9999999999999994E-5, + "p50" : 4.4999999999999996E-5, + "p75" : 9.499999999999999E-5, + "p90" : 9.499999999999999E-5, + "p95" : 9.499999999999999E-5, + "p99" : 9.499999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0030186249999999996, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0030186249999999996, + "p90" : 0.0030186249999999996, + "p95" : 0.0030186249999999996, + "p99" : 0.0030186249999999996, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.2874999999999997E-5, + "max" : 9.649999999999999E-5, + "p01" : 2.2874999999999997E-5, + "p05" : 2.2874999999999997E-5, + "p10" : 2.2874999999999997E-5, + "p25" : 3.2624999999999993E-5, + "p50" : 5.762499999999999E-5, + "p75" : 9.649999999999999E-5, + "p90" : 9.649999999999999E-5, + "p95" : 9.649999999999999E-5, + "p99" : 9.649999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.02ms", + "finishCalls" : 4, + "finishWall" : "54.00us", + "finishCpu" : "41.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 5, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "35.33us", + "addInputCpu" : "36.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "149B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "110B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.417E-6, + "max" : 1.9154299999999997E-4, + "p01" : 8.417E-6, + "p05" : 8.417E-6, + "p10" : 8.417E-6, + "p25" : 9.791999999999999E-6, + "p50" : 1.0624999999999999E-5, + "p75" : 1.9154299999999997E-4, + "p90" : 1.9154299999999997E-4, + "p95" : 1.9154299999999997E-4, + "p99" : 1.9154299999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 1.9199999999999998E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.9199999999999998E-4, + "p90" : 1.9199999999999998E-4, + "p95" : 1.9199999999999998E-4, + "p99" : 1.9199999999999998E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "185.04us", + "finishCpu" : "183.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 432 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.9.2.0", + "taskInstanceId" : -580158457798191921, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.9.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "132.84kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.992047Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 843842209 + } + }, + "noMoreSplits" : [ "1985", "1984" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.149607Z", + "firstStartTime" : "2026-03-30T07:59:03.217607Z", + "lastStartTime" : "2026-03-30T07:59:03.910635Z", + "lastEndTime" : "2026-03-30T07:59:03.987Z", + "endTime" : "2026-03-30T07:59:03.992853Z", + "elapsedTime" : "837.65ms", + "queuedTime" : "62.40ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "132.84kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.81ms", + "totalCpuTime" : "1.55ms", + "totalBlockedTime" : "1.32s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "212B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "146B", + "processedInputPositions" : 5, + "inputBlockedTime" : "1.24s", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.217607Z", + "lastStartTime" : "2026-03-30T07:59:03.894487Z", + "lastEndTime" : "2026-03-30T07:59:03.980609Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.065437293E9, + "p01" : 1.0998417E7, + "p05" : 1.0998417E7, + "p10" : 1.0998417E7, + "p25" : 6.81902792E8, + "p50" : 6.84672375E8, + "p75" : 6.87863709E8, + "p90" : 6.87863709E8, + "p95" : 6.87863709E8, + "p99" : 6.87863709E8, + "min" : 1.0998417E7, + "max" : 6.87863709E8, + "avg" : 5.1635932325E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.064763959E9, + "p01" : 7.49578042E8, + "p05" : 7.49578042E8, + "p10" : 7.49578042E8, + "p25" : 7.69041167E8, + "p50" : 7.72158625E8, + "p75" : 7.73986125E8, + "p90" : 7.73986125E8, + "p95" : 7.73986125E8, + "p99" : 7.73986125E8, + "min" : 7.49578042E8, + "max" : 7.73986125E8, + "avg" : 7.6619098975E8 + }, + "totalScheduledTime" : "423.83us", + "totalCpuTime" : "372.00us", + "totalBlockedTime" : "921.59ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "921.61ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1985", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.058909332999999994, + "max" : 0.7357527919999999, + "p01" : 0.058909332999999994, + "p05" : 0.058909332999999994, + "p10" : 0.058909332999999994, + "p25" : 0.06210166599999999, + "p50" : 0.0648425, + "p75" : 0.7357527919999999, + "p90" : 0.7357527919999999, + "p95" : 0.7357527919999999, + "p99" : 0.7357527919999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "921.61ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 696.0, + "max" : 734.0, + "p01" : 696.0, + "p05" : 696.0, + "p10" : 696.0, + "p25" : 696.0, + "p50" : 707.0, + "p75" : 734.0, + "p90" : 734.0, + "p95" : 734.0, + "p99" : 734.0, + "total" : 3 + } + } + }, { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.3999999999999998E-5, + "max" : 6.4E-5, + "p01" : 1.3999999999999998E-5, + "p05" : 1.3999999999999998E-5, + "p10" : 1.3999999999999998E-5, + "p25" : 2.3999999999999997E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 6.4E-5, + "p90" : 6.4E-5, + "p95" : 6.4E-5, + "p99" : 6.4E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.6624999999999998E-5, + "max" : 8.979099999999998E-5, + "p01" : 1.6624999999999998E-5, + "p05" : 1.6624999999999998E-5, + "p10" : 1.6624999999999998E-5, + "p25" : 2.5124999999999997E-5, + "p50" : 3.4874999999999994E-5, + "p75" : 8.979099999999998E-5, + "p90" : 8.979099999999998E-5, + "p95" : 8.979099999999998E-5, + "p99" : 8.979099999999998E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "166.42us", + "finishCpu" : "126.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.896971Z", + "lastStartTime" : "2026-03-30T07:59:03.896971Z", + "lastEndTime" : "2026-03-30T07:59:03.987900Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.90344125E8, + "p01" : 6.90344125E8, + "p05" : 6.90344125E8, + "p10" : 6.90344125E8, + "p25" : 6.90344125E8, + "p50" : 6.90344125E8, + "p75" : 6.90344125E8, + "p90" : 6.90344125E8, + "p95" : 6.90344125E8, + "p99" : 6.90344125E8, + "min" : 6.90344125E8, + "max" : 6.90344125E8, + "avg" : 6.90344125E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.81272333E8, + "p01" : 7.81272333E8, + "p05" : 7.81272333E8, + "p10" : 7.81272333E8, + "p25" : 7.81272333E8, + "p50" : 7.81272333E8, + "p75" : 7.81272333E8, + "p90" : 7.81272333E8, + "p95" : 7.81272333E8, + "p99" : 7.81272333E8, + "min" : 7.81272333E8, + "max" : 7.81272333E8, + "avg" : 7.81272333E8 + }, + "totalScheduledTime" : "257.38us", + "totalCpuTime" : "241.00us", + "totalBlockedTime" : "88.77ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "83.76ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "5.01ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.08375712499999999, + "max" : 0.08375712499999999, + "p01" : 0.08375712499999999, + "p05" : 0.08375712499999999, + "p10" : 0.08375712499999999, + "p25" : 0.08375712499999999, + "p50" : 0.08375712499999999, + "p75" : 0.08375712499999999, + "p90" : 0.08375712499999999, + "p95" : 0.08375712499999999, + "p99" : 0.08375712499999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "83.76ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 1, + "getOutputWall" : "9.79us", + "getOutputCpu" : "9.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.1699999999999998E-4, + "max" : 1.1699999999999998E-4, + "p01" : 1.1699999999999998E-4, + "p05" : 1.1699999999999998E-4, + "p10" : 1.1699999999999998E-4, + "p25" : 1.1699999999999998E-4, + "p50" : 1.1699999999999998E-4, + "p75" : 1.1699999999999998E-4, + "p90" : 1.1699999999999998E-4, + "p95" : 1.1699999999999998E-4, + "p99" : 1.1699999999999998E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.3508399999999997E-4, + "max" : 1.3508399999999997E-4, + "p01" : 1.3508399999999997E-4, + "p05" : 1.3508399999999997E-4, + "p10" : 1.3508399999999997E-4, + "p25" : 1.3508399999999997E-4, + "p50" : 1.3508399999999997E-4, + "p75" : 1.3508399999999997E-4, + "p90" : 1.3508399999999997E-4, + "p95" : 1.3508399999999997E-4, + "p99" : 1.3508399999999997E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "125.29us", + "finishCpu" : "108.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.0999999999999999E-4, + "max" : 1.0999999999999999E-4, + "p01" : 1.0999999999999999E-4, + "p05" : 1.0999999999999999E-4, + "p10" : 1.0999999999999999E-4, + "p25" : 1.0999999999999999E-4, + "p50" : 1.0999999999999999E-4, + "p75" : 1.0999999999999999E-4, + "p90" : 1.0999999999999999E-4, + "p95" : 1.0999999999999999E-4, + "p99" : 1.0999999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.005012124999999999, + "max" : 0.005012124999999999, + "p01" : 0.005012124999999999, + "p05" : 0.005012124999999999, + "p10" : 0.005012124999999999, + "p25" : 0.005012124999999999, + "p50" : 0.005012124999999999, + "p75" : 0.005012124999999999, + "p90" : 0.005012124999999999, + "p95" : 0.005012124999999999, + "p99" : 0.005012124999999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0883299999999998E-4, + "max" : 1.0883299999999998E-4, + "p01" : 1.0883299999999998E-4, + "p05" : 1.0883299999999998E-4, + "p10" : 1.0883299999999998E-4, + "p25" : 1.0883299999999998E-4, + "p50" : 1.0883299999999998E-4, + "p75" : 1.0883299999999998E-4, + "p90" : 1.0883299999999998E-4, + "p95" : 1.0883299999999998E-4, + "p99" : 1.0883299999999998E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "5.01ms", + "finishCalls" : 2, + "finishWall" : "108.83us", + "finishCpu" : "110.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.901631Z", + "lastStartTime" : "2026-03-30T07:59:03.910635Z", + "lastEndTime" : "2026-03-30T07:59:03.986787Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.797915416E9, + "p01" : 6.95000875E8, + "p05" : 6.95000875E8, + "p10" : 6.95000875E8, + "p25" : 6.98074208E8, + "p50" : 7.00841375E8, + "p75" : 7.03998958E8, + "p90" : 7.03998958E8, + "p95" : 7.03998958E8, + "p99" : 7.03998958E8, + "min" : 6.95000875E8, + "max" : 7.03998958E8, + "avg" : 6.99478854E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.118495209E9, + "p01" : 7.78310417E8, + "p05" : 7.78310417E8, + "p10" : 7.78310417E8, + "p25" : 7.79954084E8, + "p50" : 7.80076208E8, + "p75" : 7.801545E8, + "p90" : 7.801545E8, + "p95" : 7.801545E8, + "p99" : 7.801545E8, + "min" : 7.78310417E8, + "max" : 7.801545E8, + "avg" : 7.7962380225E8 + }, + "totalScheduledTime" : "1.13ms", + "totalCpuTime" : "936.00us", + "totalBlockedTime" : "313.88ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "212B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "146B", + "processedInputPositions" : 5, + "inputBlockedTime" : "313.88ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1984", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "212B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "146B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 1, + "getOutputWall" : "47.33us", + "getOutputCpu" : "46.00us", + "outputDataSize" : "146B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.599999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.599999999999999E-5, + "p90" : 4.599999999999999E-5, + "p95" : 4.599999999999999E-5, + "p99" : 4.599999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.07479349999999998, + "max" : 0.08072037499999998, + "p01" : 0.07479349999999998, + "p05" : 0.07479349999999998, + "p10" : 0.07479349999999998, + "p25" : 0.07794216699999999, + "p50" : 0.08042599999999998, + "p75" : 0.08072037499999998, + "p90" : 0.08072037499999998, + "p95" : 0.08072037499999998, + "p99" : 0.08072037499999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 4.7332999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.7332999999999996E-5, + "p90" : 4.7332999999999996E-5, + "p95" : 4.7332999999999996E-5, + "p99" : 4.7332999999999996E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "313.88ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 272, + "averageBytesPerRequest" : 51, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 74.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 29.0, + "p50" : 50.0, + "p75" : 74.0, + "p90" : 74.0, + "p95" : 74.0, + "p99" : 74.0, + "total" : 4 + } + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "1.79us", + "addInputCpu" : "2.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "146B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 10, + "getOutputWall" : "307.58us", + "getOutputCpu" : "279.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.8999999999999997E-5, + "max" : 2.1399999999999997E-4, + "p01" : 2.8999999999999997E-5, + "p05" : 2.8999999999999997E-5, + "p10" : 2.8999999999999997E-5, + "p25" : 3.7999999999999995E-5, + "p50" : 6.199999999999999E-5, + "p75" : 2.1399999999999997E-4, + "p90" : 2.1399999999999997E-4, + "p95" : 2.1399999999999997E-4, + "p99" : 2.1399999999999997E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.029753499999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.029753499999999995, + "p90" : 0.029753499999999995, + "p95" : 0.029753499999999995, + "p99" : 0.029753499999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.174999999999999E-5, + "max" : 2.2629299999999997E-4, + "p01" : 3.174999999999999E-5, + "p05" : 3.174999999999999E-5, + "p10" : 3.174999999999999E-5, + "p25" : 4.199999999999999E-5, + "p50" : 7.604199999999999E-5, + "p75" : 2.2629299999999997E-4, + "p90" : 2.2629299999999997E-4, + "p95" : 2.2629299999999997E-4, + "p99" : 2.2629299999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "29.75ms", + "finishCalls" : 5, + "finishWall" : "66.71us", + "finishCpu" : "62.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 5, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 0, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.4874999999999997E-5, + "max" : 4.754099999999999E-5, + "p01" : 1.4874999999999997E-5, + "p05" : 1.4874999999999997E-5, + "p10" : 1.4874999999999997E-5, + "p25" : 1.6166999999999996E-5, + "p50" : 1.7208E-5, + "p75" : 4.754099999999999E-5, + "p90" : 4.754099999999999E-5, + "p95" : 4.754099999999999E-5, + "p99" : 4.754099999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 1.6E-5, + "max" : 3.9999999999999996E-5, + "p01" : 1.6E-5, + "p05" : 1.6E-5, + "p10" : 1.6E-5, + "p25" : 1.6E-5, + "p50" : 1.7999999999999997E-5, + "p75" : 3.9999999999999996E-5, + "p90" : 3.9999999999999996E-5, + "p95" : 3.9999999999999996E-5, + "p99" : 3.9999999999999996E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "95.79us", + "finishCpu" : "90.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.9.0.0", + "taskInstanceId" : -5576436516757325719, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.9.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "132.84kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.996774Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 845737125 + } + }, + "noMoreSplits" : [ "1985", "1984" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.152238Z", + "firstStartTime" : "2026-03-30T07:59:03.872829Z", + "lastStartTime" : "2026-03-30T07:59:03.900820Z", + "lastEndTime" : "2026-03-30T07:59:03.994Z", + "endTime" : "2026-03-30T07:59:03.998525Z", + "elapsedTime" : "841.25ms", + "queuedTime" : "715.50ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "132.84kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.28ms", + "totalCpuTime" : "1.05ms", + "totalBlockedTime" : "848.66ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "349B", + "internalNetworkInputPositions" : 10, + "processedInputDataSize" : "298B", + "processedInputPositions" : 10, + "inputBlockedTime" : "748.16ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872828Z", + "lastStartTime" : "2026-03-30T07:59:03.888018Z", + "lastEndTime" : "2026-03-30T07:59:03.980133Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.620282751E9, + "p01" : 6.45655084E8, + "p05" : 6.45655084E8, + "p10" : 6.45655084E8, + "p25" : 6.55486875E8, + "p50" : 6.582975E8, + "p75" : 6.60843292E8, + "p90" : 6.60843292E8, + "p95" : 6.60843292E8, + "p99" : 6.60843292E8, + "min" : 6.45655084E8, + "max" : 6.60843292E8, + "avg" : 6.5507068775E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.009401459E9, + "p01" : 7.51397667E8, + "p05" : 7.51397667E8, + "p10" : 7.51397667E8, + "p25" : 7.52109042E8, + "p50" : 7.52938833E8, + "p75" : 7.52955917E8, + "p90" : 7.52955917E8, + "p95" : 7.52955917E8, + "p99" : 7.52955917E8, + "min" : 7.51397667E8, + "max" : 7.52955917E8, + "avg" : 7.5235036475E8 + }, + "totalScheduledTime" : "1.50ms", + "totalCpuTime" : "350.00us", + "totalBlockedTime" : "372.93ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "372.93ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1985", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08744720799999998, + "max" : 0.10264983399999998, + "p01" : 0.08744720799999998, + "p05" : 0.08744720799999998, + "p10" : 0.08744720799999998, + "p25" : 0.09001491599999999, + "p50" : 0.09281841599999999, + "p75" : 0.10264983399999998, + "p90" : 0.10264983399999998, + "p95" : 0.10264983399999998, + "p99" : 0.10264983399999998, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "372.93ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 41.0, + "max" : 100.0, + "p01" : 41.0, + "p05" : 41.0, + "p10" : 41.0, + "p25" : 41.0, + "p50" : 52.0, + "p75" : 100.0, + "p90" : 100.0, + "p95" : 100.0, + "p99" : 100.0, + "total" : 3 + } + } + }, { + "stageId" : 9, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 3.2999999999999996E-5, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 6.999999999999999E-6, + "p25" : 1.9999999999999998E-5, + "p50" : 2.2999999999999997E-5, + "p75" : 3.2999999999999996E-5, + "p90" : 3.2999999999999996E-5, + "p95" : 3.2999999999999996E-5, + "p99" : 3.2999999999999996E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 8.040999999999998E-6, + "max" : 3.616599999999999E-5, + "p01" : 8.040999999999998E-6, + "p05" : 8.040999999999998E-6, + "p10" : 8.040999999999998E-6, + "p25" : 2.6249999999999998E-5, + "p50" : 3.133299999999999E-5, + "p75" : 3.616599999999999E-5, + "p90" : 3.616599999999999E-5, + "p95" : 3.616599999999999E-5, + "p99" : 3.616599999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "101.79us", + "finishCpu" : "83.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.889942Z", + "lastStartTime" : "2026-03-30T07:59:03.889942Z", + "lastEndTime" : "2026-03-30T07:59:03.994557Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.62765792E8, + "p01" : 6.62765792E8, + "p05" : 6.62765792E8, + "p10" : 6.62765792E8, + "p25" : 6.62765792E8, + "p50" : 6.62765792E8, + "p75" : 6.62765792E8, + "p90" : 6.62765792E8, + "p95" : 6.62765792E8, + "p99" : 6.62765792E8, + "min" : 6.62765792E8, + "max" : 6.62765792E8, + "avg" : 6.62765792E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.67379958E8, + "p01" : 7.67379958E8, + "p05" : 7.67379958E8, + "p10" : 7.67379958E8, + "p25" : 7.67379958E8, + "p50" : 7.67379958E8, + "p75" : 7.67379958E8, + "p90" : 7.67379958E8, + "p95" : 7.67379958E8, + "p99" : 7.67379958E8, + "min" : 7.67379958E8, + "max" : 7.67379958E8, + "avg" : 7.67379958E8 + }, + "totalScheduledTime" : "208.12us", + "totalCpuTime" : "205.00us", + "totalBlockedTime" : "100.49ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "90.43ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "10.07ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2564", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.09042666599999999, + "max" : 0.09042666599999999, + "p01" : 0.09042666599999999, + "p05" : 0.09042666599999999, + "p10" : 0.09042666599999999, + "p25" : 0.09042666599999999, + "p50" : 0.09042666599999999, + "p75" : 0.09042666599999999, + "p90" : 0.09042666599999999, + "p95" : 0.09042666599999999, + "p99" : 0.09042666599999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "90.43ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.33us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-5, + "max" : 4.9999999999999996E-5, + "p01" : 4.9999999999999996E-5, + "p05" : 4.9999999999999996E-5, + "p10" : 4.9999999999999996E-5, + "p25" : 4.9999999999999996E-5, + "p50" : 4.9999999999999996E-5, + "p75" : 4.9999999999999996E-5, + "p90" : 4.9999999999999996E-5, + "p95" : 4.9999999999999996E-5, + "p99" : 4.9999999999999996E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 5.262399999999999E-5, + "max" : 5.262399999999999E-5, + "p01" : 5.262399999999999E-5, + "p05" : 5.262399999999999E-5, + "p10" : 5.262399999999999E-5, + "p25" : 5.262399999999999E-5, + "p50" : 5.262399999999999E-5, + "p75" : 5.262399999999999E-5, + "p90" : 5.262399999999999E-5, + "p95" : 5.262399999999999E-5, + "p99" : 5.262399999999999E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "41.29us", + "finishCpu" : "40.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 9, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 6.799999999999999E-5, + "max" : 6.799999999999999E-5, + "p01" : 6.799999999999999E-5, + "p05" : 6.799999999999999E-5, + "p10" : 6.799999999999999E-5, + "p25" : 6.799999999999999E-5, + "p50" : 6.799999999999999E-5, + "p75" : 6.799999999999999E-5, + "p90" : 6.799999999999999E-5, + "p95" : 6.799999999999999E-5, + "p99" : 6.799999999999999E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.010068916999999998, + "max" : 0.010068916999999998, + "p01" : 0.010068916999999998, + "p05" : 0.010068916999999998, + "p10" : 0.010068916999999998, + "p25" : 0.010068916999999998, + "p50" : 0.010068916999999998, + "p75" : 0.010068916999999998, + "p90" : 0.010068916999999998, + "p95" : 0.010068916999999998, + "p99" : 0.010068916999999998, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 6.833399999999999E-5, + "max" : 6.833399999999999E-5, + "p01" : 6.833399999999999E-5, + "p05" : 6.833399999999999E-5, + "p10" : 6.833399999999999E-5, + "p25" : 6.833399999999999E-5, + "p50" : 6.833399999999999E-5, + "p75" : 6.833399999999999E-5, + "p90" : 6.833399999999999E-5, + "p95" : 6.833399999999999E-5, + "p99" : 6.833399999999999E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "10.07ms", + "finishCalls" : 2, + "finishWall" : "68.33us", + "finishCpu" : "68.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.892370Z", + "lastStartTime" : "2026-03-30T07:59:03.900819Z", + "lastEndTime" : "2026-03-30T07:59:03.993077Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.677545793E9, + "p01" : 6.65192917E8, + "p05" : 6.65192917E8, + "p10" : 6.65192917E8, + "p25" : 6.68255042E8, + "p50" : 6.70456875E8, + "p75" : 6.73640959E8, + "p90" : 6.73640959E8, + "p95" : 6.73640959E8, + "p99" : 6.73640959E8, + "min" : 6.65192917E8, + "max" : 6.73640959E8, + "avg" : 6.6938644825E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.060271751E9, + "p01" : 7.64750083E8, + "p05" : 7.64750083E8, + "p10" : 7.64750083E8, + "p25" : 7.64761834E8, + "p50" : 7.64862042E8, + "p75" : 7.65897792E8, + "p90" : 7.65897792E8, + "p95" : 7.65897792E8, + "p99" : 7.65897792E8, + "min" : 7.64750083E8, + "max" : 7.65897792E8, + "avg" : 7.6506793775E8 + }, + "totalScheduledTime" : "576.38us", + "totalCpuTime" : "498.00us", + "totalBlockedTime" : "375.23ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "349B", + "internalNetworkInputPositions" : 10, + "processedInputDataSize" : "298B", + "processedInputPositions" : 10, + "inputBlockedTime" : "375.23ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1984", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "349B", + "internalNetworkInputPositions" : 10, + "inputDataSize" : "298B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 1, + "getOutputWall" : "34.04us", + "getOutputCpu" : "33.00us", + "outputDataSize" : "298B", + "outputPositions" : 10, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 3.2999999999999996E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.2999999999999996E-5, + "p90" : 3.2999999999999996E-5, + "p95" : 3.2999999999999996E-5, + "p99" : 3.2999999999999996E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.08984970799999999, + "max" : 0.09711449999999999, + "p01" : 0.08984970799999999, + "p05" : 0.08984970799999999, + "p10" : 0.08984970799999999, + "p25" : 0.09303233299999998, + "p50" : 0.09523570799999999, + "p75" : 0.09711449999999999, + "p90" : 0.09711449999999999, + "p95" : 0.09711449999999999, + "p99" : 0.09711449999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 3.4042E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.4042E-5, + "p90" : 3.4042E-5, + "p95" : 3.4042E-5, + "p99" : 3.4042E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "375.23ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 408, + "averageBytesPerRequest" : 85, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 82.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 33.0, + "p50" : 60.0, + "p75" : 82.0, + "p90" : 82.0, + "p95" : 82.0, + "p99" : 82.0, + "total" : 4 + } + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1687", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.29us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "298B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 10, + "getOutputWall" : "153.09us", + "getOutputCpu" : "135.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.699999999999999E-5, + "max" : 6.199999999999999E-5, + "p01" : 3.699999999999999E-5, + "p05" : 3.699999999999999E-5, + "p10" : 3.699999999999999E-5, + "p25" : 3.7999999999999995E-5, + "p50" : 5.4999999999999995E-5, + "p75" : 6.199999999999999E-5, + "p90" : 6.199999999999999E-5, + "p95" : 6.199999999999999E-5, + "p99" : 6.199999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.029255416999999995, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.029255416999999995, + "p90" : 0.029255416999999995, + "p95" : 0.029255416999999995, + "p99" : 0.029255416999999995, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.9874999999999993E-5, + "max" : 8.554199999999999E-5, + "p01" : 3.9874999999999993E-5, + "p05" : 3.9874999999999993E-5, + "p10" : 3.9874999999999993E-5, + "p25" : 6.779099999999999E-5, + "p50" : 7.124999999999998E-5, + "p75" : 8.554199999999999E-5, + "p90" : 8.554199999999999E-5, + "p95" : 8.554199999999999E-5, + "p99" : 8.554199999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "29.26ms", + "finishCalls" : 4, + "finishWall" : "109.08us", + "finishCpu" : "54.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 10, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 0, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 9, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1687", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.2040999999999999E-5, + "max" : 3.0374999999999996E-5, + "p01" : 1.2040999999999999E-5, + "p05" : 1.2040999999999999E-5, + "p10" : 1.2040999999999999E-5, + "p25" : 1.2416999999999998E-5, + "p50" : 1.8207999999999996E-5, + "p75" : 3.0374999999999996E-5, + "p90" : 3.0374999999999996E-5, + "p95" : 3.0374999999999996E-5, + "p99" : 3.0374999999999996E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 1.1999999999999999E-5, + "max" : 2.4999999999999998E-5, + "p01" : 1.1999999999999999E-5, + "p05" : 1.1999999999999999E-5, + "p10" : 1.1999999999999999E-5, + "p25" : 1.1999999999999999E-5, + "p50" : 1.7999999999999997E-5, + "p75" : 2.4999999999999998E-5, + "p90" : 2.4999999999999998E-5, + "p95" : 2.4999999999999998E-5, + "p99" : 2.4999999999999998E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "73.04us", + "finishCpu" : "67.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.10", "20260330_075902_00004_iggau.11" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.15", + "state" : "FINISHED", + "plan" : { + "id" : "15", + "root" : { + "@type" : "filter", + "id" : "2230", + "source" : { + "@type" : "tableScan", + "id" : "10", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "supplier", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "suppkey_22" + }, { + "type" : "bigint", + "name" : "nationkey_25" + } ], + "assignments" : { + "6|bigint|suppkey_22" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "suppkey", + "type" : "bigint" + }, + "6|bigint|nationkey_25" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "nationkey", + "type" : "bigint" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey_25" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMjk=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "suppkey_22" + }, { + "type" : "bigint", + "name" : "nationkey_25" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "10" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey_25" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "suppkey_22" + }, { + "type" : "bigint", + "name" : "nationkey_25" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2230" : { + "outputRowCount" : 100.0, + "symbolStatistics" : { + "6|bigint|nationkey_25" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "6|bigint|suppkey_22" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + } + } + }, + "10" : { + "outputRowCount" : 100.0, + "symbolStatistics" : { + "6|bigint|nationkey_25" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "6|bigint|suppkey_22" : { + "lowValue" : 1.0, + "highValue" : 100.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 100.0 + } + } + } + }, + "costs" : { + "2230" : { + "cpuCost" : 3600.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 1800.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "10" : { + "cpuCost" : 1800.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 1800.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2230\",\n \"name\" : \"ScanFilter\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:supplier\",\n \"filterPredicate\" : \"\",\n \"dynamicFilters\" : \"{nationkey_25 = #df_2229}\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"suppkey_22\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_25\"\n } ],\n \"details\" : [ \"suppkey_22 := tpch:suppkey\", \"nationkey_25 := tpch:nationkey\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.169674Z", + "getSplitDistribution" : { + "10" : { + "count" : 1.0, + "total" : 4417.0, + "p01" : 4417.0, + "p05" : 4417.0, + "p10" : 4417.0, + "p25" : 4417.0, + "p50" : 4417.0, + "p75" : 4417.0, + "p90" : 4417.0, + "p95" : 4417.0, + "p99" : 4417.0, + "min" : 4417.0, + "max" : 4417.0, + "avg" : 4417.0 + } + }, + "splitSourceMetrics" : { + "10" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 2034819.4188120002, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "4.41kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.59s", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "14.27ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 100, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "1.76kB", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 100, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2380835665, + "min" : 0.0, + "max" : 7.033348083496094E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 2.393141294183331E-5 + }, + "outputDataSize" : "1.76kB", + "failedOutputDataSize" : "0B", + "outputPositions" : 100, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 15, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2230", + "sourceId" : "10", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 100, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 96, + "getOutputWall" : "2.57s", + "getOutputCpu" : "10.54ms", + "outputDataSize" : "1.76kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "299932.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 100 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 7.7417E-5, + "max" : 0.6473873339999999, + "p01" : 7.7417E-5, + "p05" : 8.487499999999999E-5, + "p10" : 8.699899999999998E-5, + "p25" : 1.0849999999999998E-4, + "p50" : 1.3004199999999997E-4, + "p75" : 2.3104199999999996E-4, + "p90" : 0.002575166, + "p95" : 0.6366623339999999, + "p99" : 0.6473873339999999, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 7.5E-5, + "max" : 0.0014859999999999997, + "p01" : 7.5E-5, + "p05" : 8.399999999999998E-5, + "p10" : 8.599999999999999E-5, + "p25" : 1.0399999999999998E-4, + "p50" : 1.2599999999999997E-4, + "p75" : 1.9399999999999997E-4, + "p90" : 7.019999999999999E-4, + "p95" : 8.599999999999999E-4, + "p99" : 0.0014859999999999997, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2230", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 48, + "addInputWall" : "1.56ms", + "addInputCpu" : "1.26ms", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "1.76kB", + "inputPositions" : 100, + "sumSquaredInputPositions" : 224.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "1.76kB", + "outputPositions" : 100, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5541E-5, + "max" : 0.010430833999999998, + "p01" : 1.5541E-5, + "p05" : 1.6374999999999998E-5, + "p10" : 1.6791999999999998E-5, + "p25" : 1.9333999999999998E-5, + "p50" : 2.3374999999999996E-5, + "p75" : 5.8166999999999994E-5, + "p90" : 2.47833E-4, + "p95" : 4.4816799999999993E-4, + "p99" : 0.010430833999999998, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 6.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 1.4999999999999997E-5, + "max" : 4.0299999999999993E-4, + "p01" : 1.4999999999999997E-5, + "p05" : 1.6999999999999996E-5, + "p10" : 1.7999999999999997E-5, + "p25" : 1.9999999999999998E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 5.099999999999999E-5, + "p90" : 9.899999999999998E-5, + "p95" : 1.4399999999999998E-4, + "p99" : 4.0299999999999993E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "19.86ms", + "finishCpu" : "1.13ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 2360 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.15.1.0", + "taskInstanceId" : -2176850900059767624, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.15.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "576B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "1.10kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.952168Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 32, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 2.6941299438476562E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 9.78600046682182E-6, + "total" : 814392458 + } + }, + "noMoreSplits" : [ "10" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.171020Z", + "firstStartTime" : "2026-03-30T07:59:03.224218Z", + "lastStartTime" : "2026-03-30T07:59:03.937826Z", + "lastEndTime" : "2026-03-30T07:59:03.948Z", + "endTime" : "2026-03-30T07:59:03.985487Z", + "elapsedTime" : "810.72ms", + "queuedTime" : "49.45ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 416601.13800000004, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.10kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "661.72ms", + "totalCpuTime" : "4.48ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "576B", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "576B", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.224218Z", + "lastStartTime" : "2026-03-30T07:59:03.937825Z", + "lastEndTime" : "2026-03-30T07:59:03.948370Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0496864833E10, + "p01" : 1.2247125E7, + "p05" : 1.2247125E7, + "p10" : 6.72397166E8, + "p25" : 6.83035792E8, + "p50" : 6.96309292E8, + "p75" : 7.164515E8, + "p90" : 7.23513625E8, + "p95" : 7.25842375E8, + "p99" : 7.25842375E8, + "min" : 1.2247125E7, + "max" : 7.25842375E8, + "avg" : 6.560540520625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1158543665E10, + "p01" : 6.5974075E8, + "p05" : 6.5974075E8, + "p10" : 6.72664E8, + "p25" : 6.83227875E8, + "p50" : 6.96504208E8, + "p75" : 7.16597666E8, + "p90" : 7.2369925E8, + "p95" : 7.36385917E8, + "p99" : 7.36385917E8, + "min" : 6.5974075E8, + "max" : 7.36385917E8, + "avg" : 6.974089790625E8 + }, + "totalScheduledTime" : "661.72ms", + "totalCpuTime" : "4.48ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "576B", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "576B", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2230", + "sourceId" : "10", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "576B", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 32, + "getOutputWall" : "650.22ms", + "getOutputCpu" : "3.38ms", + "outputDataSize" : "576B", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "79051.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 32 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 8.345799999999999E-5, + "max" : 0.6473873339999999, + "p01" : 8.345799999999999E-5, + "p05" : 8.345799999999999E-5, + "p10" : 8.487499999999999E-5, + "p25" : 1.0258399999999998E-4, + "p50" : 1.28334E-4, + "p75" : 2.2454199999999997E-4, + "p90" : 7.205419999999999E-4, + "p95" : 0.6473873339999999, + "p99" : 0.6473873339999999, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 8.399999999999998E-5, + "max" : 0.0014859999999999997, + "p01" : 8.399999999999998E-5, + "p05" : 8.399999999999998E-5, + "p10" : 8.399999999999998E-5, + "p25" : 1.0099999999999999E-4, + "p50" : 1.2599999999999997E-4, + "p75" : 1.5199999999999998E-4, + "p90" : 2.1199999999999998E-4, + "p95" : 0.0014859999999999997, + "p99" : 0.0014859999999999997, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2230", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "331.67us", + "addInputCpu" : "327.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "576B", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "576B", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.5541E-5, + "max" : 0.010430833999999998, + "p01" : 1.5541E-5, + "p05" : 1.5541E-5, + "p10" : 1.6041999999999997E-5, + "p25" : 1.7290999999999998E-5, + "p50" : 2.1374999999999998E-5, + "p75" : 2.6707999999999996E-5, + "p90" : 7.541599999999998E-5, + "p95" : 0.010430833999999998, + "p99" : 0.010430833999999998, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.4999999999999997E-5, + "max" : 2.71E-4, + "p01" : 1.4999999999999997E-5, + "p05" : 1.4999999999999997E-5, + "p10" : 1.6E-5, + "p25" : 1.7999999999999997E-5, + "p50" : 2.1999999999999996E-5, + "p75" : 2.6999999999999996E-5, + "p90" : 7.599999999999999E-5, + "p95" : 2.71E-4, + "p99" : 2.71E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "10.50ms", + "finishCpu" : "341.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 904 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.15.2.0", + "taskInstanceId" : 1753130810567806744, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.15.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "648B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "3.30kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.945279Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 36, + "totalPagesSent" : 9, + "utilization" : { + "min" : 0.0, + "max" : 7.033348083496094E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 8.13194228853266E-6, + "p90" : 1.3307355070915032E-5, + "p95" : 1.503249266504249E-5, + "p99" : 3.7726779244278205E-5, + "total" : 764081041 + } + }, + "noMoreSplits" : [ "10" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.170991Z", + "firstStartTime" : "2026-03-30T07:59:03.234234Z", + "lastStartTime" : "2026-03-30T07:59:03.909640Z", + "lastEndTime" : "2026-03-30T07:59:03.910Z", + "endTime" : "2026-03-30T07:59:03.947798Z", + "elapsedTime" : "761.09ms", + "queuedTime" : "47.51ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 1487625.1954200002, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "3.30kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.91s", + "totalCpuTime" : "5.76ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 36, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "648B", + "processedInputPositions" : 36, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "648B", + "outputPositions" : 36, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.234233Z", + "lastStartTime" : "2026-03-30T07:59:03.909640Z", + "lastEndTime" : "2026-03-30T07:59:03.910007Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 8.582883124E9, + "p01" : 580750.0, + "p05" : 580750.0, + "p10" : 1288042.0, + "p25" : 6.47842375E8, + "p50" : 6.574275E8, + "p75" : 6.67789416E8, + "p90" : 6.72516791E8, + "p95" : 6.75968916E8, + "p99" : 6.75968916E8, + "min" : 580750.0, + "max" : 6.75968916E8, + "avg" : 5.3643019525E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0496888956E10, + "p01" : 6.38052792E8, + "p05" : 6.38052792E8, + "p10" : 6.38067125E8, + "p25" : 6.48574583E8, + "p50" : 6.57591916E8, + "p75" : 6.67985083E8, + "p90" : 6.72703166E8, + "p95" : 6.76335041E8, + "p99" : 6.76335041E8, + "min" : 6.38052792E8, + "max" : 6.76335041E8, + "avg" : 6.5605555975E8 + }, + "totalScheduledTime" : "1.91s", + "totalCpuTime" : "5.76ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 36, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "648B", + "processedInputPositions" : 36, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "648B", + "outputPositions" : 36, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2230", + "sourceId" : "10", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 36, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "648B", + "inputPositions" : 36, + "sumSquaredInputPositions" : 96.0, + "getOutputCalls" : 32, + "getOutputWall" : "1.91s", + "getOutputCpu" : "4.27ms", + "outputDataSize" : "648B", + "outputPositions" : 36, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "126628.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 36 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 8.699899999999998E-5, + "max" : 0.637380208, + "p01" : 8.699899999999998E-5, + "p05" : 8.699899999999998E-5, + "p10" : 9.491699999999999E-5, + "p25" : 1.2141599999999998E-4, + "p50" : 1.6783299999999996E-4, + "p75" : 5.719169999999999E-4, + "p90" : 0.6366623339999999, + "p95" : 0.637380208, + "p99" : 0.637380208, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 8.599999999999999E-5, + "max" : 9.299999999999998E-4, + "p01" : 8.599999999999999E-5, + "p05" : 8.599999999999999E-5, + "p10" : 9.399999999999998E-5, + "p25" : 1.1899999999999998E-4, + "p50" : 1.6599999999999997E-4, + "p75" : 2.58E-4, + "p90" : 7.179999999999999E-4, + "p95" : 9.299999999999998E-4, + "p99" : 9.299999999999998E-4, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2230", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "702.42us", + "addInputCpu" : "609.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "648B", + "inputPositions" : 36, + "sumSquaredInputPositions" : 96.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "648B", + "outputPositions" : 36, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.6458999999999996E-5, + "max" : 4.4816799999999993E-4, + "p01" : 1.6458999999999996E-5, + "p05" : 1.6458999999999996E-5, + "p10" : 1.9873999999999996E-5, + "p25" : 2.3374999999999996E-5, + "p50" : 5.333199999999999E-5, + "p75" : 9.849899999999998E-5, + "p90" : 2.51042E-4, + "p95" : 4.4816799999999993E-4, + "p99" : 4.4816799999999993E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 6.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.6999999999999996E-5, + "max" : 1.4399999999999998E-4, + "p01" : 1.6999999999999996E-5, + "p05" : 1.6999999999999996E-5, + "p10" : 2.0999999999999995E-5, + "p25" : 2.3999999999999997E-5, + "p50" : 5.4999999999999995E-5, + "p75" : 9.899999999999998E-5, + "p90" : 1.3599999999999997E-4, + "p95" : 1.4399999999999998E-4, + "p99" : 1.4399999999999998E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "772.79us", + "finishCpu" : "312.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 2360 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.15.0.0", + "taskInstanceId" : -4557165186832545517, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.15.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "576B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "912B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.974003Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 32, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 2.7179718017578125E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.049041748046875E-5, + "total" : 802362166 + } + }, + "noMoreSplits" : [ "10" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.176219Z", + "firstStartTime" : "2026-03-30T07:59:03.869035Z", + "lastStartTime" : "2026-03-30T07:59:03.937318Z", + "lastEndTime" : "2026-03-30T07:59:03.945Z", + "endTime" : "2026-03-30T07:59:03.985409Z", + "elapsedTime" : "798.92ms", + "queuedTime" : "682.54ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 130593.085392, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "912B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "14.29ms", + "totalCpuTime" : "4.03ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "576B", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "576B", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.869034Z", + "lastStartTime" : "2026-03-30T07:59:03.937318Z", + "lastEndTime" : "2026-03-30T07:59:03.945961Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1034449542E10, + "p01" : 6.52340833E8, + "p05" : 6.52340833E8, + "p10" : 6.65624167E8, + "p25" : 6.76143666E8, + "p50" : 6.89768667E8, + "p75" : 7.0942675E8, + "p90" : 7.17882208E8, + "p95" : 7.20268E8, + "p99" : 7.20268E8, + "min" : 6.52340833E8, + "max" : 7.20268E8, + "avg" : 6.89653096375E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1048728791E10, + "p01" : 6.54980667E8, + "p05" : 6.54980667E8, + "p10" : 6.65936167E8, + "p25" : 6.76287583E8, + "p50" : 6.89902375E8, + "p75" : 7.09534625E8, + "p90" : 7.18000541E8, + "p95" : 7.28909166E8, + "p99" : 7.28909166E8, + "min" : 6.54980667E8, + "max" : 7.28909166E8, + "avg" : 6.905455494375E8 + }, + "totalScheduledTime" : "14.29ms", + "totalCpuTime" : "4.03ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "576B", + "processedInputPositions" : 32, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "576B", + "outputPositions" : 32, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2230", + "sourceId" : "10", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 32, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "576B", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 32, + "getOutputWall" : "4.84ms", + "getOutputCpu" : "2.89ms", + "outputDataSize" : "576B", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "94253.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 32 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 7.7417E-5, + "max" : 0.002575166, + "p01" : 7.7417E-5, + "p05" : 7.7417E-5, + "p10" : 8.620899999999999E-5, + "p25" : 1.0849999999999998E-4, + "p50" : 1.1291599999999999E-4, + "p75" : 2.3104199999999996E-4, + "p90" : 4.0874999999999993E-4, + "p95" : 0.002575166, + "p99" : 0.002575166, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 7.5E-5, + "max" : 8.599999999999999E-4, + "p01" : 7.5E-5, + "p05" : 7.5E-5, + "p10" : 8.499999999999999E-5, + "p25" : 1.0399999999999998E-4, + "p50" : 1.0899999999999998E-4, + "p75" : 2.2699999999999996E-4, + "p90" : 2.56E-4, + "p95" : 8.599999999999999E-4, + "p99" : 8.599999999999999E-4, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 15, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2230", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 16, + "addInputWall" : "530.67us", + "addInputCpu" : "326.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "576B", + "inputPositions" : 32, + "sumSquaredInputPositions" : 64.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "576B", + "outputPositions" : 32, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.7542E-5, + "max" : 0.008518999999999999, + "p01" : 1.7542E-5, + "p05" : 1.7542E-5, + "p10" : 1.7624999999999998E-5, + "p25" : 1.9333999999999998E-5, + "p50" : 2.2832999999999996E-5, + "p75" : 4.0957999999999996E-5, + "p90" : 2.4329199999999996E-4, + "p95" : 0.008518999999999999, + "p99" : 0.008518999999999999, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 2.0, + "max" : 2.0, + "p01" : 2.0, + "p05" : 2.0, + "p10" : 2.0, + "p25" : 2.0, + "p50" : 2.0, + "p75" : 2.0, + "p90" : 2.0, + "p95" : 2.0, + "p99" : 2.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 1.7999999999999997E-5, + "max" : 4.0299999999999993E-4, + "p01" : 1.7999999999999997E-5, + "p05" : 1.7999999999999997E-5, + "p10" : 1.8999999999999998E-5, + "p25" : 1.9999999999999998E-5, + "p50" : 2.2999999999999997E-5, + "p75" : 4.0999999999999994E-5, + "p90" : 4.9999999999999996E-5, + "p95" : 4.0299999999999993E-4, + "p99" : 4.0299999999999993E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "8.59ms", + "finishCpu" : "479.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 912 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "10" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.supplier", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.16", + "state" : "FINISHED", + "plan" : { + "id" : "16", + "root" : { + "@type" : "join", + "id" : "1717", + "type" : "INNER", + "left" : { + "@type" : "remoteSource", + "id" : "1990", + "sourceFragmentIds" : [ "17" ], + "outputs" : [ { + "type" : "bigint", + "name" : "nationkey_30" + }, { + "type" : "bigint", + "name" : "regionkey_32" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + }, + "right" : { + "@type" : "exchange", + "id" : "2567", + "type" : "GATHER", + "scope" : "LOCAL", + "partitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SINGLE", + "function" : "SINGLE" + }, + "scaleWriters" : false + }, + "arguments" : [ ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "regionkey_35" + } ], + "replicateNullsAndAny" : false + }, + "sources" : [ { + "@type" : "remoteSource", + "id" : "1991", + "sourceFragmentIds" : [ "18" ], + "outputs" : [ { + "type" : "bigint", + "name" : "regionkey_35" + } ], + "exchangeType" : "REPARTITION", + "retryPolicy" : "NONE" + } ], + "inputs" : [ [ { + "type" : "bigint", + "name" : "regionkey_35" + } ] ] + }, + "criteria" : [ { + "left" : { + "type" : "bigint", + "name" : "regionkey_32" + }, + "right" : { + "type" : "bigint", + "name" : "regionkey_35" + } + } ], + "leftOutputSymbols" : [ { + "type" : "bigint", + "name" : "nationkey_30" + } ], + "rightOutputSymbols" : [ ], + "maySkipOutputDuplicates" : false, + "distributionType" : "PARTITIONED", + "dynamicFilters" : { + "df_2231" : { + "type" : "bigint", + "name" : "regionkey_35" + } + }, + "reorderJoinStatsAndCost" : { + "outputRowCount" : 5.0, + "outputSizeInBytes" : 45.0, + "cpuCost" : 1639.0, + "memoryCost" : 9.0, + "networkCost" : 459.0 + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "nationkey_30" + }, { + "type" : "bigint", + "name" : "regionkey_32" + }, { + "type" : "bigint", + "name" : "regionkey_35" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "nationkey_30" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "nationkey_30" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1717" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "6|bigint|nationkey_30" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + }, + "1990" : { + "outputRowCount" : 25.0, + "symbolStatistics" : { + "6|bigint|nationkey_30" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "6|bigint|regionkey_32" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + }, + "2567" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "6|bigint|regionkey_35" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + }, + "1991" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "6|bigint|regionkey_35" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + } + }, + "costs" : { + "1717" : { + "cpuCost" : 2080.0, + "maxMemory" : 9.0, + "maxMemoryWhenOutputting" : 9.0, + "networkCost" : 459.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 504.0, + "maxMemory" : 9.0, + "networkCost" : 0.0 + } + }, + "1990" : { + "cpuCost" : 1350.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 450.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 450.0, + "maxMemory" : 0.0, + "networkCost" : 450.0 + } + }, + "2567" : { + "cpuCost" : 226.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 9.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 0.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "1991" : { + "cpuCost" : 226.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 9.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 9.0, + "maxMemory" : 0.0, + "networkCost" : 9.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1717\",\n \"name\" : \"InnerJoin\",\n \"descriptor\" : {\n \"criteria\" : \"(regionkey_32 = regionkey_35)\",\n \"distribution\" : \"PARTITIONED\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_30\"\n } ],\n \"details\" : [ \"Distribution: PARTITIONED\", \"dynamicFilterAssignments = {regionkey_35 -> #df_2231}\" ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1990\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[17]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_30\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_32\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n }, {\n \"id\" : \"2567\",\n \"name\" : \"LocalExchange\",\n \"descriptor\" : {\n \"partitioning\" : \"SINGLE\",\n \"isReplicateNullsAndAny\" : \"\",\n \"arguments\" : \"[]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_35\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ {\n \"id\" : \"1991\",\n \"name\" : \"RemoteSource\",\n \"descriptor\" : {\n \"sourceFragmentIds\" : \"[18]\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_35\"\n } ],\n \"details\" : [ ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n } ]\n } ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.140530Z", + "getSplitDistribution" : { }, + "splitSourceMetrics" : { }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 27, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 27, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "263.03kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "59.21ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "28.62ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "7.38s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "605B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 26, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "459B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 26, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "6.48s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2575386416, + "min" : 0.0, + "max" : 8.106231689453125E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "45B", + "failedOutputDataSize" : "0B", + "outputPositions" : 5, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 16, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1991", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "75.83us", + "getOutputCpu" : "74.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.673435375, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0038770419999999994, + "p50" : 0.011176582999999999, + "p75" : 0.6637837499999999, + "p90" : 0.6653003329999999, + "p95" : 0.673435375, + "p99" : 0.673435375, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.583299999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 7.583299999999999E-5, + "p99" : 7.583299999999999E-5, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.71s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 104, + "averageBytesPerRequest" : 3, + "successfulRequestsCount" : 40, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 0.0, + "max" : 669.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 10.0, + "p75" : 24.0, + "p90" : 669.0, + "p95" : 669.0, + "p99" : 669.0, + "total" : 7 + } + } + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "16.58us", + "getOutputCpu" : "15.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.4999999999999997E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.4999999999999997E-5, + "p90" : 1.4999999999999997E-5, + "p95" : 1.4999999999999997E-5, + "p99" : 1.4999999999999997E-5, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.016105209, + "max" : 0.6798344169999999, + "p01" : 0.016105209, + "p05" : 0.016105209, + "p10" : 0.016105209, + "p25" : 0.016105209, + "p50" : 0.031328958, + "p75" : 0.6798344169999999, + "p90" : 0.6798344169999999, + "p95" : 0.6798344169999999, + "p99" : 0.6798344169999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 1.6582999999999997E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.6582999999999997E-5, + "p90" : 1.6582999999999997E-5, + "p95" : 1.6582999999999997E-5, + "p99" : 1.6582999999999997E-5, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "727.27ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1990", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 12, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "562B", + "internalNetworkInputPositions" : 25, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 3, + "getOutputWall" : "351.42us", + "getOutputCpu" : "206.00us", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.0299999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.899999999999999E-5, + "p90" : 5.399999999999999E-5, + "p95" : 1.0299999999999998E-4, + "p99" : 1.0299999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.07890637499999999, + "max" : 0.7646623329999999, + "p01" : 0.07890637499999999, + "p05" : 0.07890637499999999, + "p10" : 0.082014625, + "p25" : 0.08801466699999999, + "p50" : 0.09754166699999998, + "p75" : 0.7613403329999999, + "p90" : 0.7636172499999999, + "p95" : 0.7646623329999999, + "p99" : 0.7646623329999999, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.4504199999999995E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0499999999999994E-5, + "p90" : 5.587499999999999E-5, + "p95" : 2.4504199999999995E-4, + "p99" : 2.4504199999999995E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.76s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 272, + "averageBytesPerRequest" : 44, + "successfulRequestsCount" : 48, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 748.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 32.0, + "p50" : 97.0, + "p75" : 719.0, + "p90" : 748.0, + "p95" : 748.0, + "p99" : 748.0, + "total" : 8 + } + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "36.71us", + "addInputCpu" : "40.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "65B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.333999999999998E-6, + "max" : 1.8958299999999998E-4, + "p01" : 8.333999999999998E-6, + "p05" : 8.333999999999998E-6, + "p10" : 8.541999999999999E-6, + "p25" : 1.0459E-5, + "p50" : 2.4624999999999995E-5, + "p75" : 3.0124999999999997E-5, + "p90" : 7.395799999999999E-5, + "p95" : 1.8958299999999998E-4, + "p99" : 1.8958299999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 12 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.9299999999999997E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 2.3999999999999997E-5, + "p75" : 2.7999999999999996E-5, + "p90" : 7.299999999999999E-5, + "p95" : 1.9299999999999997E-4, + "p99" : 1.9299999999999997E-4, + "total" : 12 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "394.67us", + "finishCpu" : "391.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 272 + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 12, + "addInputCalls" : 3, + "addInputWall" : "7.00us", + "addInputCpu" : "9.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 225.0, + "getOutputCalls" : 31, + "getOutputWall" : "2.29ms", + "getOutputCpu" : "1.72ms", + "outputDataSize" : "65B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 7.649999999999998E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.9999999999999994E-5, + "p25" : 3.399999999999999E-5, + "p50" : 5.099999999999999E-5, + "p75" : 1.5099999999999998E-4, + "p90" : 5.52E-4, + "p95" : 7.649999999999998E-4, + "p99" : 7.649999999999998E-4, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 3.4358399999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 3.4358399999999997E-4, + "p99" : 3.4358399999999997E-4, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6040999999999997E-5, + "max" : 8.360419999999998E-4, + "p01" : 2.6040999999999997E-5, + "p05" : 2.6040999999999997E-5, + "p10" : 3.1957999999999995E-5, + "p25" : 4.1915999999999996E-5, + "p50" : 8.041599999999998E-5, + "p75" : 4.6262499999999993E-4, + "p90" : 6.14165E-4, + "p95" : 8.360419999999998E-4, + "p99" : 8.360419999999998E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "343.58us", + "finishCalls" : 12, + "finishWall" : "215.88us", + "finishCpu" : "138.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 20, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1, + "rleProbes" : 0, + "totalProbes" : 3 + } + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "42.08us", + "addInputCpu" : "43.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0035229999999999997, + "max" : 0.012750999999999998, + "p01" : 0.0035229999999999997, + "p05" : 0.0035229999999999997, + "p10" : 0.0035229999999999997, + "p25" : 0.0035229999999999997, + "p50" : 0.005042, + "p75" : 0.012750999999999998, + "p90" : 0.012750999999999998, + "p95" : 0.012750999999999998, + "p99" : 0.012750999999999998, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.05883554099999999, + "max" : 0.06104212499999999, + "p01" : 0.05883554099999999, + "p05" : 0.05883554099999999, + "p10" : 0.05883554099999999, + "p25" : 0.05883554099999999, + "p50" : 0.059494665999999995, + "p75" : 0.06104212499999999, + "p90" : 0.06104212499999999, + "p95" : 0.06104212499999999, + "p99" : 0.06104212499999999, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 0.005364665999999999, + "max" : 0.028359207999999997, + "p01" : 0.005364665999999999, + "p05" : 0.005364665999999999, + "p10" : 0.005364665999999999, + "p25" : 0.005364665999999999, + "p50" : 0.012015708999999998, + "p75" : 0.028359207999999997, + "p90" : 0.028359207999999997, + "p95" : 0.028359207999999997, + "p99" : 0.028359207999999997, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "179.37ms", + "finishCalls" : 6, + "finishWall" : "45.69ms", + "finishCpu" : "21.27ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 12, + "addInputCalls" : 1, + "addInputWall" : "21.25us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 9.099999999999999E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.9999999999999998E-5, + "p75" : 3.7999999999999995E-5, + "p90" : 4.4999999999999996E-5, + "p95" : 9.099999999999999E-5, + "p99" : 9.099999999999999E-5, + "total" : 12 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 12 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 12 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0541999999999998E-5, + "max" : 5.435419999999999E-4, + "p01" : 1.0541999999999998E-5, + "p05" : 1.0541999999999998E-5, + "p10" : 1.0957999999999999E-5, + "p25" : 1.1749999999999998E-5, + "p50" : 2.3958999999999995E-5, + "p75" : 4.174999999999999E-5, + "p90" : 4.649999999999999E-5, + "p95" : 5.435419999999999E-4, + "p99" : 5.435419999999999E-4, + "total" : 12 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 12, + "finishWall" : "788.71us", + "finishCpu" : "294.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 3, + "addInputCalls" : 1, + "addInputWall" : "801.58us", + "addInputCpu" : "597.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 4, + "getOutputWall" : "30.92us", + "getOutputCpu" : "27.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.6699999999999997E-4, + "max" : 0.0015449999999999997, + "p01" : 1.6699999999999997E-4, + "p05" : 1.6699999999999997E-4, + "p10" : 1.6699999999999997E-4, + "p25" : 1.6699999999999997E-4, + "p50" : 9.269999999999999E-4, + "p75" : 0.0015449999999999997, + "p90" : 0.0015449999999999997, + "p95" : 0.0015449999999999997, + "p99" : 0.0015449999999999997, + "total" : 3 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 3 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 3 + }, + "Scheduled time distribution (s)" : { + "min" : 1.9258399999999998E-4, + "max" : 0.0027627079999999996, + "p01" : 1.9258399999999998E-4, + "p05" : 1.9258399999999998E-4, + "p10" : 1.9258399999999998E-4, + "p25" : 1.9258399999999998E-4, + "p50" : 0.0019784589999999997, + "p75" : 0.0027627079999999996, + "p90" : 0.0027627079999999996, + "p95" : 0.0027627079999999996, + "p99" : 0.0027627079999999996, + "total" : 3 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 3, + "finishWall" : "4.10ms", + "finishCpu" : "2.02ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.16.2.0", + "taskInstanceId" : 8231168194120312734, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.16.2.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "130.34kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.999881Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 857520708 + } + }, + "noMoreSplits" : [ "1991", "1990" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.142854Z", + "firstStartTime" : "2026-03-30T07:59:03.883036Z", + "lastStartTime" : "2026-03-30T07:59:03.910711Z", + "lastEndTime" : "2026-03-30T07:59:03.996Z", + "endTime" : "2026-03-30T07:59:04.001178Z", + "elapsedTime" : "853.69ms", + "queuedTime" : "735.55ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "130.34kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "6.66ms", + "totalCpuTime" : "4.64ms", + "totalBlockedTime" : "444.80ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "134B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "90B", + "processedInputPositions" : 5, + "inputBlockedTime" : "354.63ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.883035Z", + "lastStartTime" : "2026-03-30T07:59:03.893957Z", + "lastEndTime" : "2026-03-30T07:59:03.927898Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.714728416E9, + "p01" : 6.72685542E8, + "p05" : 6.72685542E8, + "p10" : 6.72685542E8, + "p25" : 6.7747225E8, + "p50" : 6.80965166E8, + "p75" : 6.83605458E8, + "p90" : 6.83605458E8, + "p95" : 6.83605458E8, + "p99" : 6.83605458E8, + "min" : 6.72685542E8, + "max" : 6.83605458E8, + "avg" : 6.78682104E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.819344749E9, + "p01" : 6.83650708E8, + "p05" : 6.83650708E8, + "p10" : 6.83650708E8, + "p25" : 7.0429E8, + "p50" : 7.13858875E8, + "p75" : 7.17545166E8, + "p90" : 7.17545166E8, + "p95" : 7.17545166E8, + "p99" : 7.17545166E8, + "min" : 6.83650708E8, + "max" : 7.17545166E8, + "avg" : 7.0483618725E8 + }, + "totalScheduledTime" : "302.83us", + "totalCpuTime" : "266.00us", + "totalBlockedTime" : "20.76ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "20.76ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1991", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.011176582999999999, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0031960419999999996, + "p50" : 0.006386291999999999, + "p75" : 0.011176582999999999, + "p90" : 0.011176582999999999, + "p95" : 0.011176582999999999, + "p99" : 0.011176582999999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "20.76ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 1.0, + "max" : 6.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 6.0, + "p90" : 6.0, + "p95" : 6.0, + "p99" : 6.0, + "total" : 3 + } + } + }, { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 2.2999999999999997E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 1.9999999999999998E-5, + "p75" : 2.2999999999999997E-5, + "p90" : 2.2999999999999997E-5, + "p95" : 2.2999999999999997E-5, + "p99" : 2.2999999999999997E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0541999999999998E-5, + "max" : 4.174999999999999E-5, + "p01" : 1.0541999999999998E-5, + "p05" : 1.0541999999999998E-5, + "p10" : 1.0541999999999998E-5, + "p25" : 1.0957999999999999E-5, + "p50" : 2.4041999999999998E-5, + "p75" : 4.174999999999999E-5, + "p90" : 4.174999999999999E-5, + "p95" : 4.174999999999999E-5, + "p99" : 4.174999999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "87.29us", + "finishCpu" : "61.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.896692Z", + "lastStartTime" : "2026-03-30T07:59:03.896692Z", + "lastEndTime" : "2026-03-30T07:59:03.996559Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.86339333E8, + "p01" : 6.86339333E8, + "p05" : 6.86339333E8, + "p10" : 6.86339333E8, + "p25" : 6.86339333E8, + "p50" : 6.86339333E8, + "p75" : 6.86339333E8, + "p90" : 6.86339333E8, + "p95" : 6.86339333E8, + "p99" : 6.86339333E8, + "min" : 6.86339333E8, + "max" : 6.86339333E8, + "avg" : 6.86339333E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.86204833E8, + "p01" : 7.86204833E8, + "p05" : 7.86204833E8, + "p10" : 7.86204833E8, + "p25" : 7.86204833E8, + "p50" : 7.86204833E8, + "p75" : 7.86204833E8, + "p90" : 7.86204833E8, + "p95" : 7.86204833E8, + "p99" : 7.86204833E8, + "min" : 7.86204833E8, + "max" : 7.86204833E8, + "avg" : 7.86204833E8 + }, + "totalScheduledTime" : "5.58ms", + "totalCpuTime" : "3.71ms", + "totalBlockedTime" : "90.16ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "31.33ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "58.84ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.031328958, + "max" : 0.031328958, + "p01" : 0.031328958, + "p05" : 0.031328958, + "p10" : 0.031328958, + "p25" : 0.031328958, + "p50" : 0.031328958, + "p75" : 0.031328958, + "p90" : 0.031328958, + "p95" : 0.031328958, + "p99" : 0.031328958, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "31.33ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 1, + "getOutputWall" : "10.50us", + "getOutputCpu" : "9.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.6699999999999997E-4, + "max" : 1.6699999999999997E-4, + "p01" : 1.6699999999999997E-4, + "p05" : 1.6699999999999997E-4, + "p10" : 1.6699999999999997E-4, + "p25" : 1.6699999999999997E-4, + "p50" : 1.6699999999999997E-4, + "p75" : 1.6699999999999997E-4, + "p90" : 1.6699999999999997E-4, + "p95" : 1.6699999999999997E-4, + "p99" : 1.6699999999999997E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.9258399999999998E-4, + "max" : 1.9258399999999998E-4, + "p01" : 1.9258399999999998E-4, + "p05" : 1.9258399999999998E-4, + "p10" : 1.9258399999999998E-4, + "p25" : 1.9258399999999998E-4, + "p50" : 1.9258399999999998E-4, + "p75" : 1.9258399999999998E-4, + "p90" : 1.9258399999999998E-4, + "p95" : 1.9258399999999998E-4, + "p99" : 1.9258399999999998E-4, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "182.08us", + "finishCpu" : "158.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0035229999999999997, + "max" : 0.0035229999999999997, + "p01" : 0.0035229999999999997, + "p05" : 0.0035229999999999997, + "p10" : 0.0035229999999999997, + "p25" : 0.0035229999999999997, + "p50" : 0.0035229999999999997, + "p75" : 0.0035229999999999997, + "p90" : 0.0035229999999999997, + "p95" : 0.0035229999999999997, + "p99" : 0.0035229999999999997, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.05883554099999999, + "max" : 0.05883554099999999, + "p01" : 0.05883554099999999, + "p05" : 0.05883554099999999, + "p10" : 0.05883554099999999, + "p25" : 0.05883554099999999, + "p50" : 0.05883554099999999, + "p75" : 0.05883554099999999, + "p90" : 0.05883554099999999, + "p95" : 0.05883554099999999, + "p99" : 0.05883554099999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.005364665999999999, + "max" : 0.005364665999999999, + "p01" : 0.005364665999999999, + "p05" : 0.005364665999999999, + "p10" : 0.005364665999999999, + "p25" : 0.005364665999999999, + "p50" : 0.005364665999999999, + "p75" : 0.005364665999999999, + "p90" : 0.005364665999999999, + "p95" : 0.005364665999999999, + "p99" : 0.005364665999999999, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "58.84ms", + "finishCalls" : 2, + "finishWall" : "5.36ms", + "finishCpu" : "3.52ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.901469Z", + "lastStartTime" : "2026-03-30T07:59:03.910710Z", + "lastEndTime" : "2026-03-30T07:59:03.995086Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.783299126E9, + "p01" : 6.9111525E8, + "p05" : 6.9111525E8, + "p10" : 6.9111525E8, + "p25" : 6.94372292E8, + "p50" : 6.97456042E8, + "p75" : 7.00355542E8, + "p90" : 7.00355542E8, + "p95" : 7.00355542E8, + "p99" : 7.00355542E8, + "min" : 6.9111525E8, + "max" : 7.00355542E8, + "avg" : 6.958247815E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.135738417E9, + "p01" : 7.83552667E8, + "p05" : 7.83552667E8, + "p10" : 7.83552667E8, + "p25" : 7.83724583E8, + "p50" : 7.83730542E8, + "p75" : 7.84730625E8, + "p90" : 7.84730625E8, + "p95" : 7.84730625E8, + "p99" : 7.84730625E8, + "min" : 7.83552667E8, + "max" : 7.84730625E8, + "avg" : 7.8393460425E8 + }, + "totalScheduledTime" : "778.00us", + "totalCpuTime" : "663.00us", + "totalBlockedTime" : "333.87ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "134B", + "internalNetworkInputPositions" : 5, + "processedInputDataSize" : "90B", + "processedInputPositions" : 5, + "inputBlockedTime" : "333.87ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1990", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "134B", + "internalNetworkInputPositions" : 5, + "inputDataSize" : "90B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 1, + "getOutputWall" : "50.50us", + "getOutputCpu" : "49.00us", + "outputDataSize" : "90B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 4.899999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 4.899999999999999E-5, + "p90" : 4.899999999999999E-5, + "p95" : 4.899999999999999E-5, + "p99" : 4.899999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.07890637499999999, + "max" : 0.08801466699999999, + "p01" : 0.07890637499999999, + "p05" : 0.07890637499999999, + "p10" : 0.07890637499999999, + "p25" : 0.082014625, + "p50" : 0.08493624999999999, + "p75" : 0.08801466699999999, + "p90" : 0.08801466699999999, + "p95" : 0.08801466699999999, + "p99" : 0.08801466699999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.0499999999999994E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0499999999999994E-5, + "p90" : 5.0499999999999994E-5, + "p95" : 5.0499999999999994E-5, + "p99" : 5.0499999999999994E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "333.87ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 192, + "averageBytesPerRequest" : 32, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 15.0, + "max" : 87.0, + "p01" : 15.0, + "p05" : 15.0, + "p10" : 15.0, + "p25" : 34.0, + "p50" : 37.0, + "p75" : 87.0, + "p90" : 87.0, + "p95" : 87.0, + "p99" : 87.0, + "total" : 4 + } + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.42us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "90B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 10, + "getOutputWall" : "256.88us", + "getOutputCpu" : "220.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 1.5099999999999998E-4, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.0999999999999995E-5, + "p25" : 4.899999999999999E-5, + "p50" : 5.099999999999999E-5, + "p75" : 1.5099999999999998E-4, + "p90" : 1.5099999999999998E-4, + "p95" : 1.5099999999999998E-4, + "p99" : 1.5099999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.595899999999999E-5, + "max" : 1.7466599999999997E-4, + "p01" : 3.595899999999999E-5, + "p05" : 3.595899999999999E-5, + "p10" : 3.595899999999999E-5, + "p25" : 5.483399999999999E-5, + "p50" : 1.0199999999999999E-4, + "p75" : 1.7466599999999997E-4, + "p90" : 1.7466599999999997E-4, + "p95" : 1.7466599999999997E-4, + "p99" : 1.7466599999999997E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "108.17us", + "finishCpu" : "59.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 5, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 0, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 1.0459E-5, + "max" : 3.0124999999999997E-5, + "p01" : 1.0459E-5, + "p05" : 1.0459E-5, + "p10" : 1.0459E-5, + "p25" : 1.0749999999999999E-5, + "p50" : 2.4624999999999995E-5, + "p75" : 3.0124999999999997E-5, + "p90" : 3.0124999999999997E-5, + "p95" : 3.0124999999999997E-5, + "p99" : 3.0124999999999997E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 2.4999999999999998E-5, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.1999999999999999E-5, + "p50" : 2.3999999999999997E-5, + "p75" : 2.4999999999999998E-5, + "p90" : 2.4999999999999998E-5, + "p95" : 2.4999999999999998E-5, + "p99" : 2.4999999999999998E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "75.96us", + "finishCpu" : "71.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.16.0.0", + "taskInstanceId" : -9213880809508438914, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.16.0.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.002835Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 857264958 + } + }, + "noMoreSplits" : [ "1991", "1990" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.141438Z", + "firstStartTime" : "2026-03-30T07:59:03.218028Z", + "lastStartTime" : "2026-03-30T07:59:03.231042Z", + "lastEndTime" : "2026-03-30T07:59:03.996Z", + "endTime" : "2026-03-30T07:59:04.001227Z", + "elapsedTime" : "853.15ms", + "queuedTime" : "69.90ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "34.33ms", + "totalCpuTime" : "15.37ms", + "totalBlockedTime" : "6.45s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "214B", + "internalNetworkInputPositions" : 10, + "processedInputDataSize" : "180B", + "processedInputPositions" : 10, + "inputBlockedTime" : "5.71s", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.218028Z", + "lastStartTime" : "2026-03-30T07:59:03.229758Z", + "lastEndTime" : "2026-03-30T07:59:03.899160Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 4.9599292E7, + "p01" : 5021000.0, + "p05" : 5021000.0, + "p10" : 5021000.0, + "p25" : 1.3159625E7, + "p50" : 1.4670625E7, + "p75" : 1.6748042E7, + "p90" : 1.6748042E7, + "p95" : 1.6748042E7, + "p99" : 1.6748042E7, + "min" : 5021000.0, + "max" : 1.6748042E7, + "avg" : 1.2399823E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.732486042E9, + "p01" : 6.79263208E8, + "p05" : 6.79263208E8, + "p10" : 6.79263208E8, + "p25" : 6.82508E8, + "p50" : 6.84571334E8, + "p75" : 6.861435E8, + "p90" : 6.861435E8, + "p95" : 6.861435E8, + "p99" : 6.861435E8, + "min" : 6.79263208E8, + "max" : 6.861435E8, + "avg" : 6.831215105E8 + }, + "totalScheduledTime" : "362.46us", + "totalCpuTime" : "345.00us", + "totalBlockedTime" : "2.66s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "2.66s", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1991", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.6617021249999999, + "max" : 0.673435375, + "p01" : 0.6617021249999999, + "p05" : 0.6617021249999999, + "p10" : 0.6617021249999999, + "p25" : 0.6637837499999999, + "p50" : 0.6653003329999999, + "p75" : 0.673435375, + "p90" : 0.673435375, + "p95" : 0.673435375, + "p99" : 0.673435375, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "2.66s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 0, + "averageBytesPerRequest" : 0, + "successfulRequestsCount" : 12, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 10.0, + "max" : 669.0, + "p01" : 10.0, + "p05" : 10.0, + "p10" : 10.0, + "p25" : 10.0, + "p50" : 24.0, + "p75" : 669.0, + "p90" : 669.0, + "p95" : 669.0, + "p99" : 669.0, + "total" : 3 + } + } + }, { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.0999999999999998E-5, + "max" : 3.7999999999999995E-5, + "p01" : 1.0999999999999998E-5, + "p05" : 1.0999999999999998E-5, + "p10" : 1.0999999999999998E-5, + "p25" : 1.8999999999999998E-5, + "p50" : 1.9999999999999998E-5, + "p75" : 3.7999999999999995E-5, + "p90" : 3.7999999999999995E-5, + "p95" : 3.7999999999999995E-5, + "p99" : 3.7999999999999995E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1249999999999999E-5, + "max" : 3.975E-5, + "p01" : 1.1249999999999999E-5, + "p05" : 1.1249999999999999E-5, + "p10" : 1.1249999999999999E-5, + "p25" : 2.1957999999999995E-5, + "p50" : 2.3958999999999995E-5, + "p75" : 3.975E-5, + "p90" : 3.975E-5, + "p95" : 3.975E-5, + "p99" : 3.975E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "96.92us", + "finishCpu" : "88.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.219319Z", + "lastStartTime" : "2026-03-30T07:59:03.219319Z", + "lastEndTime" : "2026-03-30T07:59:03.996234Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6307792.0, + "p01" : 6307792.0, + "p05" : 6307792.0, + "p10" : 6307792.0, + "p25" : 6307792.0, + "p50" : 6307792.0, + "p75" : 6307792.0, + "p90" : 6307792.0, + "p95" : 6307792.0, + "p99" : 6307792.0, + "min" : 6307792.0, + "max" : 6307792.0, + "avg" : 6307792.0 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.83216167E8, + "p01" : 7.83216167E8, + "p05" : 7.83216167E8, + "p10" : 7.83216167E8, + "p25" : 7.83216167E8, + "p50" : 7.83216167E8, + "p75" : 7.83216167E8, + "p90" : 7.83216167E8, + "p95" : 7.83216167E8, + "p99" : 7.83216167E8, + "min" : 7.83216167E8, + "max" : 7.83216167E8, + "avg" : 7.83216167E8 + }, + "totalScheduledTime" : "30.79ms", + "totalCpuTime" : "13.83ms", + "totalBlockedTime" : "740.88ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "679.83ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "61.04ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.6798344169999999, + "max" : 0.6798344169999999, + "p01" : 0.6798344169999999, + "p05" : 0.6798344169999999, + "p10" : 0.6798344169999999, + "p25" : 0.6798344169999999, + "p50" : 0.6798344169999999, + "p75" : 0.6798344169999999, + "p90" : 0.6798344169999999, + "p95" : 0.6798344169999999, + "p99" : 0.6798344169999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "679.83ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 1, + "getOutputWall" : "11.67us", + "getOutputCpu" : "10.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.269999999999999E-4, + "max" : 9.269999999999999E-4, + "p01" : 9.269999999999999E-4, + "p05" : 9.269999999999999E-4, + "p10" : 9.269999999999999E-4, + "p25" : 9.269999999999999E-4, + "p50" : 9.269999999999999E-4, + "p75" : 9.269999999999999E-4, + "p90" : 9.269999999999999E-4, + "p95" : 9.269999999999999E-4, + "p99" : 9.269999999999999E-4, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0019784589999999997, + "max" : 0.0019784589999999997, + "p01" : 0.0019784589999999997, + "p05" : 0.0019784589999999997, + "p10" : 0.0019784589999999997, + "p25" : 0.0019784589999999997, + "p50" : 0.0019784589999999997, + "p75" : 0.0019784589999999997, + "p90" : 0.0019784589999999997, + "p95" : 0.0019784589999999997, + "p99" : 0.0019784589999999997, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.97ms", + "finishCpu" : "917.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.012750999999999998, + "max" : 0.012750999999999998, + "p01" : 0.012750999999999998, + "p05" : 0.012750999999999998, + "p10" : 0.012750999999999998, + "p25" : 0.012750999999999998, + "p50" : 0.012750999999999998, + "p75" : 0.012750999999999998, + "p90" : 0.012750999999999998, + "p95" : 0.012750999999999998, + "p99" : 0.012750999999999998, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.06104212499999999, + "max" : 0.06104212499999999, + "p01" : 0.06104212499999999, + "p05" : 0.06104212499999999, + "p10" : 0.06104212499999999, + "p25" : 0.06104212499999999, + "p50" : 0.06104212499999999, + "p75" : 0.06104212499999999, + "p90" : 0.06104212499999999, + "p95" : 0.06104212499999999, + "p99" : 0.06104212499999999, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.028359207999999997, + "max" : 0.028359207999999997, + "p01" : 0.028359207999999997, + "p05" : 0.028359207999999997, + "p10" : 0.028359207999999997, + "p25" : 0.028359207999999997, + "p50" : 0.028359207999999997, + "p75" : 0.028359207999999997, + "p90" : 0.028359207999999997, + "p95" : 0.028359207999999997, + "p99" : 0.028359207999999997, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "61.04ms", + "finishCalls" : 2, + "finishWall" : "28.36ms", + "finishCpu" : "12.75ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.225320Z", + "lastStartTime" : "2026-03-30T07:59:03.231042Z", + "lastEndTime" : "2026-03-30T07:59:03.994671Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 6.0712084E7, + "p01" : 1.2308417E7, + "p05" : 1.2308417E7, + "p10" : 1.2308417E7, + "p25" : 1.2986458E7, + "p50" : 1.7387959E7, + "p75" : 1.802925E7, + "p90" : 1.802925E7, + "p95" : 1.802925E7, + "p99" : 1.802925E7, + "min" : 1.2308417E7, + "max" : 1.802925E7, + "avg" : 1.5178021E7 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.121618751E9, + "p01" : 7.78940209E8, + "p05" : 7.78940209E8, + "p10" : 7.78940209E8, + "p25" : 7.79944625E8, + "p50" : 7.81082125E8, + "p75" : 7.81651792E8, + "p90" : 7.81651792E8, + "p95" : 7.81651792E8, + "p99" : 7.81651792E8, + "min" : 7.78940209E8, + "max" : 7.81651792E8, + "avg" : 7.8040468775E8 + }, + "totalScheduledTime" : "3.18ms", + "totalCpuTime" : "1.20ms", + "totalBlockedTime" : "3.05s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "214B", + "internalNetworkInputPositions" : 10, + "processedInputDataSize" : "180B", + "processedInputPositions" : 10, + "inputBlockedTime" : "3.05s", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1990", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "214B", + "internalNetworkInputPositions" : 10, + "inputDataSize" : "180B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 1, + "getOutputWall" : "55.88us", + "getOutputCpu" : "54.00us", + "outputDataSize" : "180B", + "outputPositions" : 10, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 5.399999999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.399999999999999E-5, + "p90" : 5.399999999999999E-5, + "p95" : 5.399999999999999E-5, + "p99" : 5.399999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.7596263329999999, + "max" : 0.7646623329999999, + "p01" : 0.7596263329999999, + "p05" : 0.7596263329999999, + "p10" : 0.7596263329999999, + "p25" : 0.7613403329999999, + "p50" : 0.7636172499999999, + "p75" : 0.7646623329999999, + "p90" : 0.7646623329999999, + "p95" : 0.7646623329999999, + "p99" : 0.7646623329999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 5.587499999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.587499999999999E-5, + "p90" : 5.587499999999999E-5, + "p95" : 5.587499999999999E-5, + "p99" : 5.587499999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "3.05s", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 272, + "averageBytesPerRequest" : 51, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 14.0, + "max" : 748.0, + "p01" : 14.0, + "p05" : 14.0, + "p10" : 14.0, + "p25" : 713.0, + "p50" : 719.0, + "p75" : 748.0, + "p90" : 748.0, + "p95" : 748.0, + "p99" : 748.0, + "total" : 4 + } + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.04us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 10, + "getOutputWall" : "1.11ms", + "getOutputCpu" : "652.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.9999999999999994E-5, + "max" : 5.52E-4, + "p01" : 2.9999999999999994E-5, + "p05" : 2.9999999999999994E-5, + "p10" : 2.9999999999999994E-5, + "p25" : 3.899999999999999E-5, + "p50" : 6.699999999999999E-5, + "p75" : 5.52E-4, + "p90" : 5.52E-4, + "p95" : 5.52E-4, + "p99" : 5.52E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 3.1957999999999995E-5, + "max" : 6.14165E-4, + "p01" : 3.1957999999999995E-5, + "p05" : 3.1957999999999995E-5, + "p10" : 3.1957999999999995E-5, + "p25" : 4.1915999999999996E-5, + "p50" : 4.6262499999999993E-4, + "p75" : 6.14165E-4, + "p90" : 6.14165E-4, + "p95" : 6.14165E-4, + "p99" : 6.14165E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "39.00us", + "finishCpu" : "33.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 10, 0, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 0, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 0, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.541999999999999E-6, + "max" : 7.395799999999999E-5, + "p01" : 8.541999999999999E-6, + "p05" : 8.541999999999999E-6, + "p10" : 8.541999999999999E-6, + "p25" : 9.416999999999998E-6, + "p50" : 2.7291999999999996E-5, + "p75" : 7.395799999999999E-5, + "p90" : 7.395799999999999E-5, + "p95" : 7.395799999999999E-5, + "p99" : 7.395799999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 7.299999999999999E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 2.7999999999999996E-5, + "p75" : 7.299999999999999E-5, + "p90" : 7.299999999999999E-5, + "p95" : 7.299999999999999E-5, + "p99" : 7.299999999999999E-5, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "119.21us", + "finishCpu" : "119.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.16.1.0", + "taskInstanceId" : -7194845710144193236, + "version" : 3, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.16.1.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "45B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "130.34kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 1, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:04.004955Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 5, + "totalPagesSent" : 2, + "utilization" : { + "min" : 0.0, + "max" : 8.106231689453125E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 860600750 + } + }, + "noMoreSplits" : [ "1991", "1990" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.142405Z", + "firstStartTime" : "2026-03-30T07:59:03.867668Z", + "lastStartTime" : "2026-03-30T07:59:03.908204Z", + "lastEndTime" : "2026-03-30T07:59:04.002Z", + "endTime" : "2026-03-30T07:59:04.005817Z", + "elapsedTime" : "858.09ms", + "queuedTime" : "719.93ms", + "totalDrivers" : 9, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 9, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "130.34kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "18.22ms", + "totalCpuTime" : "8.61ms", + "totalBlockedTime" : "487.46ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "257B", + "internalNetworkInputPositions" : 11, + "processedInputDataSize" : "189B", + "processedInputPositions" : 11, + "inputBlockedTime" : "411.85ms", + "outputDataSize" : "45B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.867668Z", + "lastStartTime" : "2026-03-30T07:59:03.892103Z", + "lastEndTime" : "2026-03-30T07:59:03.925113Z", + "inputPipeline" : true, + "outputPipeline" : false, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.686121E9, + "p01" : 6.56111167E8, + "p05" : 6.56111167E8, + "p10" : 6.56111167E8, + "p25" : 6.72653E8, + "p50" : 6.76813292E8, + "p75" : 6.80543541E8, + "p90" : 6.80543541E8, + "p95" : 6.80543541E8, + "p99" : 6.80543541E8, + "min" : 6.56111167E8, + "max" : 6.80543541E8, + "avg" : 6.7153025E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 2.798778668E9, + "p01" : 6.81097791E8, + "p05" : 6.81097791E8, + "p10" : 6.81097791E8, + "p25" : 7.00809584E8, + "p50" : 7.03317834E8, + "p75" : 7.13553459E8, + "p90" : 7.13553459E8, + "p95" : 7.13553459E8, + "p99" : 7.13553459E8, + "min" : 6.81097791E8, + "max" : 7.13553459E8, + "avg" : 6.99694667E8 + }, + "totalScheduledTime" : "1.67ms", + "totalCpuTime" : "502.00us", + "totalBlockedTime" : "32.51ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "32.51ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1991", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "43B", + "internalNetworkInputPositions" : 1, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "75.83us", + "getOutputCpu" : "74.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 7.399999999999998E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 7.399999999999998E-5, + "p90" : 7.399999999999998E-5, + "p95" : 7.399999999999998E-5, + "p99" : 7.399999999999998E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.020471083999999997, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0038770419999999994, + "p50" : 0.008159291999999999, + "p75" : 0.020471083999999997, + "p90" : 0.020471083999999997, + "p95" : 0.020471083999999997, + "p99" : 0.020471083999999997, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 7.583299999999999E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 7.583299999999999E-5, + "p90" : 7.583299999999999E-5, + "p95" : 7.583299999999999E-5, + "p99" : 7.583299999999999E-5, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "32.51ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 104, + "averageBytesPerRequest" : 8, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 0.0, + "max" : 19.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 2.0, + "p75" : 19.0, + "p90" : 19.0, + "p95" : 19.0, + "p99" : 19.0, + "total" : 4 + } + } + }, { + "stageId" : 16, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSinkOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "21.25us", + "addInputCpu" : "22.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 9.999999999999999E-6, + "max" : 9.099999999999999E-5, + "p01" : 9.999999999999999E-6, + "p05" : 9.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 2.0999999999999995E-5, + "p50" : 4.4999999999999996E-5, + "p75" : 9.099999999999999E-5, + "p90" : 9.099999999999999E-5, + "p95" : 9.099999999999999E-5, + "p99" : 9.099999999999999E-5, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 1.1749999999999998E-5, + "max" : 5.435419999999999E-4, + "p01" : 1.1749999999999998E-5, + "p05" : 1.1749999999999998E-5, + "p10" : 1.1749999999999998E-5, + "p25" : 2.3958999999999995E-5, + "p50" : 4.649999999999999E-5, + "p75" : 5.435419999999999E-4, + "p90" : 5.435419999999999E-4, + "p95" : 5.435419999999999E-4, + "p99" : 5.435419999999999E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "604.50us", + "finishCpu" : "145.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 1, + "firstStartTime" : "2026-03-30T07:59:03.908204Z", + "lastStartTime" : "2026-03-30T07:59:03.908204Z", + "lastEndTime" : "2026-03-30T07:59:04.002118Z", + "inputPipeline" : false, + "outputPipeline" : false, + "totalDrivers" : 1, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 1, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 1.0, + "total" : 6.96643833E8, + "p01" : 6.96643833E8, + "p05" : 6.96643833E8, + "p10" : 6.96643833E8, + "p25" : 6.96643833E8, + "p50" : 6.96643833E8, + "p75" : 6.96643833E8, + "p90" : 6.96643833E8, + "p95" : 6.96643833E8, + "p99" : 6.96643833E8, + "min" : 6.96643833E8, + "max" : 6.96643833E8, + "avg" : 6.96643833E8 + }, + "elapsedTime" : { + "count" : 1.0, + "total" : 7.90556833E8, + "p01" : 7.90556833E8, + "p05" : 7.90556833E8, + "p10" : 7.90556833E8, + "p25" : 7.90556833E8, + "p50" : 7.90556833E8, + "p75" : 7.90556833E8, + "p90" : 7.90556833E8, + "p95" : 7.90556833E8, + "p99" : 7.90556833E8, + "min" : 7.90556833E8, + "max" : 7.90556833E8, + "avg" : 7.90556833E8 + }, + "totalScheduledTime" : "14.81ms", + "totalCpuTime" : "6.62ms", + "totalBlockedTime" : "75.60ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "9B", + "processedInputPositions" : 1, + "inputBlockedTime" : "16.11ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "59.49ms", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 0, + "planNodeId" : "2567", + "operatorType" : "LocalExchangeSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 1, + "getOutputWall" : "16.58us", + "getOutputCpu" : "15.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 1.4999999999999997E-5, + "max" : 1.4999999999999997E-5, + "p01" : 1.4999999999999997E-5, + "p05" : 1.4999999999999997E-5, + "p10" : 1.4999999999999997E-5, + "p25" : 1.4999999999999997E-5, + "p50" : 1.4999999999999997E-5, + "p75" : 1.4999999999999997E-5, + "p90" : 1.4999999999999997E-5, + "p95" : 1.4999999999999997E-5, + "p99" : 1.4999999999999997E-5, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.016105209, + "max" : 0.016105209, + "p01" : 0.016105209, + "p05" : 0.016105209, + "p10" : 0.016105209, + "p25" : 0.016105209, + "p50" : 0.016105209, + "p75" : 0.016105209, + "p90" : 0.016105209, + "p95" : 0.016105209, + "p99" : 0.016105209, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 1.6582999999999997E-5, + "max" : 1.6582999999999997E-5, + "p01" : 1.6582999999999997E-5, + "p05" : 1.6582999999999997E-5, + "p10" : 1.6582999999999997E-5, + "p25" : 1.6582999999999997E-5, + "p50" : 1.6582999999999997E-5, + "p75" : 1.6582999999999997E-5, + "p90" : 1.6582999999999997E-5, + "p95" : 1.6582999999999997E-5, + "p99" : 1.6582999999999997E-5, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "16.11ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "DynamicFilterSourceOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "801.58us", + "addInputCpu" : "597.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 2, + "getOutputWall" : "8.75us", + "getOutputCpu" : "8.00us", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0015449999999999997, + "max" : 0.0015449999999999997, + "p01" : 0.0015449999999999997, + "p05" : 0.0015449999999999997, + "p10" : 0.0015449999999999997, + "p25" : 0.0015449999999999997, + "p50" : 0.0015449999999999997, + "p75" : 0.0015449999999999997, + "p90" : 0.0015449999999999997, + "p95" : 0.0015449999999999997, + "p99" : 0.0015449999999999997, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0027627079999999996, + "max" : 0.0027627079999999996, + "p01" : 0.0027627079999999996, + "p05" : 0.0027627079999999996, + "p10" : 0.0027627079999999996, + "p25" : 0.0027627079999999996, + "p50" : 0.0027627079999999996, + "p75" : 0.0027627079999999996, + "p90" : 0.0027627079999999996, + "p95" : 0.0027627079999999996, + "p99" : 0.0027627079999999996, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 1, + "finishWall" : "1.95ms", + "finishCpu" : "940.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "736B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "736B", + "spilledDataSize" : "0B" + }, { + "stageId" : 16, + "pipelineId" : 1, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "HashBuilderOperator", + "totalDrivers" : 1, + "addInputCalls" : 1, + "addInputWall" : "42.08us", + "addInputCpu" : "43.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.005042, + "max" : 0.005042, + "p01" : 0.005042, + "p05" : 0.005042, + "p10" : 0.005042, + "p25" : 0.005042, + "p50" : 0.005042, + "p75" : 0.005042, + "p90" : 0.005042, + "p95" : 0.005042, + "p99" : 0.005042, + "total" : 1 + }, + "Input rows distribution" : { + "min" : 1.0, + "max" : 1.0, + "p01" : 1.0, + "p05" : 1.0, + "p10" : 1.0, + "p25" : 1.0, + "p50" : 1.0, + "p75" : 1.0, + "p90" : 1.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 1 + }, + "Blocked time distribution (s)" : { + "min" : 0.059494665999999995, + "max" : 0.059494665999999995, + "p01" : 0.059494665999999995, + "p05" : 0.059494665999999995, + "p10" : 0.059494665999999995, + "p25" : 0.059494665999999995, + "p50" : 0.059494665999999995, + "p75" : 0.059494665999999995, + "p90" : 0.059494665999999995, + "p95" : 0.059494665999999995, + "p99" : 0.059494665999999995, + "total" : 1 + }, + "Scheduled time distribution (s)" : { + "min" : 0.012015708999999998, + "max" : 0.012015708999999998, + "p01" : 0.012015708999999998, + "p05" : 0.012015708999999998, + "p10" : 0.012015708999999998, + "p25" : 0.012015708999999998, + "p50" : 0.012015708999999998, + "p75" : 0.012015708999999998, + "p90" : 0.012015708999999998, + "p95" : 0.012015708999999998, + "p99" : 0.012015708999999998, + "total" : 1 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "59.49ms", + "finishCalls" : 2, + "finishWall" : "11.97ms", + "finishCpu" : "5.00ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "128kB", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "128kB", + "spilledDataSize" : "0B" + } ], + "drivers" : [ ] + }, { + "pipelineId" : 2, + "firstStartTime" : "2026-03-30T07:59:03.895305Z", + "lastStartTime" : "2026-03-30T07:59:03.905423Z", + "lastEndTime" : "2026-03-30T07:59:04.000330Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 4, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 4, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 4.0, + "total" : 2.755235876E9, + "p01" : 6.83744167E8, + "p05" : 6.83744167E8, + "p10" : 6.83744167E8, + "p25" : 6.86747542E8, + "p50" : 6.908845E8, + "p75" : 6.93859667E8, + "p90" : 6.93859667E8, + "p95" : 6.93859667E8, + "p99" : 6.93859667E8, + "min" : 6.83744167E8, + "max" : 6.93859667E8, + "avg" : 6.88808969E8 + }, + "elapsedTime" : { + "count" : 4.0, + "total" : 3.152114125E9, + "p01" : 7.87111833E8, + "p05" : 7.87111833E8, + "p10" : 7.87111833E8, + "p25" : 7.87616167E8, + "p50" : 7.88619958E8, + "p75" : 7.88766167E8, + "p90" : 7.88766167E8, + "p95" : 7.88766167E8, + "p99" : 7.88766167E8, + "min" : 7.87111833E8, + "max" : 7.88766167E8, + "avg" : 7.8802853125E8 + }, + "totalScheduledTime" : "1.74ms", + "totalCpuTime" : "1.49ms", + "totalBlockedTime" : "379.35ms", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "214B", + "internalNetworkInputPositions" : 10, + "processedInputDataSize" : "180B", + "processedInputPositions" : 10, + "inputBlockedTime" : "379.34ms", + "outputDataSize" : "45B", + "outputPositions" : 5, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 0, + "planNodeId" : "1990", + "operatorType" : "ExchangeOperator", + "totalDrivers" : 4, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "214B", + "internalNetworkInputPositions" : 10, + "inputDataSize" : "180B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 1, + "getOutputWall" : "245.04us", + "getOutputCpu" : "103.00us", + "outputDataSize" : "180B", + "outputPositions" : 10, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 0.0, + "max" : 1.0299999999999998E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.0299999999999998E-4, + "p90" : 1.0299999999999998E-4, + "p95" : 1.0299999999999998E-4, + "p99" : 1.0299999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.09040791699999999, + "max" : 0.09798679199999999, + "p01" : 0.09040791699999999, + "p05" : 0.09040791699999999, + "p10" : 0.09040791699999999, + "p25" : 0.09340349999999999, + "p50" : 0.09754166699999998, + "p75" : 0.09798679199999999, + "p90" : 0.09798679199999999, + "p95" : 0.09798679199999999, + "p99" : 0.09798679199999999, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 0.0, + "max" : 2.4504199999999995E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 2.4504199999999995E-4, + "p90" : 2.4504199999999995E-4, + "p95" : 2.4504199999999995E-4, + "p99" : 2.4504199999999995E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "379.34ms", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "56B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "56B", + "spilledDataSize" : "0B", + "info" : { + "bufferedBytes" : 0, + "maxBufferedBytes" : 272, + "averageBytesPerRequest" : 51, + "successfulRequestsCount" : 16, + "bufferedPages" : 0, + "spilledPages" : 0, + "spilledBytes" : 0, + "noMoreLocations" : true, + "pageBufferClientStatuses" : [ ], + "requestDuration" : { + "min" : 3.0, + "max" : 97.0, + "p01" : 3.0, + "p05" : 3.0, + "p10" : 3.0, + "p25" : 32.0, + "p50" : 43.0, + "p75" : 97.0, + "p90" : 97.0, + "p95" : 97.0, + "p99" : 97.0, + "total" : 4 + } + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 1, + "planNodeId" : "1717", + "operatorType" : "LookupJoinOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "2.54us", + "addInputCpu" : "3.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "180B", + "inputPositions" : 10, + "sumSquaredInputPositions" : 100.0, + "getOutputCalls" : 11, + "getOutputWall" : "924.04us", + "getOutputCpu" : "848.00us", + "outputDataSize" : "65B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.2999999999999997E-5, + "max" : 7.649999999999998E-4, + "p01" : 2.2999999999999997E-5, + "p05" : 2.2999999999999997E-5, + "p10" : 2.2999999999999997E-5, + "p25" : 3.399999999999999E-5, + "p50" : 7.5E-5, + "p75" : 7.649999999999998E-4, + "p90" : 7.649999999999998E-4, + "p95" : 7.649999999999998E-4, + "p99" : 7.649999999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 10.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 10.0, + "p90" : 10.0, + "p95" : 10.0, + "p99" : 10.0, + "total" : 4 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 3.4358399999999997E-4, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 3.4358399999999997E-4, + "p90" : 3.4358399999999997E-4, + "p95" : 3.4358399999999997E-4, + "p99" : 3.4358399999999997E-4, + "total" : 4 + }, + "Scheduled time distribution (s)" : { + "min" : 2.6040999999999997E-5, + "max" : 8.360419999999998E-4, + "p01" : 2.6040999999999997E-5, + "p05" : 2.6040999999999997E-5, + "p10" : 2.6040999999999997E-5, + "p25" : 5.279099999999999E-5, + "p50" : 8.041599999999998E-5, + "p75" : 8.360419999999998E-4, + "p90" : 8.360419999999998E-4, + "p95" : 8.360419999999998E-4, + "p99" : 8.360419999999998E-4, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "343.58us", + "finishCalls" : 4, + "finishWall" : "68.71us", + "finishCpu" : "46.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "joinType" : "INNER", + "logHistogramProbes" : [ 5, 5, 0, 0, 0, 0, 0, 0 ], + "logHistogramOutput" : [ 0, 5, 0, 0, 0, 0, 0, 0 ], + "lookupSourcePositions" : 1, + "rleProbes" : 0, + "totalProbes" : 1 + } + }, { + "stageId" : 16, + "pipelineId" : 2, + "operatorId" : 2, + "planNodeId" : "1717", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 4, + "addInputCalls" : 1, + "addInputWall" : "36.71us", + "addInputCpu" : "40.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "65B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "45B", + "outputPositions" : 5, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.333999999999998E-6, + "max" : 1.8958299999999998E-4, + "p01" : 8.333999999999998E-6, + "p05" : 8.333999999999998E-6, + "p10" : 8.333999999999998E-6, + "p25" : 1.1290999999999999E-5, + "p50" : 2.6999999999999996E-5, + "p75" : 1.8958299999999998E-4, + "p90" : 1.8958299999999998E-4, + "p95" : 1.8958299999999998E-4, + "p99" : 1.8958299999999998E-4, + "total" : 4 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 5.0, + "p90" : 5.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 4 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 1.9299999999999997E-4, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 2.7999999999999996E-5, + "p75" : 1.9299999999999997E-4, + "p90" : 1.9299999999999997E-4, + "p95" : 1.9299999999999997E-4, + "p99" : 1.9299999999999997E-4, + "total" : 4 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 4 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 4, + "finishWall" : "199.50us", + "finishCpu" : "201.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 272 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ "20260330_075902_00004_iggau.17", "20260330_075902_00004_iggau.18" ], + "tables" : { } + }, { + "stageId" : "20260330_075902_00004_iggau.10", + "state" : "FINISHED", + "plan" : { + "id" : "10", + "root" : { + "@type" : "filter", + "id" : "2216", + "source" : { + "@type" : "tableScan", + "id" : "5", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "nation", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "regionkey" + } ], + "assignments" : { + "6|bigint|regionkey" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "regionkey", + "type" : "bigint" + }, + "6|bigint|nationkey_8" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "nationkey", + "type" : "bigint" + }, + "11|varchar(25)|name_9" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "name", + "type" : "varchar(25)" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMTU=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "regionkey" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "5" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "nationkey_8" + }, { + "type" : "varchar(25)", + "name" : "name_9" + }, { + "type" : "bigint", + "name" : "regionkey" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2216" : { + "outputRowCount" : 25.0, + "symbolStatistics" : { + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 25.0 + }, + "6|bigint|regionkey" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + }, + "6|bigint|nationkey_8" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + } + } + }, + "5" : { + "outputRowCount" : 25.0, + "symbolStatistics" : { + "11|varchar(25)|name_9" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 7.08, + "distinctValuesCount" : 25.0 + }, + "6|bigint|regionkey" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + }, + "6|bigint|nationkey_8" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + } + } + } + }, + "costs" : { + "2216" : { + "cpuCost" : 1504.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 752.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "5" : { + "cpuCost" : 752.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 752.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2216\",\n \"name\" : \"ScanFilter\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:nation\",\n \"filterPredicate\" : \"\",\n \"dynamicFilters\" : \"{regionkey = #df_2215}\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_8\"\n }, {\n \"type\" : \"varchar(25)\",\n \"name\" : \"name_9\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey\"\n } ],\n \"details\" : [ \"regionkey := tpch:regionkey\", \"nationkey_8 := tpch:nationkey\", \"name_9 := tpch:name\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "varchar(25)", "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.167878Z", + "getSplitDistribution" : { + "5" : { + "count" : 1.0, + "total" : 3625.0, + "p01" : 3625.0, + "p05" : 3625.0, + "p10" : 3625.0, + "p25" : 3625.0, + "p50" : 3625.0, + "p75" : 3625.0, + "p90" : 3625.0, + "p95" : 3625.0, + "p99" : 3625.0, + "min" : 3625.0, + "max" : 3625.0, + "avg" : 3625.0 + } + }, + "splitSourceMetrics" : { + "5" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 163241.98, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "440B", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "41.68ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "6.57ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "752B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 25, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2385005167, + "min" : 0.0, + "max" : 3.886222839355469E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 2.032481197804307E-5 + }, + "outputDataSize" : "752B", + "failedOutputDataSize" : "0B", + "outputPositions" : 25, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 10, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2216", + "sourceId" : "5", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 49, + "getOutputWall" : "4.50ms", + "getOutputCpu" : "3.47ms", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "26625.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 25 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9957999999999997E-5, + "max" : 4.809579999999999E-4, + "p01" : 2.9957999999999997E-5, + "p05" : 3.7041999999999995E-5, + "p10" : 3.812499999999999E-5, + "p25" : 4.691699999999999E-5, + "p50" : 6.054199999999999E-5, + "p75" : 1.2329199999999997E-4, + "p90" : 2.2162499999999998E-4, + "p95" : 2.77291E-4, + "p99" : 4.809579999999999E-4, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 2.7999999999999996E-5, + "max" : 2.49E-4, + "p01" : 2.7999999999999996E-5, + "p05" : 3.5999999999999994E-5, + "p10" : 3.7999999999999995E-5, + "p25" : 4.4999999999999996E-5, + "p50" : 5.699999999999999E-5, + "p75" : 9.899999999999998E-5, + "p90" : 1.2699999999999997E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 2.49E-4, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "832B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "832B", + "spilledDataSize" : "0B" + }, { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2216", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "783.38us", + "addInputCpu" : "252.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.874999999999999E-6, + "max" : 0.031392874999999994, + "p01" : 3.874999999999999E-6, + "p05" : 5.707999999999999E-6, + "p10" : 5.874999999999999E-6, + "p25" : 7.291999999999999E-6, + "p50" : 9.416999999999998E-6, + "p75" : 1.4957999999999998E-5, + "p90" : 7.108299999999998E-5, + "p95" : 3.1974999999999994E-4, + "p99" : 0.031392874999999994, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 6.239999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 5.999999999999999E-6, + "p25" : 8.0E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.4999999999999997E-5, + "p90" : 3.399999999999999E-5, + "p95" : 4.899999999999999E-5, + "p99" : 6.239999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "32.36ms", + "finishCpu" : "1.24ms", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1304 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.10.2.0", + "taskInstanceId" : -268066693763863775, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.10.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.902509Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 735603125 + } + }, + "noMoreSplits" : [ "5" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.169164Z", + "firstStartTime" : "2026-03-30T07:59:03.224975Z", + "lastStartTime" : "2026-03-30T07:59:03.892725Z", + "lastEndTime" : "2026-03-30T07:59:03.892Z", + "endTime" : "2026-03-30T07:59:03.903778Z", + "elapsedTime" : "733.81ms", + "queuedTime" : "55.00ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "3.52ms", + "totalCpuTime" : "2.06ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.224974Z", + "lastStartTime" : "2026-03-30T07:59:03.892724Z", + "lastEndTime" : "2026-03-30T07:59:03.892792Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 9.44552293E8, + "p01" : 9520375.0, + "p05" : 9520375.0, + "p10" : 9730208.0, + "p25" : 1.4326334E7, + "p50" : 1.9125792E7, + "p75" : 2.4248917E7, + "p90" : 2.6122375E7, + "p95" : 6.77249584E8, + "p99" : 6.77249584E8, + "min" : 9520375.0, + "max" : 6.77249584E8, + "avg" : 5.90345183125E7 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 9.48061166E8, + "p01" : 9791042.0, + "p05" : 9791042.0, + "p10" : 9850083.0, + "p25" : 1.444925E7, + "p50" : 1.920275E7, + "p75" : 2.434575E7, + "p90" : 2.6239958E7, + "p95" : 6.77316709E8, + "p99" : 6.77316709E8, + "min" : 9791042.0, + "max" : 6.77316709E8, + "avg" : 5.9253822875E7 + }, + "totalScheduledTime" : "3.52ms", + "totalCpuTime" : "2.06ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2216", + "sourceId" : "5", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.92ms", + "getOutputCpu" : "1.17ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.5999999999999994E-5, + "max" : 1.3499999999999997E-4, + "p01" : 3.5999999999999994E-5, + "p05" : 3.5999999999999994E-5, + "p10" : 4.0999999999999994E-5, + "p25" : 5.599999999999999E-5, + "p50" : 7.399999999999998E-5, + "p75" : 7.899999999999998E-5, + "p90" : 1.2199999999999998E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.7708999999999994E-5, + "max" : 4.809579999999999E-4, + "p01" : 3.7708999999999994E-5, + "p05" : 3.7708999999999994E-5, + "p10" : 4.199999999999999E-5, + "p25" : 5.824999999999999E-5, + "p50" : 7.670799999999998E-5, + "p75" : 1.2541699999999998E-4, + "p90" : 2.8158299999999996E-4, + "p95" : 4.809579999999999E-4, + "p99" : 4.809579999999999E-4, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2216", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.041999999999999E-6, + "max" : 3.1974999999999994E-4, + "p01" : 8.041999999999999E-6, + "p05" : 8.041999999999999E-6, + "p10" : 9.416999999999998E-6, + "p25" : 1.1041999999999999E-5, + "p50" : 1.3541999999999998E-5, + "p75" : 2.6541999999999998E-5, + "p90" : 1.1720799999999998E-4, + "p95" : 3.1974999999999994E-4, + "p99" : 3.1974999999999994E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 4.899999999999999E-5, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.1999999999999999E-5, + "p50" : 1.3999999999999998E-5, + "p75" : 2.8999999999999997E-5, + "p90" : 3.899999999999999E-5, + "p95" : 4.899999999999999E-5, + "p99" : 4.899999999999999E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "683.75us", + "finishCpu" : "308.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.10.0.0", + "taskInstanceId" : 4164968205993380161, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.10.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "752B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "440B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.995903Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 25, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 3.886222839355469E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 1.76727391794975E-6, + "p90" : 2.8677227280316608E-6, + "p95" : 4.308842578901737E-6, + "p99" : 3.399306102739934E-5, + "total" : 826590000 + } + }, + "noMoreSplits" : [ "5" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.172736Z", + "firstStartTime" : "2026-03-30T07:59:03.880910Z", + "lastStartTime" : "2026-03-30T07:59:03.947429Z", + "lastEndTime" : "2026-03-30T07:59:03.978Z", + "endTime" : "2026-03-30T07:59:03.992942Z", + "elapsedTime" : "816.34ms", + "queuedTime" : "704.30ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 163241.98, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "440B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "36.49ms", + "totalCpuTime" : "2.99ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "752B", + "processedInputPositions" : 25, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "752B", + "outputPositions" : 25, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.880909Z", + "lastStartTime" : "2026-03-30T07:59:03.947367Z", + "lastEndTime" : "2026-03-30T07:59:03.978912Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0936056292E10, + "p01" : 6.56554916E8, + "p05" : 6.56554916E8, + "p10" : 6.59076791E8, + "p25" : 6.69648292E8, + "p50" : 6.81594334E8, + "p75" : 7.05009042E8, + "p90" : 7.1125575E8, + "p95" : 7.22995834E8, + "p99" : 7.22995834E8, + "min" : 6.56554916E8, + "max" : 7.22995834E8, + "avg" : 6.8350351825E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0972534042E10, + "p01" : 6.5762E8, + "p05" : 6.5762E8, + "p10" : 6.59170375E8, + "p25" : 6.69727792E8, + "p50" : 6.81653167E8, + "p75" : 7.05099917E8, + "p90" : 7.11417917E8, + "p95" : 7.5453925E8, + "p99" : 7.5453925E8, + "min" : 6.5762E8, + "max" : 7.5453925E8, + "avg" : 6.85783377625E8 + }, + "totalScheduledTime" : "36.49ms", + "totalCpuTime" : "2.99ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "752B", + "processedInputPositions" : 25, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "752B", + "outputPositions" : 25, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2216", + "sourceId" : "5", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 17, + "getOutputWall" : "1.49ms", + "getOutputCpu" : "1.32ms", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 25.0, + "p99" : 25.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "26625.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 25 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.812499999999999E-5, + "max" : 2.50625E-4, + "p01" : 3.812499999999999E-5, + "p05" : 3.812499999999999E-5, + "p10" : 4.0832999999999993E-5, + "p25" : 4.7124999999999993E-5, + "p50" : 5.8874999999999995E-5, + "p75" : 1.3862499999999997E-4, + "p90" : 2.2162499999999998E-4, + "p95" : 2.50625E-4, + "p99" : 2.50625E-4, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 3.7999999999999995E-5, + "max" : 2.49E-4, + "p01" : 3.7999999999999995E-5, + "p05" : 3.7999999999999995E-5, + "p10" : 3.9999999999999996E-5, + "p25" : 4.599999999999999E-5, + "p50" : 5.699999999999999E-5, + "p75" : 1.1999999999999998E-4, + "p90" : 1.3599999999999997E-4, + "p95" : 2.49E-4, + "p99" : 2.49E-4, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "832B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "832B", + "spilledDataSize" : "0B" + }, { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2216", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 1, + "addInputWall" : "783.38us", + "addInputCpu" : "252.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "752B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "752B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.707999999999999E-6, + "max" : 0.031392874999999994, + "p01" : 5.707999999999999E-6, + "p05" : 5.707999999999999E-6, + "p10" : 5.8339999999999995E-6, + "p25" : 7.959E-6, + "p50" : 8.666999999999999E-6, + "p75" : 1.8458E-5, + "p90" : 7.959999999999998E-4, + "p95" : 0.031392874999999994, + "p99" : 0.031392874999999994, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 25.0, + "p99" : 25.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 6.239999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 5.999999999999999E-6, + "p25" : 8.999999999999999E-6, + "p50" : 8.999999999999999E-6, + "p75" : 2.0999999999999995E-5, + "p90" : 2.6499999999999994E-4, + "p95" : 6.239999999999999E-4, + "p99" : 6.239999999999999E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "31.54ms", + "finishCpu" : "783.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 1304 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.10.1.0", + "taskInstanceId" : -4452260511802170718, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.10.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.978994Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 822812042 + } + }, + "noMoreSplits" : [ "5" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.168624Z", + "firstStartTime" : "2026-03-30T07:59:03.881505Z", + "lastStartTime" : "2026-03-30T07:59:03.949682Z", + "lastEndTime" : "2026-03-30T07:59:03.949Z", + "endTime" : "2026-03-30T07:59:03.987217Z", + "elapsedTime" : "817.14ms", + "queuedTime" : "711.42ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "1.67ms", + "totalCpuTime" : "1.52ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.881504Z", + "lastStartTime" : "2026-03-30T07:59:03.949682Z", + "lastEndTime" : "2026-03-30T07:59:03.949774Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1264318417E10, + "p01" : 6.75360416E8, + "p05" : 6.75360416E8, + "p10" : 6.78899792E8, + "p25" : 6.88686375E8, + "p50" : 7.01765666E8, + "p75" : 7.22911209E8, + "p90" : 7.30976458E8, + "p95" : 7.4350075E8, + "p99" : 7.4350075E8, + "min" : 6.75360416E8, + "max" : 7.4350075E8, + "avg" : 7.040199010625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1265961082E10, + "p01" : 6.75430958E8, + "p05" : 6.75430958E8, + "p10" : 6.7896025E8, + "p25" : 6.88746167E8, + "p50" : 7.01845333E8, + "p75" : 7.23217084E8, + "p90" : 7.31023541E8, + "p95" : 7.43591375E8, + "p99" : 7.43591375E8, + "min" : 6.75430958E8, + "max" : 7.43591375E8, + "avg" : 7.04122567625E8 + }, + "totalScheduledTime" : "1.67ms", + "totalCpuTime" : "1.52ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2216", + "sourceId" : "5", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.09ms", + "getOutputCpu" : "980.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 2.7999999999999996E-5, + "max" : 1.2699999999999997E-4, + "p01" : 2.7999999999999996E-5, + "p05" : 2.7999999999999996E-5, + "p10" : 3.5999999999999994E-5, + "p25" : 4.399999999999999E-5, + "p50" : 5.2999999999999994E-5, + "p75" : 6.599999999999999E-5, + "p90" : 1.1799999999999998E-4, + "p95" : 1.2699999999999997E-4, + "p99" : 1.2699999999999997E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 2.9957999999999997E-5, + "max" : 1.6245799999999998E-4, + "p01" : 2.9957999999999997E-5, + "p05" : 2.9957999999999997E-5, + "p10" : 3.6791999999999996E-5, + "p25" : 4.5415999999999993E-5, + "p50" : 5.479199999999999E-5, + "p75" : 7.566699999999999E-5, + "p90" : 1.4924999999999997E-4, + "p95" : 1.6245799999999998E-4, + "p99" : 1.6245799999999998E-4, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 10, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2216", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.874999999999999E-6, + "max" : 2.1290999999999997E-5, + "p01" : 3.874999999999999E-6, + "p05" : 3.874999999999999E-6, + "p10" : 5.374999999999999E-6, + "p25" : 6.041999999999999E-6, + "p50" : 6.666999999999999E-6, + "p75" : 9.040999999999999E-6, + "p90" : 1.6624999999999998E-5, + "p95" : 2.1290999999999997E-5, + "p99" : 2.1290999999999997E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 2.7999999999999996E-5, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 6.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 1.8999999999999998E-5, + "p95" : 2.7999999999999996E-5, + "p99" : 2.7999999999999996E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "132.67us", + "finishCpu" : "149.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "5" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.nation", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.11", + "state" : "FINISHED", + "plan" : { + "id" : "11", + "root" : { + "@type" : "project", + "id" : "1215", + "source" : { + "@type" : "filter", + "id" : "619", + "source" : { + "@type" : "tableScan", + "id" : "7", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "region", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "regionkey_12" + }, { + "type" : "varchar(25)", + "name" : "name_13" + } ], + "assignments" : { + "11|varchar(25)|name_13" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "name", + "type" : "varchar(25)" + }, + "6|bigint|regionkey_12" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "regionkey", + "type" : "bigint" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "comparison", + "operator" : "EQUAL", + "left" : { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "name_13" + }, + "right" : { + "@type" : "constant", + "type" : "varchar(25)", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABgAAAEVVUk9QRQ==" + } + } + }, + "assignments" : { + "assignments" : { + "6|bigint|regionkey_12" : { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey_12" + } + } + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "regionkey_12" + }, { + "type" : "varchar(25)", + "name" : "name_13" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "7" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey_12" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "regionkey_12" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "1215" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "6|bigint|regionkey_12" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + }, + "619" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "11|varchar(25)|name_13" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 6.8, + "distinctValuesCount" : 1.0 + }, + "6|bigint|regionkey_12" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + }, + "7" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "11|varchar(25)|name_13" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 6.8, + "distinctValuesCount" : 5.0 + }, + "6|bigint|regionkey_12" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + } + }, + "costs" : { + "1215" : { + "cpuCost" : 217.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 9.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "619" : { + "cpuCost" : 208.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 104.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "7" : { + "cpuCost" : 104.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 104.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"1215\",\n \"name\" : \"ScanFilterProject\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:region\",\n \"filterPredicate\" : \"(name_13 = varchar(25) 'EUROPE')\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_12\"\n } ],\n \"details\" : [ \"name_13 := tpch:name\", \"regionkey_12 := tpch:regionkey\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.147779Z", + "getSplitDistribution" : { + "7" : { + "count" : 1.0, + "total" : 5750.0, + "p01" : 5750.0, + "p05" : 5750.0, + "p10" : 5750.0, + "p25" : 5750.0, + "p50" : 5750.0, + "p75" : 5750.0, + "p90" : 5750.0, + "p95" : 5750.0, + "p99" : 5750.0, + "min" : 5750.0, + "max" : 5750.0, + "avg" : 5750.0 + } + }, + "splitSourceMetrics" : { + "7" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 870842.4, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.34kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "694.69ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "7.09ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "104B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 5, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2381789832, + "min" : 0.0, + "max" : 3.0994415283203125E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "9B", + "failedOutputDataSize" : "0B", + "outputPositions" : 1, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 11, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1215", + "sourceId" : "7", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "104B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 49, + "getOutputWall" : "686.08ms", + "getOutputCpu" : "4.43ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 5.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4290999999999994E-5, + "max" : 0.6799986249999999, + "p01" : 3.4290999999999994E-5, + "p05" : 3.554199999999999E-5, + "p10" : 4.1207999999999996E-5, + "p25" : 4.475E-5, + "p50" : 6.6125E-5, + "p75" : 1.2783399999999998E-4, + "p90" : 4.96292E-4, + "p95" : 6.705409999999999E-4, + "p99" : 0.6799986249999999, + "total" : 48 + }, + "Filter CPU time" : { + "duration" : "88792.00ns" + }, + "Projection CPU time" : { + "duration" : "11583.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 8.899999999999998E-4, + "p01" : 3.2E-5, + "p05" : 3.399999999999999E-5, + "p10" : 3.899999999999999E-5, + "p25" : 4.399999999999999E-5, + "p50" : 6.4E-5, + "p75" : 1.0099999999999999E-4, + "p90" : 1.3199999999999998E-4, + "p95" : 1.3699999999999997E-4, + "p99" : 8.899999999999998E-4, + "total" : 48 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1215", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "818.75us", + "addInputCpu" : "680.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.957999999999999E-6, + "max" : 8.371659999999999E-4, + "p01" : 3.957999999999999E-6, + "p05" : 4.624999999999999E-6, + "p10" : 4.957999999999999E-6, + "p25" : 6.291999999999999E-6, + "p50" : 8.625E-6, + "p75" : 1.5916999999999997E-5, + "p90" : 3.270799999999999E-5, + "p95" : 1.4649999999999998E-4, + "p99" : 8.371659999999999E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 6.989999999999999E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 6.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.6999999999999996E-5, + "p90" : 2.6999999999999996E-5, + "p95" : 3.0999999999999995E-5, + "p99" : 6.989999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "1.06ms", + "finishCpu" : "623.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 104 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.11.1.0", + "taskInstanceId" : -703055898042241964, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.11.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.952754Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 833571541 + } + }, + "noMoreSplits" : [ "7" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.147753Z", + "firstStartTime" : "2026-03-30T07:59:03.875787Z", + "lastStartTime" : "2026-03-30T07:59:03.937568Z", + "lastEndTime" : "2026-03-30T07:59:03.937Z", + "endTime" : "2026-03-30T07:59:03.978664Z", + "elapsedTime" : "826.37ms", + "queuedTime" : "723.47ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "7.30ms", + "totalCpuTime" : "2.07ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.875787Z", + "lastStartTime" : "2026-03-30T07:59:03.937558Z", + "lastEndTime" : "2026-03-30T07:59:03.937781Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1549721001E10, + "p01" : 6.88803875E8, + "p05" : 6.88803875E8, + "p10" : 6.98612042E8, + "p25" : 7.07917958E8, + "p50" : 7.2133925E8, + "p75" : 7.41693333E8, + "p90" : 7.48074042E8, + "p95" : 7.50515542E8, + "p99" : 7.50515542E8, + "min" : 6.88803875E8, + "max" : 7.50515542E8, + "avg" : 7.218575625625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1556993917E10, + "p01" : 6.93618459E8, + "p05" : 6.93618459E8, + "p10" : 6.98791459E8, + "p25" : 7.08425583E8, + "p50" : 7.21503083E8, + "p75" : 7.41743666E8, + "p90" : 7.48235959E8, + "p95" : 7.50735458E8, + "p99" : 7.50735458E8, + "min" : 6.93618459E8, + "max" : 7.50735458E8, + "avg" : 7.223121198125E8 + }, + "totalScheduledTime" : "7.30ms", + "totalCpuTime" : "2.07ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1215", + "sourceId" : "7", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.95ms", + "getOutputCpu" : "1.42ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.399999999999999E-5, + "max" : 1.3499999999999997E-4, + "p01" : 3.399999999999999E-5, + "p05" : 3.399999999999999E-5, + "p10" : 4.0999999999999994E-5, + "p25" : 5.199999999999999E-5, + "p50" : 1.0099999999999999E-4, + "p75" : 1.2399999999999998E-4, + "p90" : 1.3199999999999998E-4, + "p95" : 1.3499999999999997E-4, + "p99" : 1.3499999999999997E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.554199999999999E-5, + "max" : 4.805829999999999E-4, + "p01" : 3.554199999999999E-5, + "p05" : 3.554199999999999E-5, + "p10" : 4.1957999999999994E-5, + "p25" : 5.295899999999999E-5, + "p50" : 1.2762499999999997E-4, + "p75" : 1.4633299999999998E-4, + "p90" : 1.5704199999999998E-4, + "p95" : 4.805829999999999E-4, + "p99" : 4.805829999999999E-4, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "288B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "288B", + "spilledDataSize" : "0B" + }, { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1215", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 3.957999999999999E-6, + "max" : 3.725E-5, + "p01" : 3.957999999999999E-6, + "p05" : 3.957999999999999E-6, + "p10" : 4.624999999999999E-6, + "p25" : 5.6249999999999995E-6, + "p50" : 8.0E-6, + "p75" : 1.6374999999999998E-5, + "p90" : 3.270799999999999E-5, + "p95" : 3.725E-5, + "p99" : 3.725E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 4.0999999999999994E-5, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 9.999999999999999E-6, + "p75" : 1.6999999999999996E-5, + "p90" : 2.8999999999999997E-5, + "p95" : 4.0999999999999994E-5, + "p99" : 4.0999999999999994E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "206.79us", + "finishCpu" : "214.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.11.2.0", + "taskInstanceId" : 3727126054739045316, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.11.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "1.17kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.921960Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 767826916 + } + }, + "noMoreSplits" : [ "7" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.148219Z", + "firstStartTime" : "2026-03-30T07:59:03.233922Z", + "lastStartTime" : "2026-03-30T07:59:03.912459Z", + "lastEndTime" : "2026-03-30T07:59:03.912Z", + "endTime" : "2026-03-30T07:59:03.921600Z", + "elapsedTime" : "765.08ms", + "queuedTime" : "77.40ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 412494.1746, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.17kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.57ms", + "totalCpuTime" : "1.76ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.233922Z", + "lastStartTime" : "2026-03-30T07:59:03.912459Z", + "lastEndTime" : "2026-03-30T07:59:03.912534Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 6.040021706E9, + "p01" : 880833.0, + "p05" : 880833.0, + "p10" : 1010417.0, + "p25" : 5801166.0, + "p50" : 6.59941458E8, + "p75" : 6.70148583E8, + "p90" : 6.75825916E8, + "p95" : 6.79397917E8, + "p99" : 6.79397917E8, + "min" : 880833.0, + "max" : 6.79397917E8, + "avg" : 3.77501356625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 6.042585375E9, + "p01" : 1088625.0, + "p05" : 1088625.0, + "p10" : 1344583.0, + "p25" : 6374375.0, + "p50" : 6.60019583E8, + "p75" : 6.70416E8, + "p90" : 6.75880333E8, + "p95" : 6.79472125E8, + "p99" : 6.79472125E8, + "min" : 1088625.0, + "max" : 6.79472125E8, + "avg" : 3.776615859375E8 + }, + "totalScheduledTime" : "2.57ms", + "totalCpuTime" : "1.76ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1215", + "sourceId" : "7", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "1.46ms", + "getOutputCpu" : "1.10ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2999999999999996E-5, + "max" : 1.7199999999999998E-4, + "p01" : 3.2999999999999996E-5, + "p05" : 3.2999999999999996E-5, + "p10" : 3.899999999999999E-5, + "p25" : 4.399999999999999E-5, + "p50" : 6.299999999999999E-5, + "p75" : 9.199999999999999E-5, + "p90" : 9.999999999999999E-5, + "p95" : 1.7199999999999998E-4, + "p99" : 1.7199999999999998E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4290999999999994E-5, + "max" : 5.089589999999999E-4, + "p01" : 3.4290999999999994E-5, + "p05" : 3.4290999999999994E-5, + "p10" : 4.1207999999999996E-5, + "p25" : 4.454099999999999E-5, + "p50" : 6.470799999999999E-5, + "p75" : 9.474999999999999E-5, + "p90" : 1.0408299999999999E-4, + "p95" : 5.089589999999999E-4, + "p99" : 5.089589999999999E-4, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "288B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "288B", + "spilledDataSize" : "0B" + }, { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1215", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 4.416999999999999E-6, + "max" : 3.7016699999999997E-4, + "p01" : 4.416999999999999E-6, + "p05" : 4.416999999999999E-6, + "p10" : 4.957999999999999E-6, + "p25" : 7.415999999999999E-6, + "p50" : 1.1999999999999999E-5, + "p75" : 2.0416999999999998E-5, + "p90" : 1.4649999999999998E-4, + "p95" : 3.7016699999999997E-4, + "p99" : 3.7016699999999997E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 3.0999999999999995E-5, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 8.0E-6, + "p50" : 1.1999999999999999E-5, + "p75" : 2.0999999999999995E-5, + "p90" : 2.6999999999999996E-5, + "p95" : 3.0999999999999995E-5, + "p99" : 3.0999999999999995E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "670.83us", + "finishCpu" : "221.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.11.0.0", + "taskInstanceId" : 7622345543685546590, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.11.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "9B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "1.17kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.926288Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 3.0994415283203125E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 780391375 + } + }, + "noMoreSplits" : [ "7" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.147753Z", + "firstStartTime" : "2026-03-30T07:59:03.185421Z", + "lastStartTime" : "2026-03-30T07:59:03.922378Z", + "lastEndTime" : "2026-03-30T07:59:03.922Z", + "endTime" : "2026-03-30T07:59:03.929212Z", + "elapsedTime" : "777.63ms", + "queuedTime" : "33.83ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 458348.2254, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "1.17kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "684.82ms", + "totalCpuTime" : "3.26ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "104B", + "processedInputPositions" : 5, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.185420Z", + "lastStartTime" : "2026-03-30T07:59:03.922377Z", + "lastEndTime" : "2026-03-30T07:59:03.922446Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 7.900022251E9, + "p01" : 739792.0, + "p05" : 739792.0, + "p10" : 3602459.0, + "p25" : 1.1568958E7, + "p50" : 7.0934225E8, + "p75" : 7.21491916E8, + "p90" : 7.27903042E8, + "p95" : 7.3767375E8, + "p99" : 7.3767375E8, + "min" : 739792.0, + "max" : 7.3767375E8, + "avg" : 4.937513906875E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 8.584840875E9, + "p01" : 3711834.0, + "p05" : 3711834.0, + "p10" : 5848750.0, + "p25" : 6.81594334E8, + "p50" : 7.09405041E8, + "p75" : 7.21563208E8, + "p90" : 7.27997417E8, + "p95" : 7.37741416E8, + "p99" : 7.37741416E8, + "min" : 3711834.0, + "max" : 7.37741416E8, + "avg" : 5.365525546875E8 + }, + "totalScheduledTime" : "684.82ms", + "totalCpuTime" : "3.26ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "104B", + "processedInputPositions" : 5, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "1215", + "sourceId" : "7", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "104B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 17, + "getOutputWall" : "682.67ms", + "getOutputCpu" : "1.91ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.4707999999999994E-5, + "max" : 0.6799986249999999, + "p01" : 3.4707999999999994E-5, + "p05" : 3.4707999999999994E-5, + "p10" : 3.874999999999999E-5, + "p25" : 4.475E-5, + "p50" : 5.9458999999999994E-5, + "p75" : 4.96292E-4, + "p90" : 8.102499999999999E-4, + "p95" : 0.6799986249999999, + "p99" : 0.6799986249999999, + "total" : 16 + }, + "Filter CPU time" : { + "duration" : "88792.00ns" + }, + "Projection CPU time" : { + "duration" : "11583.00ns" + }, + "CPU time distribution (s)" : { + "min" : 3.2E-5, + "max" : 8.899999999999998E-4, + "p01" : 3.2E-5, + "p05" : 3.2E-5, + "p10" : 3.7999999999999995E-5, + "p25" : 4.2999999999999995E-5, + "p50" : 5.7999999999999994E-5, + "p75" : 9.999999999999999E-5, + "p90" : 1.3699999999999997E-4, + "p95" : 8.899999999999998E-4, + "p99" : 8.899999999999998E-4, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 11, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "1215", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 1, + "addInputWall" : "818.75us", + "addInputCpu" : "680.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.209E-6, + "max" : 8.371659999999999E-4, + "p01" : 5.209E-6, + "p05" : 5.209E-6, + "p10" : 5.582999999999999E-6, + "p25" : 6.833999999999999E-6, + "p50" : 7.833999999999998E-6, + "p75" : 1.5207999999999997E-5, + "p90" : 3.1833999999999994E-5, + "p95" : 8.371659999999999E-4, + "p99" : 8.371659999999999E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 5.999999999999999E-6, + "max" : 6.989999999999999E-4, + "p01" : 5.999999999999999E-6, + "p05" : 5.999999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 6.999999999999999E-6, + "p50" : 8.0E-6, + "p75" : 1.6999999999999996E-5, + "p90" : 2.6999999999999996E-5, + "p95" : 6.989999999999999E-4, + "p99" : 6.989999999999999E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "185.00us", + "finishCpu" : "188.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 104 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "7" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.region", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.17", + "state" : "FINISHED", + "plan" : { + "id" : "17", + "root" : { + "@type" : "filter", + "id" : "2232", + "source" : { + "@type" : "tableScan", + "id" : "12", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "nation", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "nationkey_30" + }, { + "type" : "bigint", + "name" : "regionkey_32" + } ], + "assignments" : { + "6|bigint|nationkey_30" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "nationkey", + "type" : "bigint" + }, + "6|bigint|regionkey_32" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "regionkey", + "type" : "bigint" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "call", + "function" : { + "signature" : { + "name" : { + "catalogName" : "system", + "schemaName" : "builtin", + "functionName" : "$internal$dynamic_filter_function" + }, + "returnType" : "boolean", + "argumentTypes" : [ "bigint", "varchar", "varchar", "boolean" ] + }, + "catalogHandle" : "system:normal:system", + "functionId" : "$internal$dynamic_filter_function(t,varchar,varchar,boolean):boolean", + "functionKind" : "SCALAR", + "deterministic" : true, + "neverFails" : false, + "functionNullability" : { + "returnNullable" : false, + "argumentNullable" : [ false, false, false, false ] + }, + "typeDependencies" : { }, + "functionDependencies" : [ ] + }, + "arguments" : [ { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey_32" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABQAAAEVRVUFM" + }, { + "@type" : "constant", + "type" : "varchar", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABwAAAGRmXzIyMzE=" + }, { + "@type" : "constant", + "type" : "boolean", + "valueAsBlock" : "CgAAAEJZVEVfQVJSQVkBAAAAAAA=" + } ] + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "nationkey_30" + }, { + "type" : "bigint", + "name" : "regionkey_32" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "12" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey_32" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "nationkey_30" + }, { + "type" : "bigint", + "name" : "regionkey_32" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "2232" : { + "outputRowCount" : 25.0, + "symbolStatistics" : { + "6|bigint|nationkey_30" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "6|bigint|regionkey_32" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + }, + "12" : { + "outputRowCount" : 25.0, + "symbolStatistics" : { + "6|bigint|nationkey_30" : { + "lowValue" : 0.0, + "highValue" : 24.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 25.0 + }, + "6|bigint|regionkey_32" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + } + }, + "costs" : { + "2232" : { + "cpuCost" : 900.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 450.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "12" : { + "cpuCost" : 450.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 450.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"2232\",\n \"name\" : \"ScanFilter\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:nation\",\n \"filterPredicate\" : \"\",\n \"dynamicFilters\" : \"{regionkey_32 = #df_2231}\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"nationkey_30\"\n }, {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_32\"\n } ],\n \"details\" : [ \"nationkey_30 := tpch:nationkey\", \"regionkey_32 := tpch:regionkey\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint", "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.166440Z", + "getSplitDistribution" : { + "12" : { + "count" : 1.0, + "total" : 6167.0, + "p01" : 6167.0, + "p05" : 6167.0, + "p10" : 6167.0, + "p25" : 6167.0, + "p50" : 6167.0, + "p75" : 6167.0, + "p90" : 6167.0, + "p95" : 6167.0, + "p99" : 6167.0, + "min" : 6167.0, + "max" : 6167.0, + "avg" : 6167.0 + } + }, + "splitSourceMetrics" : { + "12" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 0.0, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "872B", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "14.67ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "6.29ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "450B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 25, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2417469000, + "min" : 0.0, + "max" : 2.5987625122070312E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "450B", + "failedOutputDataSize" : "0B", + "outputPositions" : 25, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 17, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2232", + "sourceId" : "12", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 49, + "getOutputWall" : "11.74ms", + "getOutputCpu" : "4.13ms", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "Projection CPU time" : { + "duration" : "16999.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 25 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2166E-5, + "max" : 0.005643875, + "p01" : 3.2166E-5, + "p05" : 3.4833E-5, + "p10" : 3.716699999999999E-5, + "p25" : 4.0249999999999996E-5, + "p50" : 5.174999999999999E-5, + "p75" : 1.2170799999999998E-4, + "p90" : 3.9374999999999995E-4, + "p95" : 8.112499999999999E-4, + "p99" : 0.005643875, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 0.0011459999999999999, + "p01" : 3.0999999999999995E-5, + "p05" : 3.2999999999999996E-5, + "p10" : 3.5999999999999994E-5, + "p25" : 3.7999999999999995E-5, + "p50" : 5.099999999999999E-5, + "p75" : 9.399999999999998E-5, + "p90" : 1.1799999999999998E-4, + "p95" : 1.2499999999999998E-4, + "p99" : 0.0011459999999999999, + "total" : 48 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2232", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "436.42us", + "addInputCpu" : "422.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 4.416999999999999E-6, + "max" : 4.4437399999999993E-4, + "p01" : 4.416999999999999E-6, + "p05" : 4.874999999999999E-6, + "p10" : 4.917E-6, + "p25" : 5.749999999999999E-6, + "p50" : 6.707999999999999E-6, + "p75" : 9.124999999999998E-6, + "p90" : 1.9624999999999996E-5, + "p95" : 1.9299999999999997E-4, + "p99" : 4.4437399999999993E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 25.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 4.3099999999999996E-4, + "p01" : 4.0E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 6.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 2.0999999999999995E-5, + "p95" : 3.9999999999999996E-5, + "p99" : 4.3099999999999996E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "770.45us", + "finishCpu" : "636.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 872 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.17.1.0", + "taskInstanceId" : -5946170494518107031, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.17.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.991825Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 826664750 + } + }, + "noMoreSplits" : [ "12" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.165180Z", + "firstStartTime" : "2026-03-30T07:59:03.881358Z", + "lastStartTime" : "2026-03-30T07:59:03.937992Z", + "lastEndTime" : "2026-03-30T07:59:03.938Z", + "endTime" : "2026-03-30T07:59:03.994336Z", + "elapsedTime" : "823.32ms", + "queuedTime" : "710.33ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "2.71ms", + "totalCpuTime" : "1.67ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.881357Z", + "lastStartTime" : "2026-03-30T07:59:03.937992Z", + "lastEndTime" : "2026-03-30T07:59:03.938078Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1248530794E10, + "p01" : 6.75222917E8, + "p05" : 6.75222917E8, + "p10" : 6.79570167E8, + "p25" : 6.888405E8, + "p50" : 7.01755542E8, + "p75" : 7.22968167E8, + "p90" : 7.29856834E8, + "p95" : 7.31830125E8, + "p99" : 7.31830125E8, + "min" : 6.75222917E8, + "max" : 7.31830125E8, + "avg" : 7.03033174625E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1251220375E10, + "p01" : 6.75812792E8, + "p05" : 6.75812792E8, + "p10" : 6.79992625E8, + "p25" : 6.88899959E8, + "p50" : 7.01837042E8, + "p75" : 7.2303E8, + "p90" : 7.29905125E8, + "p95" : 7.31915291E8, + "p99" : 7.31915291E8, + "min" : 6.75812792E8, + "max" : 7.31915291E8, + "avg" : 7.032012734375E8 + }, + "totalScheduledTime" : "2.71ms", + "totalCpuTime" : "1.67ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2232", + "sourceId" : "12", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "2.25ms", + "getOutputCpu" : "1.19ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.0999999999999995E-5, + "max" : 1.28E-4, + "p01" : 3.0999999999999995E-5, + "p05" : 3.0999999999999995E-5, + "p10" : 3.5999999999999994E-5, + "p25" : 3.7999999999999995E-5, + "p50" : 5.999999999999999E-5, + "p75" : 1.1799999999999998E-4, + "p90" : 1.2499999999999998E-4, + "p95" : 1.28E-4, + "p99" : 1.28E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.2166E-5, + "max" : 5.604999999999999E-4, + "p01" : 3.2166E-5, + "p05" : 3.2166E-5, + "p10" : 3.7332999999999996E-5, + "p25" : 4.0249999999999996E-5, + "p50" : 6.149999999999999E-5, + "p75" : 1.7895799999999998E-4, + "p90" : 3.9374999999999995E-4, + "p95" : 5.604999999999999E-4, + "p99" : 5.604999999999999E-4, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "256B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "256B", + "spilledDataSize" : "0B" + }, { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2232", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 4.416999999999999E-6, + "max" : 1.5749999999999997E-5, + "p01" : 4.416999999999999E-6, + "p05" : 4.416999999999999E-6, + "p10" : 4.874999999999999E-6, + "p25" : 5.666999999999999E-6, + "p50" : 6.707999999999999E-6, + "p75" : 9.124999999999998E-6, + "p90" : 1.2791999999999999E-5, + "p95" : 1.5749999999999997E-5, + "p99" : 1.5749999999999997E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 1.9999999999999998E-5, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.999999999999999E-6, + "p50" : 6.999999999999999E-6, + "p75" : 9.999999999999999E-6, + "p90" : 1.6999999999999996E-5, + "p95" : 1.9999999999999998E-5, + "p99" : 1.9999999999999998E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "123.04us", + "finishCpu" : "140.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.17.2.0", + "taskInstanceId" : -4164935489468209816, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.17.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.944838Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 780578750 + } + }, + "noMoreSplits" : [ "12" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.167014Z", + "firstStartTime" : "2026-03-30T07:59:03.872257Z", + "lastStartTime" : "2026-03-30T07:59:03.925870Z", + "lastEndTime" : "2026-03-30T07:59:03.925Z", + "endTime" : "2026-03-30T07:59:03.945983Z", + "elapsedTime" : "777.78ms", + "queuedTime" : "704.03ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "7.67ms", + "totalCpuTime" : "1.26ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.872253Z", + "lastStartTime" : "2026-03-30T07:59:03.925869Z", + "lastEndTime" : "2026-03-30T07:59:03.925940Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.0489704749E10, + "p01" : 6.3000825E8, + "p05" : 6.3000825E8, + "p10" : 6.33292083E8, + "p25" : 6.46322042E8, + "p50" : 6.55659875E8, + "p75" : 6.66652625E8, + "p90" : 6.80227791E8, + "p95" : 6.836255E8, + "p99" : 6.836255E8, + "min" : 6.3000825E8, + "max" : 6.836255E8, + "avg" : 6.556065468125E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.0497366122E10, + "p01" : 6.30111041E8, + "p05" : 6.30111041E8, + "p10" : 6.38959625E8, + "p25" : 6.46395917E8, + "p50" : 6.55732667E8, + "p75" : 6.66708875E8, + "p90" : 6.80281166E8, + "p95" : 6.83695875E8, + "p99" : 6.83695875E8, + "min" : 6.30111041E8, + "max" : 6.83695875E8, + "avg" : 6.56085382625E8 + }, + "totalScheduledTime" : "7.67ms", + "totalCpuTime" : "1.26ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2232", + "sourceId" : "12", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "7.13ms", + "getOutputCpu" : "800.00us", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 3.2999999999999996E-5, + "max" : 9.399999999999998E-5, + "p01" : 3.2999999999999996E-5, + "p05" : 3.2999999999999996E-5, + "p10" : 3.2999999999999996E-5, + "p25" : 3.699999999999999E-5, + "p50" : 4.4999999999999996E-5, + "p75" : 5.699999999999999E-5, + "p90" : 9.299999999999998E-5, + "p95" : 9.399999999999998E-5, + "p99" : 9.399999999999998E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.391599999999999E-5, + "max" : 0.005643875, + "p01" : 3.391599999999999E-5, + "p05" : 3.391599999999999E-5, + "p10" : 3.4833E-5, + "p25" : 3.7332999999999996E-5, + "p50" : 4.641599999999999E-5, + "p75" : 5.7749999999999994E-5, + "p90" : 8.112499999999999E-4, + "p95" : 0.005643875, + "p99" : 0.005643875, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "256B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "256B", + "spilledDataSize" : "0B" + }, { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2232", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 4.624999999999999E-6, + "max" : 1.9791999999999996E-5, + "p01" : 4.624999999999999E-6, + "p05" : 4.624999999999999E-6, + "p10" : 4.9999999999999996E-6, + "p25" : 5.582999999999999E-6, + "p50" : 6.083999999999999E-6, + "p75" : 6.707999999999999E-6, + "p90" : 8.249999999999999E-6, + "p95" : 1.9791999999999996E-5, + "p99" : 1.9791999999999996E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.0E-6, + "max" : 2.1999999999999996E-5, + "p01" : 4.0E-6, + "p05" : 4.0E-6, + "p10" : 4.0E-6, + "p25" : 5.999999999999999E-6, + "p50" : 5.999999999999999E-6, + "p75" : 6.999999999999999E-6, + "p90" : 8.999999999999999E-6, + "p95" : 2.1999999999999996E-5, + "p99" : 2.1999999999999996E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "110.79us", + "finishCpu" : "114.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.17.0.0", + "taskInstanceId" : 6056774394799061924, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.17.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "450B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "872B", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.944533Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 25, + "totalPagesSent" : 3, + "utilization" : { + "min" : 0.0, + "max" : 2.5987625122070312E-5, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 810225500 + } + }, + "noMoreSplits" : [ "12" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.172458Z", + "firstStartTime" : "2026-03-30T07:59:03.866887Z", + "lastStartTime" : "2026-03-30T07:59:03.937242Z", + "lastEndTime" : "2026-03-30T07:59:03.937Z", + "endTime" : "2026-03-30T07:59:03.971227Z", + "elapsedTime" : "798.18ms", + "queuedTime" : "693.85ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "872B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "4.29ms", + "totalCpuTime" : "3.36ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "450B", + "processedInputPositions" : 25, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "450B", + "outputPositions" : 25, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.866887Z", + "lastStartTime" : "2026-03-30T07:59:03.937242Z", + "lastEndTime" : "2026-03-30T07:59:03.937489Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 1.1218226583E10, + "p01" : 6.61567875E8, + "p05" : 6.61567875E8, + "p10" : 6.76962541E8, + "p25" : 6.87559625E8, + "p50" : 7.01586459E8, + "p75" : 7.22005292E8, + "p90" : 7.30194292E8, + "p95" : 7.31909459E8, + "p99" : 7.31909459E8, + "min" : 6.61567875E8, + "max" : 7.31909459E8, + "avg" : 7.011391614375E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 1.1222497875E10, + "p01" : 6.63312458E8, + "p05" : 6.63312458E8, + "p10" : 6.77076416E8, + "p25" : 6.87628375E8, + "p50" : 7.01761375E8, + "p75" : 7.22195042E8, + "p90" : 7.30259875E8, + "p95" : 7.32155292E8, + "p99" : 7.32155292E8, + "min" : 6.63312458E8, + "max" : 7.32155292E8, + "avg" : 7.014061171875E8 + }, + "totalScheduledTime" : "4.29ms", + "totalCpuTime" : "3.36ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "450B", + "processedInputPositions" : 25, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "450B", + "outputPositions" : 25, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "2232", + "sourceId" : "12", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 25, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 17, + "getOutputWall" : "2.36ms", + "getOutputCpu" : "2.14ms", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 25.0, + "p99" : 25.0, + "total" : 16 + }, + "Projection CPU time" : { + "duration" : "16999.00ns" + }, + "Dynamic Filter output positions" : { + "total" : 25 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 3.762499999999999E-5, + "max" : 0.0012752509999999998, + "p01" : 3.762499999999999E-5, + "p05" : 3.762499999999999E-5, + "p10" : 3.8499999999999994E-5, + "p25" : 4.6791999999999995E-5, + "p50" : 7.479199999999998E-5, + "p75" : 1.1712499999999999E-4, + "p90" : 1.3870799999999997E-4, + "p95" : 0.0012752509999999998, + "p99" : 0.0012752509999999998, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 3.699999999999999E-5, + "max" : 0.0011459999999999999, + "p01" : 3.699999999999999E-5, + "p05" : 3.699999999999999E-5, + "p10" : 3.699999999999999E-5, + "p25" : 4.599999999999999E-5, + "p50" : 5.899999999999999E-5, + "p75" : 1.1099999999999999E-4, + "p90" : 1.1699999999999998E-4, + "p95" : 0.0011459999999999999, + "p99" : 0.0011459999999999999, + "total" : 16 + }, + "Dynamic Filter CPU time" : { + "duration" : "0.00ns" + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "512B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "512B", + "spilledDataSize" : "0B" + }, { + "stageId" : 17, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "2232", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 1, + "addInputWall" : "436.42us", + "addInputCpu" : "422.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "450B", + "inputPositions" : 25, + "sumSquaredInputPositions" : 625.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "450B", + "outputPositions" : 25, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 5.374999999999999E-6, + "max" : 4.4437399999999993E-4, + "p01" : 5.374999999999999E-6, + "p05" : 5.374999999999999E-6, + "p10" : 5.999999999999999E-6, + "p25" : 7.374999999999999E-6, + "p50" : 8.874999999999999E-6, + "p75" : 1.9624999999999996E-5, + "p90" : 2.0624999999999997E-4, + "p95" : 4.4437399999999993E-4, + "p99" : 4.4437399999999993E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 25.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 25.0, + "p99" : 25.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 4.9999999999999996E-6, + "max" : 4.3099999999999996E-4, + "p01" : 4.9999999999999996E-6, + "p05" : 4.9999999999999996E-6, + "p10" : 5.999999999999999E-6, + "p25" : 8.0E-6, + "p50" : 8.999999999999999E-6, + "p75" : 2.0999999999999995E-5, + "p90" : 1.9299999999999997E-4, + "p95" : 4.3099999999999996E-4, + "p99" : 4.3099999999999996E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "536.62us", + "finishCpu" : "382.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 872 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "12" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.nation", + "predicate" : { + "columnDomains" : [ ] + } + } + } + }, { + "stageId" : "20260330_075902_00004_iggau.18", + "state" : "FINISHED", + "plan" : { + "id" : "18", + "root" : { + "@type" : "project", + "id" : "781", + "source" : { + "@type" : "filter", + "id" : "633", + "source" : { + "@type" : "tableScan", + "id" : "14", + "table" : { + "catalogHandle" : "tpch:normal:a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorHandle" : { + "@type" : "system:io.trino.plugin.tpch.TpchTableHandle", + "schemaName" : "tiny", + "tableName" : "region", + "scaleFactor" : 0.01, + "constraint" : { + "columnDomains" : [ ] + } + }, + "transaction" : [ "system:io.trino.plugin.tpch.TpchTransactionHandle", "INSTANCE" ] + }, + "outputSymbols" : [ { + "type" : "bigint", + "name" : "regionkey_35" + }, { + "type" : "varchar(25)", + "name" : "name_36" + } ], + "assignments" : { + "11|varchar(25)|name_36" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "name", + "type" : "varchar(25)" + }, + "6|bigint|regionkey_35" : { + "@type" : "system:io.trino.plugin.tpch.TpchColumnHandle", + "columnName" : "regionkey", + "type" : "bigint" + } + }, + "updateTarget" : false, + "useConnectorNodePartitioning" : false + }, + "predicate" : { + "@type" : "comparison", + "operator" : "EQUAL", + "left" : { + "@type" : "reference", + "type" : "varchar(25)", + "name" : "name_36" + }, + "right" : { + "@type" : "constant", + "type" : "varchar(25)", + "valueAsBlock" : "DgAAAFZBUklBQkxFX1dJRFRIAQAAAAABAAAABgAAAEVVUk9QRQ==" + } + } + }, + "assignments" : { + "assignments" : { + "6|bigint|regionkey_35" : { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey_35" + } + } + } + }, + "symbols" : [ { + "type" : "bigint", + "name" : "regionkey_35" + }, { + "type" : "varchar(25)", + "name" : "name_36" + } ], + "partitioning" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "SOURCE", + "function" : "UNKNOWN" + }, + "scaleWriters" : false + }, + "partitionedSources" : [ "14" ], + "outputPartitioningScheme" : { + "partitioning" : { + "handle" : { + "connectorHandle" : { + "@type" : "system:io.trino.sql.planner.SystemPartitioningHandle", + "partitioning" : "FIXED", + "function" : "HASH" + }, + "scaleWriters" : false + }, + "arguments" : [ { + "expression" : { + "@type" : "reference", + "type" : "bigint", + "name" : "regionkey_35" + } + } ] + }, + "outputLayout" : [ { + "type" : "bigint", + "name" : "regionkey_35" + } ], + "replicateNullsAndAny" : false + }, + "statsAndCosts" : { + "stats" : { + "781" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "6|bigint|regionkey_35" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + }, + "633" : { + "outputRowCount" : 1.0, + "symbolStatistics" : { + "11|varchar(25)|name_36" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 6.8, + "distinctValuesCount" : 1.0 + }, + "6|bigint|regionkey_35" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 1.0 + } + } + }, + "14" : { + "outputRowCount" : 5.0, + "symbolStatistics" : { + "11|varchar(25)|name_36" : { + "lowValue" : "-Infinity", + "highValue" : "Infinity", + "nullsFraction" : 0.0, + "averageRowSize" : 6.8, + "distinctValuesCount" : 5.0 + }, + "6|bigint|regionkey_35" : { + "lowValue" : 0.0, + "highValue" : 4.0, + "nullsFraction" : 0.0, + "averageRowSize" : "NaN", + "distinctValuesCount" : 5.0 + } + } + } + }, + "costs" : { + "781" : { + "cpuCost" : 217.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 9.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "633" : { + "cpuCost" : 208.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 104.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + }, + "14" : { + "cpuCost" : 104.0, + "maxMemory" : 0.0, + "maxMemoryWhenOutputting" : 0.0, + "networkCost" : 0.0, + "rootNodeLocalCostEstimate" : { + "cpuCost" : 104.0, + "maxMemory" : 0.0, + "networkCost" : 0.0 + } + } + } + }, + "activeCatalogs" : [ { + "name" : "tpch", + "version" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "connectorName" : "tpch", + "properties" : { } + } ], + "languageFunctions" : { }, + "jsonRepresentation" : "{\n \"id\" : \"781\",\n \"name\" : \"ScanFilterProject\",\n \"descriptor\" : {\n \"table\" : \"tpch:tiny:region\",\n \"filterPredicate\" : \"(name_36 = varchar(25) 'EUROPE')\"\n },\n \"outputs\" : [ {\n \"type\" : \"bigint\",\n \"name\" : \"regionkey_35\"\n } ],\n \"details\" : [ \"name_36 := tpch:name\", \"regionkey_35 := tpch:regionkey\" ],\n \"estimates\" : [ ],\n \"children\" : [ ]\n}" + }, + "coordinatorOnly" : false, + "types" : [ "bigint" ], + "stageStats" : { + "schedulingComplete" : "2026-03-30T07:59:03.139064Z", + "getSplitDistribution" : { + "14" : { + "count" : 1.0, + "total" : 5333.0, + "p01" : 5333.0, + "p05" : 5333.0, + "p10" : 5333.0, + "p25" : 5333.0, + "p50" : 5333.0, + "p75" : 5333.0, + "p90" : 5333.0, + "p95" : 5333.0, + "p99" : 5333.0, + "min" : 5333.0, + "max" : 5333.0, + "avg" : 5333.0 + } + }, + "splitSourceMetrics" : { + "14" : { } + }, + "totalTasks" : 3, + "runningTasks" : 0, + "completedTasks" : 3, + "failedTasks" : 0, + "totalDrivers" : 48, + "queuedDrivers" : 0, + "runningDrivers" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 48, + "cumulativeUserMemory" : 1024222.2504, + "failedCumulativeUserMemory" : 0.0, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "totalMemoryReservation" : "0B", + "peakUserMemoryReservation" : "7.03kB", + "peakRevocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "742.53ms", + "failedScheduledTime" : "0.00s", + "totalCpuTime" : "688.76ms", + "failedCpuTime" : "0.00s", + "totalBlockedTime" : "0.00s", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "failedPhysicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "failedPhysicalInputPositions" : 0, + "physicalInputReadTime" : "0.00s", + "failedPhysicalInputReadTime" : "0.00s", + "internalNetworkInputDataSize" : "0B", + "failedInternalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "failedInternalNetworkInputPositions" : 0, + "processedInputDataSize" : "104B", + "failedProcessedInputDataSize" : "0B", + "processedInputPositions" : 5, + "failedProcessedInputPositions" : 0, + "inputBlockedTime" : "0.00s", + "failedInputBlockedTime" : "0.00s", + "bufferedDataSize" : "0B", + "outputBufferUtilization" : { + "total" : 2217081749, + "min" : 0.0, + "max" : 3.0994415283203125E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0 + }, + "outputDataSize" : "9B", + "failedOutputDataSize" : "0B", + "outputPositions" : 1, + "failedOutputPositions" : 0, + "outputBufferMetrics" : { }, + "outputBlockedTime" : "0.00s", + "failedOutputBlockedTime" : "0.00s", + "physicalWrittenDataSize" : "0B", + "failedPhysicalWrittenDataSize" : "0B", + "gcInfo" : { + "stageId" : 18, + "tasks" : 3, + "fullGcTasks" : 0, + "minFullGcSec" : 0, + "maxFullGcSec" : 0, + "totalFullGcSec" : 0, + "averageFullGcSec" : 0 + }, + "operatorSummaries" : [ { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "781", + "sourceId" : "14", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 48, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "104B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 49, + "getOutputWall" : "739.12ms", + "getOutputCpu" : "686.11ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 5.0, + "total" : 48 + }, + "Scheduled time distribution (s)" : { + "min" : 5.2082999999999996E-5, + "max" : 0.6925037919999999, + "p01" : 5.2082999999999996E-5, + "p05" : 5.729199999999999E-5, + "p10" : 5.933299999999999E-5, + "p25" : 6.5291E-5, + "p50" : 8.887499999999999E-5, + "p75" : 0.0028217079999999996, + "p90" : 0.0037286249999999993, + "p95" : 0.0038391249999999997, + "p99" : 0.6925037919999999, + "total" : 48 + }, + "Filter CPU time" : { + "duration" : "92417.00ns" + }, + "Projection CPU time" : { + "duration" : "11333.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.099999999999999E-5, + "max" : 0.6797309999999999, + "p01" : 5.099999999999999E-5, + "p05" : 5.599999999999999E-5, + "p10" : 5.7999999999999994E-5, + "p25" : 6.099999999999999E-5, + "p50" : 8.799999999999998E-5, + "p75" : 1.3E-4, + "p90" : 1.9099999999999998E-4, + "p95" : 3.38E-4, + "p99" : 0.6797309999999999, + "total" : 48 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "781", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 48, + "addInputCalls" : 1, + "addInputWall" : "828.58us", + "addInputCpu" : "444.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 6.916999999999999E-6, + "max" : 8.429579999999999E-4, + "p01" : 6.916999999999999E-6, + "p05" : 7.332999999999999E-6, + "p10" : 8.791999999999998E-6, + "p25" : 9.790999999999998E-6, + "p50" : 1.1249999999999999E-5, + "p75" : 1.6749999999999997E-5, + "p90" : 3.816599999999999E-5, + "p95" : 5.7749999999999994E-5, + "p99" : 8.429579999999999E-4, + "total" : 48 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 1.0, + "total" : 48 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 4.579999999999999E-4, + "p01" : 6.999999999999999E-6, + "p05" : 8.0E-6, + "p10" : 8.999999999999999E-6, + "p25" : 1.0999999999999998E-5, + "p50" : 1.2999999999999998E-5, + "p75" : 1.7999999999999997E-5, + "p90" : 3.399999999999999E-5, + "p95" : 3.899999999999999E-5, + "p99" : 4.579999999999999E-4, + "total" : 48 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 48 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 48, + "finishWall" : "994.49us", + "finishCpu" : "774.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 104 + } + } ] + }, + "tasks" : [ { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.18.2.0", + "taskInstanceId" : 3613933768830085972, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:8080/v1/task/20260330_075902_00004_iggau.18.2.0", + "nodeId" : "af6f6eb0-0c8b-43bb-b782-a01e29434e74", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.883872Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 737777208 + } + }, + "noMoreSplits" : [ "14" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.141493Z", + "firstStartTime" : "2026-03-30T07:59:03.172898Z", + "lastStartTime" : "2026-03-30T07:59:03.219607Z", + "lastEndTime" : "2026-03-30T07:59:03.220Z", + "endTime" : "2026-03-30T07:59:03.885384Z", + "elapsedTime" : "734.91ms", + "queuedTime" : "22.26ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 71756.4, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "17.97ms", + "totalCpuTime" : "4.21ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.172897Z", + "lastStartTime" : "2026-03-30T07:59:03.219606Z", + "lastEndTime" : "2026-03-30T07:59:03.220982Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 4.53459582E8, + "p01" : 1.0619292E7, + "p05" : 1.0619292E7, + "p10" : 1.0816083E7, + "p25" : 1.4426333E7, + "p50" : 3.1357791E7, + "p75" : 3.7854917E7, + "p90" : 5.6710291E7, + "p95" : 5.7298041E7, + "p99" : 5.7298041E7, + "min" : 1.0619292E7, + "max" : 5.7298041E7, + "avg" : 2.8341223875E7 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 4.71417583E8, + "p01" : 1.3660667E7, + "p05" : 1.3660667E7, + "p10" : 1.3751417E7, + "p25" : 1.5007375E7, + "p50" : 3.1459125E7, + "p75" : 3.825425E7, + "p90" : 5.6947416E7, + "p95" : 5.8671375E7, + "p99" : 5.8671375E7, + "min" : 1.3660667E7, + "max" : 5.8671375E7, + "avg" : 2.94635989375E7 + }, + "totalScheduledTime" : "17.97ms", + "totalCpuTime" : "4.21ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "781", + "sourceId" : "14", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "16.74ms", + "getOutputCpu" : "3.36ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.899999999999999E-5, + "max" : 0.0018229999999999998, + "p01" : 5.899999999999999E-5, + "p05" : 5.899999999999999E-5, + "p10" : 5.899999999999999E-5, + "p25" : 6.799999999999999E-5, + "p50" : 1.0699999999999999E-4, + "p75" : 1.4399999999999998E-4, + "p90" : 1.5299999999999998E-4, + "p95" : 0.0018229999999999998, + "p99" : 0.0018229999999999998, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 5.987499999999999E-5, + "max" : 0.0038391249999999997, + "p01" : 5.987499999999999E-5, + "p05" : 5.987499999999999E-5, + "p10" : 6.1583E-5, + "p25" : 6.970899999999999E-5, + "p50" : 1.6874999999999998E-4, + "p75" : 0.0028217079999999996, + "p90" : 0.0037286249999999993, + "p95" : 0.0038391249999999997, + "p99" : 0.0038391249999999997, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "288B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "288B", + "spilledDataSize" : "0B" + }, { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "781", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 8.625E-6, + "max" : 2.8795799999999994E-4, + "p01" : 8.625E-6, + "p05" : 8.625E-6, + "p10" : 9.375E-6, + "p25" : 1.1249999999999999E-5, + "p50" : 1.3957999999999997E-5, + "p75" : 2.2290999999999997E-5, + "p90" : 4.716699999999999E-5, + "p95" : 2.8795799999999994E-4, + "p99" : 2.8795799999999994E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 8.999999999999999E-6, + "max" : 5.099999999999999E-5, + "p01" : 8.999999999999999E-6, + "p05" : 8.999999999999999E-6, + "p10" : 9.999999999999999E-6, + "p25" : 1.2999999999999998E-5, + "p50" : 1.6999999999999996E-5, + "p75" : 2.6999999999999996E-5, + "p90" : 3.399999999999999E-5, + "p95" : 5.099999999999999E-5, + "p99" : 5.099999999999999E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "535.08us", + "finishCpu" : "309.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.18.0.0", + "taskInstanceId" : 2787968293172596836, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58373/v1/task/20260330_075902_00004_iggau.18.0.0", + "nodeId" : "7575eb2d-b2d9-44b0-8113-e92245682665", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "9B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.891658Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 1, + "totalPagesSent" : 1, + "utilization" : { + "min" : 0.0, + "max" : 3.0994415283203125E-6, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 742922041 + } + }, + "noMoreSplits" : [ "14" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.140729Z", + "firstStartTime" : "2026-03-30T07:59:03.172896Z", + "lastStartTime" : "2026-03-30T07:59:03.886150Z", + "lastEndTime" : "2026-03-30T07:59:03.886Z", + "endTime" : "2026-03-30T07:59:03.891842Z", + "elapsedTime" : "741.18ms", + "queuedTime" : "22.23ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 903071.3508, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "709.83ms", + "totalCpuTime" : "682.62ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "104B", + "processedInputPositions" : 5, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.172895Z", + "lastStartTime" : "2026-03-30T07:59:03.886150Z", + "lastEndTime" : "2026-03-30T07:59:03.886242Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 2.419662292E9, + "p01" : 1.0824875E7, + "p05" : 1.0824875E7, + "p10" : 1.0898959E7, + "p25" : 1.4285708E7, + "p50" : 2.4143458E7, + "p75" : 3.4167875E7, + "p90" : 7.21439583E8, + "p95" : 7.24053667E8, + "p99" : 7.24053667E8, + "min" : 1.0824875E7, + "max" : 7.24053667E8, + "avg" : 1.5122889325E8 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 3.129462708E9, + "p01" : 1.3757125E7, + "p05" : 1.3757125E7, + "p10" : 1.4396166E7, + "p25" : 1.4912417E7, + "p50" : 2.9387542E7, + "p75" : 7.04205E8, + "p90" : 7.21610958E8, + "p95" : 7.24144792E8, + "p99" : 7.24144792E8, + "min" : 1.3757125E7, + "max" : 7.24144792E8, + "avg" : 1.9559141925E8 + }, + "totalScheduledTime" : "709.83ms", + "totalCpuTime" : "682.62ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "104B", + "processedInputPositions" : 5, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "781", + "sourceId" : "14", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 5, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "104B", + "inputPositions" : 5, + "sumSquaredInputPositions" : 25.0, + "getOutputCalls" : 17, + "getOutputWall" : "708.26ms", + "getOutputCpu" : "681.42ms", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "Input rows distribution" : { + "min" : 0.0, + "max" : 5.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 5.0, + "p99" : 5.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 6.029099999999999E-5, + "max" : 0.6925037919999999, + "p01" : 6.029099999999999E-5, + "p05" : 6.029099999999999E-5, + "p10" : 6.104099999999999E-5, + "p25" : 6.620799999999999E-5, + "p50" : 8.866599999999998E-5, + "p75" : 0.0032406249999999996, + "p90" : 0.005364332999999999, + "p95" : 0.6925037919999999, + "p99" : 0.6925037919999999, + "total" : 16 + }, + "Filter CPU time" : { + "duration" : "92417.00ns" + }, + "Projection CPU time" : { + "duration" : "11333.00ns" + }, + "CPU time distribution (s)" : { + "min" : 5.899999999999999E-5, + "max" : 0.6797309999999999, + "p01" : 5.899999999999999E-5, + "p05" : 5.899999999999999E-5, + "p10" : 5.899999999999999E-5, + "p25" : 6.4E-5, + "p50" : 8.599999999999999E-5, + "p75" : 1.9099999999999998E-4, + "p90" : 3.38E-4, + "p95" : 0.6797309999999999, + "p99" : 0.6797309999999999, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "416B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "416B", + "spilledDataSize" : "0B" + }, { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "781", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 1, + "addInputWall" : "828.58us", + "addInputCpu" : "444.00us", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "9B", + "inputPositions" : 1, + "sumSquaredInputPositions" : 1.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "9B", + "outputPositions" : 1, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 6.916999999999999E-6, + "max" : 8.429579999999999E-4, + "p01" : 6.916999999999999E-6, + "p05" : 6.916999999999999E-6, + "p10" : 7.083999999999999E-6, + "p25" : 9.416999999999998E-6, + "p50" : 1.0791999999999998E-5, + "p75" : 2.5708999999999997E-5, + "p90" : 3.816599999999999E-5, + "p95" : 8.429579999999999E-4, + "p99" : 8.429579999999999E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 1.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 1.0, + "p99" : 1.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 6.999999999999999E-6, + "max" : 4.579999999999999E-4, + "p01" : 6.999999999999999E-6, + "p05" : 6.999999999999999E-6, + "p10" : 8.0E-6, + "p25" : 9.999999999999999E-6, + "p50" : 1.0999999999999998E-5, + "p75" : 2.9999999999999994E-5, + "p90" : 3.899999999999999E-5, + "p95" : 4.579999999999999E-4, + "p99" : 4.579999999999999E-4, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "227.75us", + "finishCpu" : "243.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 104 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + }, { + "taskStatus" : { + "taskId" : "20260330_075902_00004_iggau.18.1.0", + "taskInstanceId" : -7094776309521900415, + "version" : 2, + "state" : "FINISHED", + "self" : "http://127.0.0.1:58375/v1/task/20260330_075902_00004_iggau.18.1.0", + "nodeId" : "120bcf46-1d26-4e5c-8b3f-349c5d0869fc", + "speculative" : false, + "failures" : [ ], + "queuedPartitionedDrivers" : 0, + "runningPartitionedDrivers" : 0, + "outputBufferStatus" : { + "outputBuffersVersion" : 2, + "overutilized" : false, + "exchangeSinkInstanceHandleUpdateRequired" : false + }, + "outputDataSize" : "0B", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "memoryReservation" : "0B", + "peakMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "dynamicFiltersVersion" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningPartitionedSplitsWeight" : 0 + }, + "lastHeartbeat" : "2026-03-30T07:59:03.883819Z", + "outputBuffers" : { + "type" : "PARTITIONED", + "state" : "FINISHED", + "canAddBuffers" : false, + "canAddPages" : false, + "totalBufferedBytes" : 0, + "totalBufferedPages" : 0, + "totalRowsSent" : 0, + "totalPagesSent" : 0, + "utilization" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 736382500 + } + }, + "noMoreSplits" : [ "14" ], + "stats" : { + "createTime" : "2026-03-30T07:59:03.139995Z", + "firstStartTime" : "2026-03-30T07:59:03.172993Z", + "lastStartTime" : "2026-03-30T07:59:03.201559Z", + "lastEndTime" : "2026-03-30T07:59:03.201Z", + "endTime" : "2026-03-30T07:59:03.885848Z", + "elapsedTime" : "733.80ms", + "queuedTime" : "20.95ms", + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "cumulativeUserMemory" : 49394.4996, + "userMemoryReservation" : "0B", + "peakUserMemoryReservation" : "2.34kB", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "totalScheduledTime" : "14.73ms", + "totalCpuTime" : "1.93ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "writerInputDataSize" : "0B", + "physicalWrittenDataSize" : "0B", + "fullGcCount" : 0, + "fullGcTime" : "0.00ns", + "pipelines" : [ { + "pipelineId" : 0, + "firstStartTime" : "2026-03-30T07:59:03.172993Z", + "lastStartTime" : "2026-03-30T07:59:03.201559Z", + "lastEndTime" : "2026-03-30T07:59:03.201648Z", + "inputPipeline" : true, + "outputPipeline" : true, + "totalDrivers" : 16, + "queuedDrivers" : 0, + "queuedPartitionedDrivers" : 0, + "queuedPartitionedSplitsWeight" : 0, + "runningDrivers" : 0, + "runningPartitionedDrivers" : 0, + "runningPartitionedSplitsWeight" : 0, + "blockedDrivers" : 0, + "completedDrivers" : 16, + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "queuedTime" : { + "count" : 16.0, + "total" : 4.0931862E8, + "p01" : 1.0486958E7, + "p05" : 1.0486958E7, + "p10" : 1.0632083E7, + "p25" : 2.0350625E7, + "p50" : 3.1259125E7, + "p75" : 3.4415333E7, + "p90" : 3.8399333E7, + "p95" : 3.900325E7, + "p99" : 3.900325E7, + "min" : 1.0486958E7, + "max" : 3.900325E7, + "avg" : 2.558241375E7 + }, + "elapsedTime" : { + "count" : 16.0, + "total" : 4.24038912E8, + "p01" : 1.3453541E7, + "p05" : 1.3453541E7, + "p10" : 1.3611041E7, + "p25" : 2.0550625E7, + "p50" : 3.1374916E7, + "p75" : 3.4533958E7, + "p90" : 3.8500833E7, + "p95" : 3.9091083E7, + "p99" : 3.9091083E7, + "min" : 1.3453541E7, + "max" : 3.9091083E7, + "avg" : 2.6502432E7 + }, + "totalScheduledTime" : "14.73ms", + "totalCpuTime" : "1.93ms", + "totalBlockedTime" : "0.00ns", + "fullyBlocked" : false, + "blockedReasons" : [ ], + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "processedInputDataSize" : "0B", + "processedInputPositions" : 0, + "inputBlockedTime" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "outputBlockedTime" : "0.00ns", + "physicalWrittenDataSize" : "0B", + "operatorSummaries" : [ { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 0, + "planNodeId" : "781", + "sourceId" : "14", + "operatorType" : "ScanFilterAndProjectOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 16, + "getOutputWall" : "14.12ms", + "getOutputCpu" : "1.33ms", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "CPU time distribution (s)" : { + "min" : 5.099999999999999E-5, + "max" : 1.5799999999999996E-4, + "p01" : 5.099999999999999E-5, + "p05" : 5.099999999999999E-5, + "p10" : 5.4999999999999995E-5, + "p25" : 5.7999999999999994E-5, + "p50" : 8.099999999999999E-5, + "p75" : 1.0399999999999998E-4, + "p90" : 1.3E-4, + "p95" : 1.5799999999999996E-4, + "p99" : 1.5799999999999996E-4, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "Scheduled time distribution (s)" : { + "min" : 5.2082999999999996E-5, + "max" : 0.0037919589999999993, + "p01" : 5.2082999999999996E-5, + "p05" : 5.2082999999999996E-5, + "p10" : 5.7041999999999994E-5, + "p25" : 5.933299999999999E-5, + "p50" : 8.229199999999999E-5, + "p75" : 0.0029279999999999996, + "p90" : 0.0034560419999999994, + "p95" : 0.0037919589999999993, + "p99" : 0.0037919589999999993, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 0, + "finishWall" : "0.00ns", + "finishCpu" : "0.00ns", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "288B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "288B", + "spilledDataSize" : "0B" + }, { + "stageId" : 18, + "pipelineId" : 0, + "operatorId" : 1, + "planNodeId" : "781", + "operatorType" : "PartitionedOutputOperator", + "totalDrivers" : 16, + "addInputCalls" : 0, + "addInputWall" : "0.00ns", + "addInputCpu" : "0.00ns", + "physicalInputDataSize" : "0B", + "physicalInputPositions" : 0, + "physicalInputReadTime" : "0.00ns", + "internalNetworkInputDataSize" : "0B", + "internalNetworkInputPositions" : 0, + "inputDataSize" : "0B", + "inputPositions" : 0, + "sumSquaredInputPositions" : 0.0, + "getOutputCalls" : 0, + "getOutputWall" : "0.00ns", + "getOutputCpu" : "0.00ns", + "outputDataSize" : "0B", + "outputPositions" : 0, + "dynamicFilterSplitsProcessed" : 0, + "metrics" : { + "exchangeSerializerOutputBytes" : { + "total" : 0 + }, + "Scheduled time distribution (s)" : { + "min" : 7.332999999999999E-6, + "max" : 5.7749999999999994E-5, + "p01" : 7.332999999999999E-6, + "p05" : 7.332999999999999E-6, + "p10" : 8.791999999999998E-6, + "p25" : 9.790999999999998E-6, + "p50" : 1.0624999999999999E-5, + "p75" : 1.2541999999999998E-5, + "p90" : 2.8999999999999997E-5, + "p95" : 5.7749999999999994E-5, + "p99" : 5.7749999999999994E-5, + "total" : 16 + }, + "Input rows distribution" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + }, + "CPU time distribution (s)" : { + "min" : 8.0E-6, + "max" : 3.399999999999999E-5, + "p01" : 8.0E-6, + "p05" : 8.0E-6, + "p10" : 8.999999999999999E-6, + "p25" : 9.999999999999999E-6, + "p50" : 1.1999999999999999E-5, + "p75" : 1.2999999999999998E-5, + "p90" : 3.0999999999999995E-5, + "p95" : 3.399999999999999E-5, + "p99" : 3.399999999999999E-5, + "total" : 16 + }, + "exchangeSerializerInputBytes" : { + "total" : 0 + }, + "Blocked time distribution (s)" : { + "min" : 0.0, + "max" : 0.0, + "p01" : 0.0, + "p05" : 0.0, + "p10" : 0.0, + "p25" : 0.0, + "p50" : 0.0, + "p75" : 0.0, + "p90" : 0.0, + "p95" : 0.0, + "p99" : 0.0, + "total" : 16 + } + }, + "connectorMetrics" : { }, + "pipelineMetrics" : { }, + "physicalWrittenDataSize" : "0B", + "blockedWall" : "0.00ns", + "finishCalls" : 16, + "finishWall" : "231.66us", + "finishCpu" : "222.00us", + "userMemoryReservation" : "0B", + "revocableMemoryReservation" : "0B", + "peakUserMemoryReservation" : "0B", + "peakRevocableMemoryReservation" : "0B", + "peakTotalMemoryReservation" : "0B", + "spilledDataSize" : "0B", + "info" : { + "outputBufferPeakMemoryUsage" : 0 + } + } ], + "drivers" : [ ] + } ] + }, + "needsPlan" : false + } ], + "subStages" : [ ], + "tables" : { + "14" : { + "connectorName" : "tpch", + "tableName" : "tpch.tiny.region", + "predicate" : { + "columnDomains" : [ ] + } + } + } + } ] + }, + "warnings" : [ ], + "inputs" : [ { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "partsupp", + "columns" : [ { + "name" : "partkey", + "type" : "bigint" + }, { + "name" : "suppkey", + "type" : "bigint" + }, { + "name" : "supplycost", + "type" : "double" + } ], + "fragmentId" : "5", + "planNodeId" : "3" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "part", + "columns" : [ { + "name" : "partkey", + "type" : "bigint" + }, { + "name" : "mfgr", + "type" : "varchar(25)" + }, { + "name" : "size", + "type" : "integer" + }, { + "name" : "type", + "type" : "varchar(25)" + } ], + "fragmentId" : "6", + "planNodeId" : "0" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "supplier", + "columns" : [ { + "name" : "address", + "type" : "varchar(40)" + }, { + "name" : "acctbal", + "type" : "double" + }, { + "name" : "comment", + "type" : "varchar(101)" + }, { + "name" : "nationkey", + "type" : "bigint" + }, { + "name" : "suppkey", + "type" : "bigint" + }, { + "name" : "phone", + "type" : "varchar(15)" + }, { + "name" : "name", + "type" : "varchar(25)" + } ], + "fragmentId" : "8", + "planNodeId" : "1" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "nation", + "columns" : [ { + "name" : "nationkey", + "type" : "bigint" + }, { + "name" : "regionkey", + "type" : "bigint" + }, { + "name" : "name", + "type" : "varchar(25)" + } ], + "fragmentId" : "10", + "planNodeId" : "5" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "region", + "columns" : [ { + "name" : "regionkey", + "type" : "bigint" + }, { + "name" : "name", + "type" : "varchar(25)" + } ], + "fragmentId" : "11", + "planNodeId" : "7" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "partsupp", + "columns" : [ { + "name" : "partkey", + "type" : "bigint" + }, { + "name" : "suppkey", + "type" : "bigint" + }, { + "name" : "supplycost", + "type" : "double" + } ], + "fragmentId" : "13", + "planNodeId" : "9" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "supplier", + "columns" : [ { + "name" : "nationkey", + "type" : "bigint" + }, { + "name" : "suppkey", + "type" : "bigint" + } ], + "fragmentId" : "15", + "planNodeId" : "10" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "nation", + "columns" : [ { + "name" : "nationkey", + "type" : "bigint" + }, { + "name" : "regionkey", + "type" : "bigint" + } ], + "fragmentId" : "17", + "planNodeId" : "12" + }, { + "connectorName" : "tpch", + "catalogName" : "tpch", + "catalogVersion" : "a54a4dabd3c2c54b5c98ab9451385fae3f0487a110f722aa3d387e502f139234", + "schema" : "tiny", + "table" : "region", + "columns" : [ { + "name" : "regionkey", + "type" : "bigint" + }, { + "name" : "name", + "type" : "varchar(25)" + } ], + "fragmentId" : "18", + "planNodeId" : "14" + } ], + "selectColumnsLineageInfo" : [ { + "name" : "acctbal", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "columnName" : "acctbal" + } ] + }, { + "name" : "name", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "columnName" : "name" + } ] + }, { + "name" : "name", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "nation", + "columnName" : "name" + } ] + }, { + "name" : "partkey", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "part", + "columnName" : "partkey" + } ] + }, { + "name" : "mfgr", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "part", + "columnName" : "mfgr" + } ] + }, { + "name" : "address", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "columnName" : "address" + } ] + }, { + "name" : "phone", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "columnName" : "phone" + } ] + }, { + "name" : "comment", + "sourceColumns" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "columnName" : "comment" + } ] + } ], + "referencedTables" : [ { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "part", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "partkey" + }, { + "column" : "size" + }, { + "column" : "mfgr" + }, { + "column" : "type" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "nationkey" + }, { + "column" : "address" + }, { + "column" : "phone" + }, { + "column" : "name" + }, { + "column" : "comment" + }, { + "column" : "suppkey" + }, { + "column" : "acctbal" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "partsupp", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "partkey" + }, { + "column" : "supplycost" + }, { + "column" : "suppkey" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "nation", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "nationkey" + }, { + "column" : "regionkey" + }, { + "column" : "name" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "region", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "regionkey" + }, { + "column" : "name" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "partsupp", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "partkey" + }, { + "column" : "supplycost" + }, { + "column" : "suppkey" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "supplier", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "nationkey" + }, { + "column" : "address" + }, { + "column" : "phone" + }, { + "column" : "name" + }, { + "column" : "comment" + }, { + "column" : "suppkey" + }, { + "column" : "acctbal" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "nation", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "nationkey" + }, { + "column" : "regionkey" + }, { + "column" : "name" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + }, { + "catalog" : "tpch", + "schema" : "tiny", + "table" : "region", + "authorization" : "piotr", + "filters" : [ ], + "columns" : [ { + "column" : "regionkey" + }, { + "column" : "name" + } ], + "directlyReferenced" : true, + "referenceChain" : [ ] + } ], + "routines" : [ { + "routine" : "min", + "authorization" : "piotr" + } ], + "finalQueryInfo" : true, + "resourceGroupId" : [ "global" ], + "queryType" : "SELECT", + "retryPolicy" : "NONE", + "pruned" : false, + "version" : { + "version" : "testversion" + }, + "scheduled" : true, + "progressPercentage" : 100.0, + "runningPercentage" : 0.0 +} \ No newline at end of file