You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2021/02/12 01:46:36 UTC

[impala] branch master updated: IMPALA-9382: part 3/3 clean up runtime profile v2 text output

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6fe3466  IMPALA-9382: part 3/3 clean up runtime profile v2 text output
6fe3466 is described below

commit 6fe3466d4d0a88941206aed8d265d9663758fec2
Author: Tim Armstrong <ta...@cloudera.com>
AuthorDate: Tue Feb 9 08:45:48 2021 -0800

    IMPALA-9382: part 3/3 clean up runtime profile v2 text output
    
    Eliminated some of the noisy per-instance counters
    from DEFAULT verbosity.
    
    Testing:
    * Updated impala-profile-tool test with new output
    * Added new impala-profile-tool test for v2 profile.
    
    Change-Id: I277a0da749bcda4ecca574257b5aaacbcf222491
    Reviewed-on: http://gerrit.cloudera.org:8080/17050
    Reviewed-by: Tim Armstrong <ta...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 be/src/util/runtime-profile.cc                     |   11 +-
 bin/rat_exclude_files.txt                          |    3 +
 testdata/impala-profiles/README                    |    9 +
 ...le_log_tpcds_compute_stats_default.expected.txt |  514 ---
 .../impala_profile_log_tpcds_compute_stats_v2      |    4 +
 ...log_tpcds_compute_stats_v2_default.expected.txt | 2449 +++++++++++++++
 ...og_tpcds_compute_stats_v2_extended.expected.txt | 3275 ++++++++++++++++++++
 tests/observability/test_profile_tool.py           |   11 +
 8 files changed, 5760 insertions(+), 516 deletions(-)

diff --git a/be/src/util/runtime-profile.cc b/be/src/util/runtime-profile.cc
index 2965d89..5fbac4b 100644
--- a/be/src/util/runtime-profile.cc
+++ b/be/src/util/runtime-profile.cc
@@ -2664,11 +2664,14 @@ void AggregatedRuntimeProfile::PrettyPrintSubclassCounters(
     ostream* s, const string& prefix, Verbosity verbosity) const {
   ostream& stream = *s;
   // Legacy profile did not show aggregated time series counters.
+  // Showing a time series per instance is too verbose for the default mode,
+  // so just show first.
   if (verbosity >= Verbosity::DEFAULT) {
     lock_guard<SpinLock> l(counter_map_lock_);
     for (const auto& v : time_series_counter_map_) {
       const TAggTimeSeriesCounter& counter = v.second;
-      for (int idx = 0; idx < counter.values.size(); ++idx) {
+      int num_to_print = verbosity >= Verbosity::EXTENDED ? counter.values.size() : 1;
+      for (int idx = 0; idx < num_to_print; ++idx) {
         const vector<int64_t>& values = counter.values[idx];
         const string& label = Substitute("$0[$1]", counter.name, idx);
         PrettyPrintTimeSeries(label, values.data(), values.size(),
@@ -2708,6 +2711,9 @@ void AggregatedRuntimeProfile::PrettyPrintSubclassCounters(
           prev = ts;
         }
       }
+      // Showing an event sequence per instance is too verbose for the default mode,
+      // so just show first.
+      if (verbosity < Verbosity::EXTENDED) break;
     }
   }
 
@@ -2721,7 +2727,8 @@ void AggregatedRuntimeProfile::PrettyPrintSubclassCounters(
 
       // Display per-instance stats, if there is more than one instance.
       // Legacy profile did not show per-instance stats for averaged profile.
-      if (verbosity > Verbosity::LEGACY && v.second.second.size() > 1) {
+      // Per-instance stats are too verbose for the default mode.
+      if (verbosity >= Verbosity::EXTENDED && v.second.second.size() > 1) {
         for (int idx = 0; idx < v.second.second.size(); ++idx) {
           if (v.second.second[idx] == nullptr) continue;
           const string& per_instance_prefix = Substitute("$0[$1]", prefix, idx);
diff --git a/bin/rat_exclude_files.txt b/bin/rat_exclude_files.txt
index eae4710..0499b1d 100644
--- a/bin/rat_exclude_files.txt
+++ b/bin/rat_exclude_files.txt
@@ -161,6 +161,9 @@ testdata/impala-profiles/impala_profile_log_tpcds_compute_stats.expected.pretty.
 testdata/impala-profiles/impala_profile_log_tpcds_compute_stats.expected.pretty_extended.json
 testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_default.expected.txt
 testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_extended.expected.txt
+testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2
+testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_default.expected.txt
+testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_extended.expected.txt
 testdata/hive_benchmark/grepTiny/part-00000
 testdata/tzdb/2017c.zip
 testdata/tzdb/2017c-corrupt.zip
diff --git a/testdata/impala-profiles/README b/testdata/impala-profiles/README
index 6cafb83..cb2a52e 100644
--- a/testdata/impala-profiles/README
+++ b/testdata/impala-profiles/README
@@ -4,3 +4,12 @@ compute stats tpcds_parquet.store_sales
 This log has associated expected output files (with "expected") in the filename
 that were generated by impala-profile-tool with various output formats and verbosity
 levels. These are used in test_profile_tool.py.
+
+
+impala_profile_log_tpcds_compute_stats_v2:
+An impala profile log with the main query and child queries for
+compute stats tpcds_parquet.store_sales from an impalad running with
+--gen_experimental_profile=true.
+This log has associated expected output files (with "expected") in the filename
+that were generated by impala-profile-tool with various output formats and verbosity
+levels. These are used in test_profile_tool.py.
diff --git a/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_default.expected.txt b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_default.expected.txt
index 30d1b9c..fea852a 100644
--- a/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_default.expected.txt
+++ b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_default.expected.txt
@@ -722,29 +722,7 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
       Last report received time[0-3]: 2020-12-15 20:07:23.276
       Last report received time[4-7]: 2020-12-15 20:07:23.281
        - MemoryUsage[0] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[1] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[2] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[3] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[4] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[5] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[6] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[7] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[8] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[9] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[10] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
-       - MemoryUsage[11] (500.000ms): 30.97 KB, 30.97 KB, 30.97 KB
        - ThreadUsage[0] (500.000ms): 1, 1, 1
-       - ThreadUsage[1] (500.000ms): 1, 1, 1
-       - ThreadUsage[2] (500.000ms): 1, 1, 1
-       - ThreadUsage[3] (500.000ms): 1, 1, 1
-       - ThreadUsage[4] (500.000ms): 1, 1, 1
-       - ThreadUsage[5] (500.000ms): 1, 1, 1
-       - ThreadUsage[6] (500.000ms): 1, 1, 1
-       - ThreadUsage[7] (500.000ms): 1, 1, 1
-       - ThreadUsage[8] (500.000ms): 1, 1, 1
-       - ThreadUsage[9] (500.000ms): 1, 1, 1
-       - ThreadUsage[10] (500.000ms): 1, 1, 1
-       - ThreadUsage[11] (500.000ms): 1, 1, 1
       Fragment Instance Lifecycle Event Timeline[0]: 1s159ms
          - Prepare Finished: 0.000ns (0.000ns)
          - Open Finished: 1s147ms (1s147ms)
@@ -849,56 +827,9 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
       KrpcDataStreamSender (dst_id=4) [12 instances]:(Total: 9.666ms, non-child: 333.330us, % non-child: 3.45%)
         ExecOption[0-11]: Unpartitioned Sender Codegen Disabled: not needed
          - BytesSent[0] (500.000ms): 0, 0, 0
-         - BytesSent[1] (500.000ms): 0, 0, 0
-         - BytesSent[2] (500.000ms): 0, 0, 0
-         - BytesSent[3] (500.000ms): 0, 0, 0
-         - BytesSent[4] (500.000ms): 0, 0, 0
-         - BytesSent[5] (500.000ms): 0, 0, 0
-         - BytesSent[6] (500.000ms): 0, 0, 0
-         - BytesSent[7] (500.000ms): 0, 0, 0
-         - BytesSent[8] (500.000ms): 0, 0, 0
-         - BytesSent[9] (500.000ms): 0, 0, 0
-         - BytesSent[10] (500.000ms): 0, 0, 0
-         - BytesSent[11] (500.000ms): 0, 0, 0
          - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [0]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [1]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [2]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [3]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [4]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [5]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [6]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [7]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [8]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [9]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [10]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
-      [11]   - NetworkThroughput: (Avg: 324.30 KB/sec ; Min: 30.18 KB/sec ; Max: 895.41 KB/sec ; Number of samples: 192)
          - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [0]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [1]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [2]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [3]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [4]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [5]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [6]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [7]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [8]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [9]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [10]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
-      [11]   - RpcNetworkTime: (Avg: 460.361us ; Min: 139.963us ; Max: 1.858ms ; Number of samples: 204)
          - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [0]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [1]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [2]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [3]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [4]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [5]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [6]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [7]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [8]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [9]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [10]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
-      [11]   - RpcRecvrTime: (Avg: 126.641us ; Min: 39.950us ; Max: 751.214us ; Number of samples: 204)
          - EosSent: mean=1 (1) min=1 (1) max=1 (1)
          - InactiveTotalTime: mean=9.333ms min=3.999ms max=11.999ms
          - PeakMemoryUsage: mean=9.84 KB (10080) min=9.84 KB (10080) max=9.84 KB (10080)
@@ -1153,17 +1084,6 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
            - WriteIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
         Dequeue [12 instances]:
            - BytesDequeued[0] (500.000ms): 0, 0, 0
-           - BytesDequeued[1] (500.000ms): 0, 0, 0
-           - BytesDequeued[2] (500.000ms): 0, 0, 0
-           - BytesDequeued[3] (500.000ms): 0, 0, 0
-           - BytesDequeued[4] (500.000ms): 0, 0, 0
-           - BytesDequeued[5] (500.000ms): 0, 0, 0
-           - BytesDequeued[6] (500.000ms): 0, 0, 0
-           - BytesDequeued[7] (500.000ms): 0, 0, 0
-           - BytesDequeued[8] (500.000ms): 0, 0, 0
-           - BytesDequeued[9] (500.000ms): 0, 0, 0
-           - BytesDequeued[10] (500.000ms): 0, 0, 0
-           - BytesDequeued[11] (500.000ms): 0, 0, 0
            - FirstBatchWaitTime: mean=1s024ms min=1s015ms max=1s031ms
            - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
            - TotalBytesDequeued: mean=3.12 KB (3192) min=2.73 KB (2793) max=3.47 KB (3549)
@@ -1172,42 +1092,8 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
            - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
         Enqueue [12 instances]:
            - BytesReceived[0] (500.000ms): 0, 0, 0
-           - BytesReceived[1] (500.000ms): 0, 0, 0
-           - BytesReceived[2] (500.000ms): 0, 0, 0
-           - BytesReceived[3] (500.000ms): 0, 0, 0
-           - BytesReceived[4] (500.000ms): 0, 0, 0
-           - BytesReceived[5] (500.000ms): 0, 0, 0
-           - BytesReceived[6] (500.000ms): 0, 0, 0
-           - BytesReceived[7] (500.000ms): 0, 0, 0
-           - BytesReceived[8] (500.000ms): 0, 0, 0
-           - BytesReceived[9] (500.000ms): 0, 0, 0
-           - BytesReceived[10] (500.000ms): 0, 0, 0
-           - BytesReceived[11] (500.000ms): 0, 0, 0
            - DeferredQueueSize[0] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[1] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[2] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[3] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[4] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[5] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[6] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[7] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[8] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[9] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[10] (500.000ms): 0, 0, 0
-           - DeferredQueueSize[11] (500.000ms): 0, 0, 0
            - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [0]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [1]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [2]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [3]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [4]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [5]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [6]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [7]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [8]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [9]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [10]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
-        [11]   - DispatchTime: (Avg: 307.026us ; Min: 36.876us ; Max: 4.526ms ; Number of samples: 144)
            - DeserializeRowBatchTime: mean=0.000ns min=0.000ns max=0.000ns
            - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
            - TotalBatchesEnqueued: mean=12 (12) min=12 (12) max=12 (12)
@@ -3223,29 +3109,7 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
       Last report received time[0-3]: 2020-12-15 20:07:23.276
       Last report received time[4-7]: 2020-12-15 20:07:23.281
        - MemoryUsage[0] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[1] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[2] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[3] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[4] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[5] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[6] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[7] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[8] (500.000ms): 139.25 KB, 2.28 MB, 2.27 MB
-       - MemoryUsage[9] (500.000ms): 139.25 KB, 2.27 MB, 2.28 MB
-       - MemoryUsage[10] (500.000ms): 139.25 KB, 2.28 MB, 2.28 MB
-       - MemoryUsage[11] (500.000ms): 139.25 KB, 2.27 MB, 2.28 MB
        - ThreadUsage[0] (500.000ms): 1, 1, 1
-       - ThreadUsage[1] (500.000ms): 1, 1, 1
-       - ThreadUsage[2] (500.000ms): 1, 1, 1
-       - ThreadUsage[3] (500.000ms): 1, 1, 1
-       - ThreadUsage[4] (500.000ms): 1, 1, 1
-       - ThreadUsage[5] (500.000ms): 1, 1, 1
-       - ThreadUsage[6] (500.000ms): 1, 1, 1
-       - ThreadUsage[7] (500.000ms): 1, 1, 1
-       - ThreadUsage[8] (500.000ms): 1, 1, 1
-       - ThreadUsage[9] (500.000ms): 1, 1, 1
-       - ThreadUsage[10] (500.000ms): 1, 1, 1
-       - ThreadUsage[11] (500.000ms): 1, 1, 1
       Fragment Instance Lifecycle Event Timeline[0]: 1s115ms
          - Prepare Finished: 0.000ns (0.000ns)
          - Open Finished: 87.999ms (87.999ms)
@@ -3350,56 +3214,9 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
       KrpcDataStreamSender (dst_id=2) [12 instances]:(Total: 5.333ms, non-child: 1.666ms, % non-child: 31.25%)
         ExecOption[0-11]: Hash Partitioned Sender Codegen Enabled
          - BytesSent[0] (500.000ms): 0, 0, 0
-         - BytesSent[1] (500.000ms): 0, 0, 0
-         - BytesSent[2] (500.000ms): 0, 0, 0
-         - BytesSent[3] (500.000ms): 0, 0, 0
-         - BytesSent[4] (500.000ms): 0, 0, 0
-         - BytesSent[5] (500.000ms): 0, 0, 0
-         - BytesSent[6] (500.000ms): 0, 0, 0
-         - BytesSent[7] (500.000ms): 0, 0, 0
-         - BytesSent[8] (500.000ms): 0, 0, 0
-         - BytesSent[9] (500.000ms): 0, 0, 0
-         - BytesSent[10] (500.000ms): 0, 0, 0
-         - BytesSent[11] (500.000ms): 0, 0, 0
          - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [0]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [1]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [2]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [3]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [4]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [5]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [6]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [7]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [8]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [9]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [10]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
-      [11]   - NetworkThroughput: (Avg: 220.47 KB/sec ; Min: 14.07 KB/sec ; Max: 1.13 MB/sec ; Number of samples: 144)
          - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [0]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [1]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [2]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [3]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [4]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [5]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [6]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [7]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [8]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [9]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [10]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
-      [11]   - RpcNetworkTime: (Avg: 1.302ms ; Min: 185.499us ; Max: 8.207ms ; Number of samples: 288)
          - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [0]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [1]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [2]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [3]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [4]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [5]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [6]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [7]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [8]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [9]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [10]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
-      [11]   - RpcRecvrTime: (Avg: 250.737us ; Min: 39.670us ; Max: 4.570ms ; Number of samples: 288)
          - EosSent: mean=12 (12) min=12 (12) max=12 (12)
          - InactiveTotalTime: mean=3.666ms min=0.000ns max=11.999ms
          - PeakMemoryUsage: mean=166.12 KB (170112) min=166.12 KB (170112) max=166.12 KB (170112)
@@ -3560,17 +3377,6 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
         Hdfs Read Thread Concurrency Bucket[8-9,11]: 0:50% 1:50% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
         Table Name[0-11]: tpcds_parquet.store_sales
          - BytesReadSeries[0] (500.000ms): 0, 4.35 MB, 10.67 MB
-         - BytesReadSeries[1] (500.000ms): 0, 4.37 MB, 10.68 MB
-         - BytesReadSeries[2] (500.000ms): 0, 4.38 MB, 11.07 MB
-         - BytesReadSeries[3] (500.000ms): 0, 4.94 MB, 11.24 MB
-         - BytesReadSeries[4] (500.000ms): 0, 4.05 MB, 10.76 MB
-         - BytesReadSeries[5] (500.000ms): 0, 4.52 MB, 11.20 MB
-         - BytesReadSeries[6] (500.000ms): 0, 4.03 MB, 10.54 MB
-         - BytesReadSeries[7] (500.000ms): 0, 4.07 MB, 10.78 MB
-         - BytesReadSeries[8] (500.000ms): 0, 3.88 MB, 10.20 MB
-         - BytesReadSeries[9] (500.000ms): 0, 3.89 MB, 10.53 MB
-         - BytesReadSeries[10] (500.000ms): 0, 3.92 MB, 10.43 MB
-         - BytesReadSeries[11] (500.000ms): 0, 3.96 MB, 10.67 MB
         Node Lifecycle Event Timeline[0]: 1s111ms
            - Open Started: 83.999ms (83.999ms)
            - Open Finished: 87.999ms (3.999ms)
@@ -3656,135 +3462,15 @@ F00:EXCHANGE SENDER        3     12    1.666ms   3.999ms                     166
            - Last Batch Returned: 1s127ms (915.989ms)
            - Closed: 1s127ms (0.000ns)
          - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [0]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [1]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [2]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [3]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [4]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [5]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [6]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [7]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [8]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [9]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [10]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
-      [11]   - FooterProcessingTime: (Avg: 6.355ms ; Min: 0.000ns ; Max: 99.998ms ; Number of samples: 1824)
          - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [0]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [1]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [2]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [3]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [4]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [5]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [6]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [7]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [8]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [9]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [10]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [11]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
          - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [0]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [1]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [2]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [3]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [4]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [5]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [6]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [7]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [8]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [9]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [10]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [11]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
          - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [0]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [1]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [2]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [3]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [4]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [5]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [6]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [7]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [8]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [9]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [10]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [11]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
          - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [0]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [1]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [2]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [3]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [4]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [5]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [6]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [7]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [8]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [9]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [10]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [11]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
          - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [0]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [1]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [2]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [3]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [4]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [5]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [6]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [7]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [8]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [9]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [10]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
-      [11]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
          - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [0]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [1]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [2]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [3]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [4]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [5]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [6]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [7]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [8]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [9]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [10]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [11]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
          - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [0]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [1]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [2]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [3]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [4]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [5]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [6]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [7]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [8]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [9]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [10]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
-      [11]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
          - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [0]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [1]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [2]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [3]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [4]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [5]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [6]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [7]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [8]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [9]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [10]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
-      [11]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
          - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [0]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [1]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [2]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [3]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [4]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [5]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [6]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [7]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [8]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [9]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [10]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
-      [11]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
          - AverageHdfsReadThreadConcurrency: mean=0.75 min=0.50 max=1.00
          - BytesRead: mean=11.84 MB (12417186) min=11.45 MB (12005633) max=12.27 MB (12869946)
          - BytesReadDataNodeCache: mean=0 min=0 max=0
@@ -6835,29 +6521,7 @@ F00:EXCHANGE SENDER        3     12    0.000ns    0.000ns
       Last report received time[0-3]: 2020-12-15 20:07:27.317
       Last report received time[4-7]: 2020-12-15 20:07:27.327
        - MemoryUsage[0] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.07 MB, 8.08 MB, 8.04 MB, 8.04 MB, 8.22 MB
-       - MemoryUsage[1] (500.000ms): 12.01 KB, 8.04 MB, 8.24 MB, 8.22 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.32 MB
-       - MemoryUsage[2] (500.000ms): 12.01 KB, 8.29 MB, 8.04 MB, 8.04 MB, 8.36 MB, 8.32 MB, 8.04 MB, 8.04 MB
-       - MemoryUsage[3] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.09 MB, 8.21 MB
-       - MemoryUsage[4] (500.000ms): 12.01 KB, 8.31 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.37 MB, 8.04 MB
-       - MemoryUsage[5] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.04 MB, 8.13 MB, 8.04 MB, 8.07 MB, 8.27 MB
-       - MemoryUsage[6] (500.000ms): 12.01 KB, 8.38 MB, 8.04 MB, 8.04 MB, 8.04 MB, 12.05 MB, 8.44 MB, 8.35 MB
-       - MemoryUsage[7] (500.000ms): 12.01 KB, 8.04 MB, 8.24 MB, 8.10 MB, 8.04 MB, 8.04 MB, 8.06 MB, 8.04 MB
-       - MemoryUsage[8] (500.000ms): 12.01 KB, 8.04 MB, 8.24 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB
-       - MemoryUsage[9] (500.000ms): 12.01 KB, 8.44 MB, 8.33 MB, 8.43 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB
-       - MemoryUsage[10] (500.000ms): 12.01 KB, 8.24 MB, 8.24 MB, 8.04 MB, 8.04 MB, 8.26 MB, 8.24 MB, 8.08 MB
-       - MemoryUsage[11] (500.000ms): 12.01 KB, 8.38 MB, 8.33 MB, 8.04 MB, 8.04 MB, 8.42 MB, 8.04 MB, 8.04 MB
        - ThreadUsage[0] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[1] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[2] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[3] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[4] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[5] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[6] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[7] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[8] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[9] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[10] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
-       - ThreadUsage[11] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1
       Fragment Instance Lifecycle Event Timeline[0]: 3s819ms
          - Prepare Finished: 0.000ns (0.000ns)
          - Open Finished: 3s819ms (3s819ms)
@@ -6962,56 +6626,9 @@ F00:EXCHANGE SENDER        3     12    0.000ns    0.000ns
       KrpcDataStreamSender (dst_id=2) [12 instances]:(Total: 666.659us, non-child: 0.000ns, % non-child: 0.00%)
         ExecOption[0-11]: Unpartitioned Sender Codegen Disabled: not needed
          - BytesSent[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[1] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[2] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[3] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[4] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[5] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[6] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[7] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[8] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[9] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[10] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
-         - BytesSent[11] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0
          - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [0]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [1]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [2]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [3]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [4]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [5]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [6]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [7]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [8]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [9]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [10]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
-      [11]   - NetworkThroughput: (Avg: 56.71 MB/sec ; Min: 27.86 MB/sec ; Max: 81.38 MB/sec ; Number of samples: 12)
          - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [0]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [1]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [2]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [3]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [4]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [5]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [6]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [7]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [8]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [9]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [10]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
-      [11]   - RpcNetworkTime: (Avg: 222.572us ; Min: 140.800us ; Max: 509.284us ; Number of samples: 24)
          - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [0]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [1]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [2]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [3]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [4]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [5]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [6]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [7]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [8]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [9]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [10]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
-      [11]   - RpcRecvrTime: (Avg: 100.501us ; Min: 50.845us ; Max: 193.042us ; Number of samples: 24)
          - EosSent: mean=1 (1) min=1 (1) max=1 (1)
          - InactiveTotalTime: mean=666.659us min=0.000ns max=3.999ms
          - PeakMemoryUsage: mean=8.00 B (8) min=8.00 B (8) max=8.00 B (8)
@@ -7148,17 +6765,6 @@ F00:EXCHANGE SENDER        3     12    0.000ns    0.000ns
         Hdfs Read Thread Concurrency Bucket[0-1,8-9]: 0:85.71% 1:14.29% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
         Table Name[0-11]: tpcds_parquet.store_sales
          - BytesReadSeries[0] (500.000ms): 0, 3.28 MB, 7.33 MB, 11.11 MB, 14.61 MB, 18.07 MB, 21.86 MB, 25.97 MB
-         - BytesReadSeries[1] (500.000ms): 0, 3.46 MB, 7.02 MB, 10.67 MB, 13.93 MB, 16.79 MB, 20.28 MB, 24.42 MB
-         - BytesReadSeries[2] (500.000ms): 0, 3.24 MB, 7.11 MB, 10.40 MB, 13.67 MB, 16.76 MB, 20.35 MB, 24.76 MB
-         - BytesReadSeries[3] (500.000ms): 0, 3.01 MB, 7.07 MB, 10.38 MB, 13.92 MB, 17.32 MB, 21.10 MB, 24.87 MB
-         - BytesReadSeries[4] (500.000ms): 0, 3.22 MB, 8.03 MB, 11.45 MB, 14.51 MB, 18.08 MB, 21.69 MB, 26.13 MB
-         - BytesReadSeries[5] (500.000ms): 0, 2.98 MB, 7.18 MB, 11.05 MB, 14.75 MB, 17.84 MB, 21.33 MB, 26.54 MB
-         - BytesReadSeries[6] (500.000ms): 0, 3.12 MB, 7.48 MB, 10.64 MB, 14.10 MB, 20.08 MB, 23.69 MB, 28.41 MB
-         - BytesReadSeries[7] (500.000ms): 0, 3.16 MB, 7.59 MB, 11.14 MB, 14.49 MB, 18.07 MB, 21.98 MB, 27.14 MB
-         - BytesReadSeries[8] (500.000ms): 0, 3.10 MB, 6.95 MB, 10.85 MB, 14.38 MB, 17.42 MB, 21.01 MB, 25.38 MB
-         - BytesReadSeries[9] (500.000ms): 0, 3.65 MB, 8.45 MB, 12.16 MB, 15.35 MB, 19.08 MB, 22.33 MB, 27.49 MB
-         - BytesReadSeries[10] (500.000ms): 0, 3.60 MB, 8.13 MB, 11.91 MB, 15.24 MB, 18.23 MB, 21.49 MB, 26.10 MB
-         - BytesReadSeries[11] (500.000ms): 0, 4.21 MB, 8.31 MB, 12.18 MB, 16.06 MB, 19.85 MB, 23.21 MB, 27.91 MB
         Node Lifecycle Event Timeline[0]: 3s819ms
            - Open Started: 239.997ms (239.997ms)
            - Open Finished: 239.997ms (0.000ns)
@@ -7244,135 +6850,15 @@ F00:EXCHANGE SENDER        3     12    0.000ns    0.000ns
            - Last Batch Returned: 3s691ms (3s435ms)
            - Closed: 3s691ms (0.000ns)
          - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [0]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [1]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [2]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [3]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [4]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [5]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [6]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [7]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [8]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [9]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [10]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
-      [11]   - FooterProcessingTime: (Avg: 1.427ms ; Min: 0.000ns ; Max: 15.999ms ; Number of samples: 1824)
          - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [0]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [1]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [2]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [3]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [4]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [5]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [6]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [7]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [8]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [9]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [10]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [11]   - InitialRangeActualReservation: (Avg: 8.01 MB (8398309) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
          - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [0]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [1]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [2]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [3]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [4]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [5]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [6]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [7]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [8]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [9]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [10]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
-      [11]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
          - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [0]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [1]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [2]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [3]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [4]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [5]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [6]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [7]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [8]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [9]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [10]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
-      [11]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
          - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [0]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [1]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [2]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [3]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [4]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [5]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [6]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [7]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [8]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [9]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [10]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
-      [11]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 72.87 KB (74623) ; Max: 509.83 KB (522065) ; Number of samples: 264)
          - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [0]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [1]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [2]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [3]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [4]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [5]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [6]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [7]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [8]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [9]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [10]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
-      [11]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
          - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [0]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [1]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [2]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [3]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [4]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [5]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [6]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [7]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [8]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [9]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [10]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [11]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8398488) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
          - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [0]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [1]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [2]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [3]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [4]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [5]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [6]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [7]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [8]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [9]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [10]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
-      [11]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
          - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [0]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [1]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [2]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [3]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [4]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [5]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [6]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [7]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [8]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [9]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [10]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
-      [11]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 73.58 KB (75342) ; Max: 848.12 KB (868472) ; Number of samples: 264)
          - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [0]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [1]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [2]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [3]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [4]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [5]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [6]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [7]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [8]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [9]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [10]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
-      [11]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
          - AverageHdfsReadThreadConcurrency: mean=0.00 min=0.00 max=0.86
          - BytesRead: mean=27.44 MB (28775477) min=25.64 MB (26886807) max=29.67 MB (31108369)
          - BytesReadDataNodeCache: mean=0 min=0 max=0
diff --git a/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2 b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2
new file mode 100644
index 0000000..2b0e339
--- /dev/null
+++ b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2
@@ -0,0 +1,4 @@
+1612889575705 614b82553aefd2a9:8415494b00000000 eJyVVM1v40QUd0ullrRkaZeURO1qB4lDKm2C7dj5kvaQTZxNRJuUOO1Ke1mN7XE6wp7JjsctQXtEaIWWw5658PU3gMSd/wBxQ+LAnQsHuDGOE5qkH7Q++b03897v/d5vXmY//eCjELERyGLnYVHRrLKq6wWIXEeFlWpZU3Stolny5NtLrWQepDfbBNocn6I+5dDrYx+lEtuSlH5z3t5e2tpZernVMB4dPQYH3YYBntR6nXbnsR9XHDLqYg8BmyHIkQPOTiKLhYRgMgAQxBetEHsOoC5o+0PowTw4ChDoGftGzTTiYAA4BT6CQcgQeB6nRsylzIfERvlM+hIIO0tfSNmLfZx3IKVXzdD3IRullm/T8ubO3ZfJOiUE2VFPAixLcMj8gDNKBut1SpmDCeSU3T935w4ZsnGAKcmVdE2uqiXBdaKBXBh6HDSsVSf+ [...]
+1612889583683 874b65988023a32b:71d209e900000000 eJztfQlAU1e6cBICOSzKIlCott4uOvqeUgiI4hvnjVVcpm4FdToznedEuCh/2V4SOnU6ry8iIiIiIiIiIrKLSJEiIkWKiIhIARERkSJFwAiIiIiICP85NwvJzb1ZrM6084jkmpz1O9/5zredc77YjiywmfNxIM7fhs3y9ly0YL7TZud5LgsW2HMdeY7czQvnO3hy7V1wF3vpa7aVge0cG/OVfjwPoffn+Hp/Ic9nvbcvbmVkzWDYGCp/t2ZaTGWGWix1/XDDcmz12qWu2O8Xu61ZuWa5r6THAL6/l7cPjnnwcZ4Q98T+uhV94wf6+Xn7bcF4mKTi5kBvH0/M3wtb6RvA8+HZYRsEOObmusp1sburJFOACf0xX5wnCOTj2H9Lmsb5Xv58X56fB25na0MBwlRmGGOW6jjGR8Cw4bgH+vry+NusWLarbN5b7Onr [...]
+1612889588379 504e9a5d292585e8:7c56749700000000 eJztfQtcU1e2N0lAQ6QIVhAqtNt22sFepXnwvnXuqKAyo2gBbWf63esvQtDchoSbhLbOd79OVFS0qBQtIipFapEySFERARGRAgVFihQRkSJFVKRo0aIiAv32PiePk/PIA6m3d35GE072a/332muvvdZ+xX34926z3oqXKNcCL2n0HF++jyRQ7BstDBT6BvhKAoL8o3z9/H0C/fna10yXCe6z3JxD5eIotfR9SaRCLZZFSmMlLjxXGxs3e+Pvrqwp01mJU4JD5i1fCJYsDQ4Bb88NDwsNWxiLU4xTKmKkMgmIUkrEakk0+GAN+qaMl8ul8tVADPCMq+KlsmigiAGhsXFimdgbLFdJQHjI4pC5ESF4pAqoFSBWIlbFKyXgv/CiJcoYhTJWLI+SeLu70UCYztpq40Wth6EGNm4TI+JjY8XKtS5s98Vur8yNjpWq [...]
+1612889599072 9f4b30ece90cd333:2acc7b4c00000000 eJzFVk1s21QcT8q0lW7raLWURNvEQ0KilZrMseM6ttRDSNw1ovlYnHaIA9Wz/Xdi4Y/s+bmjCCHBAco0CY4cqh24DpAQ4rYTTNoFcYZpJ86cp0pw4DlO2zRtx3qo8MHy+7+P/+/3+388Zz5Kz98MgWyiWdtclK2CLnBggMwZpiAICo8NQ9ILBjd45lJnM/PpqaqHDWpvQNun2GnbLqQmZhKJ9MsHxzPJ6SvJremK+tbqDVRrVFR0q9SqV+s33Nhjj/iW7QAyCGAKJrrTjUYk9Dzb6yCM4o16aDsm8i1UdXvYwTm0GgBqqStqSVPjyQBRH7mAg5AAuh0fDcTyiYs9A3KZ9BEQriTvJmYP89hnkEif00LXxWQzNXYSylNXLm9Nln3PAyPixMCSCYqJG1Die53zZd8npu1h6pPX9s3ZJgHDDmzfy0pigVN4iWk9 [...]
diff --git a/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_default.expected.txt b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_default.expected.txt
new file mode 100644
index 0000000..9d15fbc
--- /dev/null
+++ b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_default.expected.txt
@@ -0,0 +1,2449 @@
+Query (id=614b82553aefd2a9:8415494b00000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:52:55.589910000
+    End Time: 2021-02-09 08:52:55.705400000
+    Query Type: SET
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: set all
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): TIMEZONE=America/Los_Angeles
+    Query Options (set by configuration and planner): TIMEZONE=America/Los_Angeles
+    Query Compilation: 69.304ms
+       - Metadata of all 0 tables cached: 29.226ms (29.226ms)
+       - Analysis finished: 48.377ms (19.150ms)
+       - Authorization finished (noop): 50.900ms (2.523ms)
+       - Planning finished: 69.304ms (18.404ms)
+    Query Timeline: 115.484ms
+       - Query submitted: 58.193us (58.193us)
+       - Planning finished: 113.518ms (113.460ms)
+       - Rows available: 114.395ms (877.040us)
+       - Unregister query: 115.484ms (1.089ms)
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - ClientFetchWaitTimer: 1.023ms
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 0 (0)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 0
+     - RowMaterializationTimer: 0.000ns
+     - TotalTime: 0.000ns
+Query (id=874b65988023a32b:71d209e900000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:53:02.023838000
+    End Time: 2021-02-09 08:53:03.677563000
+    Query Type: QUERY
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: SELECT COUNT(*), ss_sold_date_sk FROM tpcds_parquet.store_sales GROUP BY ss_sold_date_sk
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Query Options (set by configuration and planner): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Plan: 
+----------------
+Max Per-Host Resource Reservation: Memory=16.25MB Threads=9
+Per-Host Resource Estimates: Memory=145MB
+Analyzed query: SELECT count(*), ss_sold_date_sk FROM tpcds_parquet.store_sales
+GROUP BY ss_sold_date_sk
+
+F02:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
+|  Per-Instance Resources: mem-estimate=199.12KB mem-reservation=0B thread-reservation=1
+PLAN-ROOT SINK
+|  output exprs: count(*), ss_sold_date_sk
+|  mem-estimate=0B mem-reservation=0B thread-reservation=0
+|
+04:EXCHANGE [UNPARTITIONED]
+|  mem-estimate=199.12KB mem-reservation=0B thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 03(GETNEXT)
+|
+F01:PLAN FRAGMENT [HASH(ss_sold_date_sk)] hosts=3 instances=12
+Per-Instance Resources: mem-estimate=10.19MB mem-reservation=1.94MB thread-reservation=1
+03:AGGREGATE [FINALIZE]
+|  output: count:merge(*)
+|  group by: ss_sold_date_sk
+|  mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 03(GETNEXT), 00(OPEN)
+|
+02:EXCHANGE [HASH(ss_sold_date_sk)]
+|  mem-estimate=199.12KB mem-reservation=0B thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 00(GETNEXT)
+|
+F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=12
+Per-Instance Resources: mem-estimate=26.00MB mem-reservation=2.12MB thread-reservation=1
+01:AGGREGATE [STREAMING]
+|  output: sum_init_zero(tpcds_parquet.store_sales.stats: num_rows)
+|  group by: ss_sold_date_sk
+|  mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 00(GETNEXT)
+|
+00:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
+   HDFS partitions=1824/1824 files=1824 size=196.95MB
+   stored statistics:
+     table: rows=2.88M size=196.95MB
+     partitions: 1824/1824 rows=2.88M
+     columns: all
+   extrapolated-rows=disabled max-scan-range-rows=130.09K
+   mem-estimate=16.00MB mem-reservation=128.00KB thread-reservation=0
+   tuple-ids=0 row-size=12B cardinality=2.88M
+   in pipelines: 00(GETNEXT)
+----------------
+    Estimated Per-Host Mem: 152014464
+    Request Pool: default-pool
+    Per Host Min Memory Reservation: tarmstrong-Precision-7540:27001(16.25 MB) tarmstrong-Precision-7540:27000(16.25 MB) tarmstrong-Precision-7540:27002(16.25 MB)
+    Per Host Number of Fragment Instances: tarmstrong-Precision-7540:27001(8) tarmstrong-Precision-7540:27000(9) tarmstrong-Precision-7540:27002(8)
+    Admission result: Admitted immediately
+    Cluster Memory Admitted: 434.92 MB
+    Executor Group: default
+    ExecSummary: 
+Operator              #Hosts  #Inst   Avg Time   Max Time  #Rows  Est. #Rows    Peak Mem  Est. Peak Mem  Detail                    
+-----------------------------------------------------------------------------------------------------------------------------------
+F02:ROOT                   1      1    2.601ms    2.601ms                              0              0                            
+04:EXCHANGE                1      1    4.187ms    4.187ms  1.82K       1.82K  1000.00 KB      199.12 KB  UNPARTITIONED             
+F01:EXCHANGE SENDER        3     12  629.006us  703.273us                        9.84 KB              0                            
+03:AGGREGATE               3     12    4.091ms    4.605ms  1.82K       1.82K     2.15 MB       10.00 MB  FINALIZE                  
+02:EXCHANGE                3     12  337.627us  367.352us  1.82K       1.82K   104.00 KB      199.12 KB  HASH(ss_sold_date_sk)     
+F00:EXCHANGE SENDER        3     12    1.356ms    6.539ms                      166.12 KB              0                            
+01:AGGREGATE               3     12    6.511ms    8.827ms  1.82K       1.82K     2.02 MB       10.00 MB  STREAMING                 
+00:SCAN HDFS               3     12    1s007ms    1s044ms  1.82K       2.88M   132.00 KB       16.00 MB  tpcds_parquet.store_sales
+    Errors: 
+    Query Compilation: 336.500ms
+       - Metadata of all 1 tables cached: 6.915ms (6.915ms)
+       - Analysis finished: 20.406ms (13.491ms)
+       - Authorization finished (noop): 20.826ms (419.852us)
+       - Value transfer graph computed: 38.930ms (18.103ms)
+       - Single node plan created: 227.470ms (188.539ms)
+       - Runtime filters computed: 232.776ms (5.306ms)
+       - Distributed plan created: 233.721ms (944.683us)
+       - Parallel plans created: 236.028ms (2.307ms)
+       - Planning finished: 336.500ms (100.472ms)
+    Query Timeline: 1s654ms
+       - Query submitted: 61.395us (61.395us)
+       - Planning finished: 370.769ms (370.708ms)
+       - Submit for admission: 370.971ms (201.925us)
+       - Completed admission: 390.364ms (19.392ms)
+       - Ready to start on 3 backends: 391.336ms (972.178us)
+       - All 3 execution backends (25 fragment instances) started: 408.377ms (17.040ms)
+       - Rows available: 1s617ms (1s209ms)
+       - First row fetched: 1s630ms (12.597ms)
+       - Last row fetched: 1s642ms (12.643ms)
+       - Released admission control resources: 1s653ms (10.782ms)
+       - Unregister query: 1s654ms (327.299us)
+     - AdmissionControlTimeSinceLastUpdate: 108.000ms
+     - ComputeScanRangeAssignmentTimer: 16.873ms
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - ClientFetchWaitTimer: 151.777us
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 1.82K (1824)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 50.44 K/sec
+     - RowMaterializationTimer: 36.164ms
+     - TotalTime: 0.000ns
+  Execution Profile 874b65988023a32b:71d209e900000000:
+    Number of filters: 0
+    Filter routing table: 
+ ID  Src. Node  Tgt. Node(s)  Target type  Partition filter  Pending (Expected)  First arrived  Completed  Enabled  Bloom Size   Est fpp
+----------------------------------------------------------------------------------------------------------------------------------------
+    Backend startup latencies: Count: 3, min / max: 12ms / 15ms, 25th %-ile: 12ms, 50th %-ile: 13ms, 75th %-ile: 13ms, 90th %-ile: 15ms, 95th %-ile: 15ms, 99.9th %-ile: 15ms
+    Slowest backend to start up: tarmstrong-Precision-7540:27002
+    Per Node Peak Memory Usage: tarmstrong-Precision-7540:27000(17.96 MB) tarmstrong-Precision-7540:27002(18.00 MB) tarmstrong-Precision-7540:27001(18.08 MB)
+    Per Node Bytes Read: tarmstrong-Precision-7540:27000(47.32 MB) tarmstrong-Precision-7540:27002(47.47 MB) tarmstrong-Precision-7540:27001(47.31 MB)
+    Per Node User Time: tarmstrong-Precision-7540:27000(500.073ms) tarmstrong-Precision-7540:27002(482.462ms) tarmstrong-Precision-7540:27001(443.702ms)
+    Per Node System Time: tarmstrong-Precision-7540:27000(24.884ms) tarmstrong-Precision-7540:27002(12.613ms) tarmstrong-Precision-7540:27001(47.738ms)
+     - ExchangeScanRatio: 0.00
+     - FiltersReceived: 0 (0)
+     - FinalizationTimer: 0.000ns
+     - InactiveTotalTime: 0.000ns
+     - InnerNodeSelectivityRatio: 1.03
+     - NumBackends: 3 (3)
+     - NumCompletedBackends: 3 (3)
+     - NumFragmentInstances: 25 (25)
+     - NumFragments: 3 (3)
+     - TotalBytesRead: 142.10 MB (149006243)
+     - TotalBytesSent: 48.76 KB (49926)
+     - TotalCpuTime: 1s511ms
+     - TotalInnerBytesSent: 24.70 KB (25297)
+     - TotalScanBytesSent: 24.05 KB (24629)
+     - TotalTime: 1s263ms
+    Per Node Profiles:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+      tarmstrong-Precision-7540:27000:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 1 (1)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 26ms
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F02:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 10 (10)
+             - CodegenTotalWallClockTime: 50.265ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 35.400ms
+             - CodegenVoluntaryContextSwitches: 19 (19)
+             - CompileTime: 3.232ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 170.687us
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 26.605ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 2 (2)
+             - NumInstructions: 35 (35)
+             - OptimizationTime: 21.896ms
+             - PeakMemoryUsage: 17.50 KB (17920)
+             - PrepareTime: 23.671ms
+             - TotalTime: 50.275ms
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 11 (11)
+             - CodegenTotalWallClockTime: 100.690ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 79.054ms
+             - CodegenVoluntaryContextSwitches: 32 (32)
+             - CompileTime: 6.441ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 3.551ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 81.764ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 38 (38)
+             - NumInstructions: 757 (757)
+             - OptimizationTime: 70.636ms
+             - PeakMemoryUsage: 378.50 KB (387584)
+             - PrepareTime: 18.938ms
+             - TotalTime: 100.703ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 30 (30)
+             - CodegenTotalWallClockTime: 103.725ms
+               - CodegenSysTime: 12.235ms
+               - CodegenUserTime: 84.369ms
+             - CodegenVoluntaryContextSwitches: 30 (30)
+             - CompileTime: 5.503ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 6.608ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 80.087ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 54 (54)
+             - NumInstructions: 1.31K (1306)
+             - OptimizationTime: 66.685ms
+             - PeakMemoryUsage: 653.00 KB (668672)
+             - PrepareTime: 23.649ms
+             - TotalTime: 103.735ms
+      tarmstrong-Precision-7540:27002:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 1 (1)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 10ms
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 2 (2)
+             - CodegenTotalWallClockTime: 87.886ms
+               - CodegenSysTime: 4.014ms
+               - CodegenUserTime: 82.635ms
+             - CodegenVoluntaryContextSwitches: 1 (1)
+             - CompileTime: 6.882ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 4.045ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 65.241ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 38 (38)
+             - NumInstructions: 757 (757)
+             - OptimizationTime: 53.145ms
+             - PeakMemoryUsage: 378.50 KB (387584)
+             - PrepareTime: 22.659ms
+             - TotalTime: 87.900ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 10 (10)
+             - CodegenTotalWallClockTime: 105.531ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 102.902ms
+             - CodegenVoluntaryContextSwitches: 1 (1)
+             - CompileTime: 7.686ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 5.646ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 89.936ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 54 (54)
+             - NumInstructions: 1.31K (1306)
+             - OptimizationTime: 75.584ms
+             - PeakMemoryUsage: 653.00 KB (668672)
+             - PrepareTime: 15.609ms
+             - TotalTime: 105.544ms
+      tarmstrong-Precision-7540:27001:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 1 (1)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 14ms
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 7 (7)
+             - CodegenTotalWallClockTime: 88.042ms
+               - CodegenSysTime: 3.992ms
+               - CodegenUserTime: 83.491ms
+             - CodegenVoluntaryContextSwitches: 10 (10)
+             - CompileTime: 6.530ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 4.560ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 64.300ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 38 (38)
+             - NumInstructions: 757 (757)
+             - OptimizationTime: 51.874ms
+             - PeakMemoryUsage: 378.50 KB (387584)
+             - PrepareTime: 23.759ms
+             - TotalTime: 88.057ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 3 (3)
+             - CodegenTotalWallClockTime: 112.599ms
+               - CodegenSysTime: 8.048ms
+               - CodegenUserTime: 92.568ms
+             - CodegenVoluntaryContextSwitches: 29 (29)
+             - CompileTime: 6.610ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 6.594ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 85.473ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 54 (54)
+             - NumInstructions: 1.31K (1306)
+             - OptimizationTime: 70.779ms
+             - PeakMemoryUsage: 653.00 KB (668672)
+             - PrepareTime: 27.139ms
+             - TotalTime: 112.612ms
+    Coordinator Fragment F02:
+    Instances: Instance 874b65988023a32b:71d209e900000000 (host=tarmstrong-Precision-7540:27000)
+      Last report received time[0]: 2021-02-09 08:53:03.675
+       - MemoryUsage[0] (500.000ms): 8.00 KB, 8.00 KB, 8.00 KB
+      Fragment Instance Lifecycle Event Timeline[0]: 1s208ms
+         - Prepare Finished: 891.562us (891.562us)
+         - Open Finished: 1s183ms (1s182ms)
+         - First Batch Produced: 1s194ms (11.546ms)
+         - First Batch Sent: 1s196ms (1.082ms)
+         - ExecInternal Finished: 1s208ms (12.648ms)
+       - AverageThreadTokens: 0.00
+       - BytesAssigned: 0
+       - CompletionTime: 1s247ms
+       - ExchangeScanRatio: 0.00
+       - ExecutionRate: 0.00 /sec
+       - InactiveTotalTime: 0.000ns
+       - PeakMemoryUsage: 1008.00 KB (1032192)
+       - PeakReservation: 0
+       - PeakUsedReservation: 0
+       - PerHostPeakMemUsage: 17.96 MB (18831232)
+       - RowsProduced: 1.82K (1824)
+       - TotalNetworkReceiveTime: 1s151ms
+       - TotalNetworkSendTime: 0.000ns
+       - TotalStorageWaitTime: 0.000ns
+       - TotalThreadsInvoluntaryContextSwitches: 14 (14)
+       - TotalThreadsTotalWallClockTime: 1s207ms
+         - TotalThreadsSysTime: 0.000ns
+         - TotalThreadsUserTime: 42.441ms
+       - TotalThreadsVoluntaryContextSwitches: 140 (140)
+       - TotalTime: 0.000ns
+      Fragment Instance Lifecycle Timings:
+         - ExecTime: 25.262ms
+           - ExecTreeExecTime: 22.256ms
+         - InactiveTotalTime: 0.000ns
+         - OpenTime: 1s182ms
+           - ExecTreeOpenTime: 1s132ms
+         - PrepareTime: 223.242us
+           - ExecTreePrepareTime: 132.433us
+         - TotalTime: 0.000ns
+      PLAN_ROOT_SINK:(Total: 2.601ms, non-child: 2.601ms, % non-child: 100.00%)
+         - InactiveTotalTime: 0.000ns
+         - PeakMemoryUsage: 0
+         - RowsSent: 1.82K (1824)
+         - RowsSentRate: 701.10 K/sec
+         - TotalTime: 2.601ms
+      EXCHANGE_NODE (id=4):(Total: 1s154ms, non-child: 4.187ms, % non-child: 0.36%)
+        Node Lifecycle Event Timeline[0]: 1s208ms
+           - Open Started: 51.273ms (51.273ms)
+           - Open Finished: 1s183ms (1s132ms)
+           - First Batch Requested: 1s183ms (25.306us)
+           - First Batch Returned: 1s194ms (11.541ms)
+           - Last Batch Returned: 1s206ms (11.991ms)
+           - Closed: 1s208ms (1.711ms)
+         - ConvertRowBatchTime: 1.709ms
+         - InactiveTotalTime: 1s150ms
+         - PeakMemoryUsage: 1000.00 KB (1024000)
+         - RowsReturned: 1.82K (1824)
+         - RowsReturnedRate: 1.58 K/sec
+         - TotalTime: 1s154ms
+        Buffer pool:
+           - AllocTime: 951.115us
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 3.00 MB (3145728)
+           - CumulativeAllocations: 384 (384)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 1000.00 KB (1024000)
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 1000.00 KB (1024000)
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - SystemAllocTime: 363.515us
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        Dequeue:
+           - BytesDequeued[0] (500.000ms): 0, 0, 0
+           - FirstBatchWaitTime: 1s132ms
+           - InactiveTotalTime: 0.000ns
+           - TotalBytesDequeued: 37.41 KB (38304)
+           - TotalGetBatchTime: 1s151ms
+             - DataWaitTime: 1s150ms
+           - TotalTime: 0.000ns
+        Enqueue:
+           - BytesReceived[0] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[0] (500.000ms): 0, 0, 0
+           - DispatchTime: (Avg: 85.578us ; Min: 29.095us ; Max: 738.280us ; Number of samples: 192)
+           - DeserializeRowBatchTime: 3.977ms
+           - InactiveTotalTime: 0.000ns
+           - TotalBatchesEnqueued: 192 (192)
+           - TotalBatchesReceived: 192 (192)
+           - TotalBytesReceived: 24.70 KB (25297)
+           - TotalEarlySenders: 0 (0)
+           - TotalEosReceived: 12 (12)
+           - TotalHasDeferredRPCsTime: 0.000ns
+           - TotalRPCsDeferred: 0 (0)
+           - TotalTime: 0.000ns
+    Fragment F01 [12 instances]:
+    Instances: Instance 874b65988023a32b:71d209e90000000d (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e90000000e (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e90000000f (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000010 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000011 (host=tarmstrong-Precision-7540:27000), Instance 874b65988023a32b:71d209e900000012 (host=tarmstrong-Pr [...]
+      Last report received time[0-3]: 2021-02-09 08:53:03.669
+      Last report received time[8-11]: 2021-02-09 08:53:03.674
+      Last report received time[4-7]: 2021-02-09 08:53:03.675
+       - MemoryUsage[0] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - ThreadUsage[0] (500.000ms): 1, 1, 1
+      Fragment Instance Lifecycle Event Timeline[0]: 1s199ms
+         - Prepare Finished: 9.319ms (9.319ms)
+         - Open Finished: 1s180ms (1s171ms)
+         - First Batch Produced: 1s180ms (56.379us)
+         - First Batch Sent: 1s180ms (25.630us)
+         - ExecInternal Finished: 1s199ms (19.087ms)
+      Fragment Instance Lifecycle Event Timeline[1]: 1s201ms
+         - Prepare Finished: 9.319ms (9.319ms)
+         - Open Finished: 1s180ms (1s171ms)
+         - First Batch Produced: 1s180ms (60.722us)
+         - First Batch Sent: 1s180ms (40.555us)
+         - ExecInternal Finished: 1s201ms (20.592ms)
+      Fragment Instance Lifecycle Event Timeline[2]: 1s201ms
+         - Prepare Finished: 13.196ms (13.196ms)
+         - Open Finished: 1s181ms (1s167ms)
+         - First Batch Produced: 1s181ms (60.527us)
+         - First Batch Sent: 1s181ms (43.214us)
+         - ExecInternal Finished: 1s201ms (19.769ms)
+      Fragment Instance Lifecycle Event Timeline[3]: 1s199ms
+         - Prepare Finished: 21.292ms (21.292ms)
+         - Open Finished: 1s180ms (1s159ms)
+         - First Batch Produced: 1s180ms (57.789us)
+         - First Batch Sent: 1s180ms (39.978us)
+         - ExecInternal Finished: 1s199ms (18.846ms)
+      Fragment Instance Lifecycle Event Timeline[4]: 1s198ms
+         - Prepare Finished: 1.121ms (1.121ms)
+         - Open Finished: 1s183ms (1s182ms)
+         - First Batch Produced: 1s183ms (43.818us)
+         - First Batch Sent: 1s183ms (25.883us)
+         - ExecInternal Finished: 1s198ms (14.434ms)
+      Fragment Instance Lifecycle Event Timeline[5]: 1s198ms
+         - Prepare Finished: 3.848ms (3.848ms)
+         - Open Finished: 1s183ms (1s179ms)
+         - First Batch Produced: 1s183ms (52.235us)
+         - First Batch Sent: 1s183ms (36.362us)
+         - ExecInternal Finished: 1s198ms (15.194ms)
+      Fragment Instance Lifecycle Event Timeline[6]: 1s197ms
+         - Prepare Finished: 12.230ms (12.230ms)
+         - Open Finished: 1s183ms (1s171ms)
+         - First Batch Produced: 1s183ms (60.463us)
+         - First Batch Sent: 1s183ms (32.628us)
+         - ExecInternal Finished: 1s197ms (14.152ms)
+      Fragment Instance Lifecycle Event Timeline[7]: 1s200ms
+         - Prepare Finished: 12.775ms (12.775ms)
+         - Open Finished: 1s186ms (1s173ms)
+         - First Batch Produced: 1s186ms (41.109us)
+         - First Batch Sent: 1s186ms (27.478us)
+         - ExecInternal Finished: 1s200ms (14.440ms)
+      Fragment Instance Lifecycle Event Timeline[8]: 1s204ms
+         - Prepare Finished: 34.481ms (34.481ms)
+         - Open Finished: 1s186ms (1s152ms)
+         - First Batch Produced: 1s186ms (63.682us)
+         - First Batch Sent: 1s186ms (40.819us)
+         - ExecInternal Finished: 1s204ms (18.074ms)
+      Fragment Instance Lifecycle Event Timeline[9]: 1s203ms
+         - Prepare Finished: 42.591ms (42.591ms)
+         - Open Finished: 1s186ms (1s144ms)
+         - First Batch Produced: 1s186ms (69.931us)
+         - First Batch Sent: 1s186ms (46.787us)
+         - ExecInternal Finished: 1s203ms (16.231ms)
+      Fragment Instance Lifecycle Event Timeline[10]: 1s205ms
+         - Prepare Finished: 42.591ms (42.591ms)
+         - Open Finished: 1s186ms (1s143ms)
+         - First Batch Produced: 1s186ms (64.679us)
+         - First Batch Sent: 1s186ms (33.532us)
+         - ExecInternal Finished: 1s205ms (18.804ms)
+      Fragment Instance Lifecycle Event Timeline[11]: 1s205ms
+         - Prepare Finished: 50.498ms (50.498ms)
+         - Open Finished: 1s187ms (1s136ms)
+         - First Batch Produced: 1s187ms (50.358us)
+         - First Batch Sent: 1s187ms (28.799us)
+         - ExecInternal Finished: 1s205ms (17.688ms)
+       - AverageThreadTokens: mean=1.00 min=1.00 max=1.00
+       - BytesAssigned: mean=0 min=0 max=0
+       - CompletionTime: mean=1s242ms min=1s237ms max=1s247ms
+       - ExchangeScanRatio: mean=0.00 min=0.00 max=0.00
+       - ExecutionRate: mean=0.00 /sec min=0.00 /sec max=0.00 /sec
+       - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+       - PeakMemoryUsage: mean=2.26 MB (2374624) min=2.26 MB (2374624) max=2.26 MB (2374624)
+       - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) max=2.12 MB (2228224)
+       - PeakUsedReservation: mean=0 min=0 max=0
+       - PerHostPeakMemUsage: mean=18.01 MB (18889170) min=17.96 MB (18831232) max=18.08 MB (18963196)
+       - RowsProduced: mean=152 (152) min=125 (125) max=180 (180)
+       - TotalNetworkReceiveTime: mean=1s074ms min=1s061ms max=1s081ms
+       - TotalNetworkSendTime: mean=14.875ms min=11.322ms max=18.352ms
+       - TotalStorageWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+       - TotalThreadsInvoluntaryContextSwitches: mean=2 (2) min=0 (0) max=13 (13)
+       - TotalThreadsTotalWallClockTime: mean=1s180ms min=1s154ms max=1s197ms
+         - TotalThreadsSysTime: mean=992.833us min=0.000ns max=7.825ms
+         - TotalThreadsUserTime: mean=26.007ms min=5.372ms max=88.431ms
+       - TotalThreadsVoluntaryContextSwitches: mean=32 (32) min=25 (25) max=59 (59)
+       - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      Fragment Instance Lifecycle Timings [12 instances]:
+         - ExecTime: mean=17.341ms min=14.208ms max=20.658ms
+           - ExecTreeExecTime: mean=1.663ms min=1.482ms max=2.454ms
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - OpenTime: mean=1s162ms min=1s136ms max=1s182ms
+           - ExecTreeOpenTime: mean=1s076ms min=1s063ms max=1s084ms
+         - PrepareTime: mean=482.394us min=330.317us max=592.865us
+           - ExecTreePrepareTime: mean=286.959us min=190.510us max=376.246us
+         - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      KrpcDataStreamSender (dst_id=4) [12 instances]:(Total: 15.504ms, non-child: 629.006us, % non-child: 4.06%)
+        ExecOption[0-11]: Unpartitioned Sender Codegen Disabled: not needed
+         - BytesSent[0] (500.000ms): 0, 0, 0
+         - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+         - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+         - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+         - EosSent: mean=1 (1) min=1 (1) max=1 (1)
+         - InactiveTotalTime: mean=14.875ms min=11.322ms max=18.352ms
+         - PeakMemoryUsage: mean=9.84 KB (10080) min=9.84 KB (10080) max=9.84 KB (10080)
+         - RowsSent: mean=152 (152) min=125 (125) max=180 (180)
+         - RpcFailure: mean=0 (0) min=0 (0) max=0 (0)
+         - RpcRetry: mean=0 (0) min=0 (0) max=0 (0)
+         - SerializeBatchTime: mean=126.264us min=112.853us max=149.390us
+         - TotalBytesSent: mean=2.06 KB (2108) min=1.73 KB (1776) max=2.40 KB (2457)
+         - TotalTime: mean=15.504ms min=11.856ms max=19.007ms
+         - UncompressedRowBatchSize: mean=3.12 KB (3192) min=2.56 KB (2625) max=3.69 KB (3780)
+      AGGREGATION_NODE (id=3) [12 instances]:(Total: 1s078ms, non-child: 4.091ms, % non-child: 0.38%)
+        Node Lifecycle Event Timeline[0]: 1s198ms
+           - Open Started: 97.335ms (97.335ms)
+           - Open Finished: 1s180ms (1s083ms)
+           - First Batch Requested: 1s180ms (20.882us)
+           - First Batch Returned: 1s180ms (45.469us)
+           - Last Batch Returned: 1s198ms (18.004ms)
+           - Closed: 1s198ms (91.614us)
+        Node Lifecycle Event Timeline[1]: 1s199ms
+           - Open Started: 97.336ms (97.336ms)
+           - Open Finished: 1s180ms (1s082ms)
+           - First Batch Requested: 1s180ms (24.205us)
+           - First Batch Returned: 1s180ms (57.179us)
+           - Last Batch Returned: 1s199ms (19.207ms)
+           - Closed: 1s199ms (90.315us)
+        Node Lifecycle Event Timeline[2]: 1s200ms
+           - Open Started: 97.342ms (97.342ms)
+           - Open Finished: 1s181ms (1s083ms)
+           - First Batch Requested: 1s181ms (25.369us)
+           - First Batch Returned: 1s181ms (56.910us)
+           - Last Batch Returned: 1s199ms (18.694ms)
+           - Closed: 1s200ms (88.529us)
+        Node Lifecycle Event Timeline[3]: 1s198ms
+           - Open Started: 97.345ms (97.345ms)
+           - Open Finished: 1s180ms (1s083ms)
+           - First Batch Requested: 1s180ms (24.634us)
+           - First Batch Returned: 1s180ms (53.645us)
+           - Last Batch Returned: 1s197ms (17.543ms)
+           - Closed: 1s198ms (141.682us)
+        Node Lifecycle Event Timeline[4]: 1s196ms
+           - Open Started: 101.907ms (101.907ms)
+           - Open Finished: 1s183ms (1s081ms)
+           - First Batch Requested: 1s183ms (20.669us)
+           - First Batch Returned: 1s183ms (41.095us)
+           - Last Batch Returned: 1s196ms (12.507ms)
+           - Closed: 1s196ms (116.106us)
+        Node Lifecycle Event Timeline[5]: 1s196ms
+           - Open Started: 101.910ms (101.910ms)
+           - Open Finished: 1s183ms (1s081ms)
+           - First Batch Requested: 1s183ms (26.277us)
+           - First Batch Returned: 1s183ms (49.744us)
+           - Last Batch Returned: 1s196ms (13.328ms)
+           - Closed: 1s196ms (90.392us)
+        Node Lifecycle Event Timeline[6]: 1s195ms
+           - Open Started: 101.924ms (101.924ms)
+           - Open Finished: 1s183ms (1s081ms)
+           - First Batch Requested: 1s183ms (23.064us)
+           - First Batch Returned: 1s183ms (57.064us)
+           - Last Batch Returned: 1s195ms (11.779ms)
+           - Closed: 1s195ms (122.173us)
+        Node Lifecycle Event Timeline[7]: 1s200ms
+           - Open Started: 101.921ms (101.921ms)
+           - Open Finished: 1s186ms (1s084ms)
+           - First Batch Requested: 1s186ms (29.063us)
+           - First Batch Returned: 1s186ms (38.678us)
+           - Last Batch Returned: 1s199ms (13.658ms)
+           - Closed: 1s200ms (124.149us)
+        Node Lifecycle Event Timeline[8]: 1s202ms
+           - Open Started: 122.660ms (122.660ms)
+           - Open Finished: 1s186ms (1s063ms)
+           - First Batch Requested: 1s186ms (46.917us)
+           - First Batch Returned: 1s186ms (60.380us)
+           - Last Batch Returned: 1s202ms (15.713ms)
+           - Closed: 1s202ms (90.718us)
+        Node Lifecycle Event Timeline[9]: 1s201ms
+           - Open Started: 122.681ms (122.681ms)
+           - Open Finished: 1s186ms (1s063ms)
+           - First Batch Requested: 1s186ms (26.927us)
+           - First Batch Returned: 1s186ms (65.865us)
+           - Last Batch Returned: 1s201ms (14.984ms)
+           - Closed: 1s201ms (94.386us)
+        Node Lifecycle Event Timeline[10]: 1s205ms
+           - Open Started: 122.676ms (122.676ms)
+           - Open Finished: 1s186ms (1s063ms)
+           - First Batch Requested: 1s186ms (36.408us)
+           - First Batch Returned: 1s186ms (60.028us)
+           - Last Batch Returned: 1s204ms (18.392ms)
+           - Closed: 1s205ms (168.330us)
+        Node Lifecycle Event Timeline[11]: 1s203ms
+           - Open Started: 122.686ms (122.686ms)
+           - Open Finished: 1s187ms (1s064ms)
+           - First Batch Requested: 1s187ms (23.976us)
+           - First Batch Returned: 1s187ms (47.235us)
+           - Last Batch Returned: 1s203ms (16.034ms)
+           - Closed: 1s203ms (99.695us)
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - PeakMemoryUsage: mean=2.15 MB (2249856) min=2.15 MB (2249856) max=2.15 MB (2249856)
+         - RowsReturned: mean=152 (152) min=125 (125) max=180 (180)
+         - RowsReturnedRate: mean=140.00 /sec min=117.00 /sec max=168.00 /sec
+         - TotalTime: mean=1s078ms min=1s065ms max=1s086ms
+        GroupingAggregator 0 [12 instances]:
+          ExecOption[0-11]: Codegen Enabled
+           - BuildTime: mean=302.909us min=228.963us max=373.636us
+           - GetResultsTime: mean=698.381us min=658.962us max=917.383us
+           - HTResizeTime: mean=2.314us min=1.188us max=3.632us
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - LargestPartitionPercent: mean=9 (9) min=8 (8) max=11 (11)
+           - MaxPartitionLevel: mean=0 (0) min=0 (0) max=0 (0)
+           - NumRepartitions: mean=0 (0) min=0 (0) max=0 (0)
+           - PartitionsCreated: mean=16 (16) min=16 (16) max=16 (16)
+           - PeakMemoryUsage: mean=2.14 MB (2245760) min=2.14 MB (2245760) max=2.14 MB (2245760)
+           - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) max=2.12 MB (2228224)
+           - PeakUsedReservation: mean=0 min=0 max=0
+           - RowsRepartitioned: mean=0 (0) min=0 (0) max=0 (0)
+           - RowsReturned: mean=152 (152) min=125 (125) max=180 (180)
+           - SpilledPartitions: mean=0 (0) min=0 (0) max=0 (0)
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+          Buffer pool [12 instances]:
+             - AllocTime: mean=64.036us min=49.078us max=73.886us
+             - CompressionTime: mean=0.000ns min=0.000ns max=0.000ns
+             - CumulativeAllocationBytes: mean=1.25 MB (1310720) min=1.25 MB (1310720) max=1.25 MB (1310720)
+             - CumulativeAllocations: mean=20 (20) min=20 (20) max=20 (20)
+             - EncryptionTime: mean=0.000ns min=0.000ns max=0.000ns
+             - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) max=2.12 MB (2228224)
+             - PeakUnpinnedBytes: mean=0 min=0 max=0
+             - PeakUsedReservation: mean=1.25 MB (1310720) min=1.25 MB (1310720) max=1.25 MB (1310720)
+             - ReadIoBytes: mean=0 min=0 max=0
+             - ReadIoOps: mean=0 (0) min=0 (0) max=0 (0)
+             - ReadIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+             - SystemAllocTime: mean=41.434us min=28.587us max=58.118us
+             - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - WriteIoBytes: mean=0 min=0 max=0
+             - WriteIoOps: mean=0 (0) min=0 (0) max=0 (0)
+             - WriteIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+          Hash Table [12 instances]:
+             - HashBuckets: mean=16.38K (16384) min=16.38K (16384) max=16.38K (16384)
+             - HashCollisions: mean=0 (0) min=0 (0) max=0 (0)
+             - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - Probes: mean=152 (152) min=125 (125) max=180 (180)
+             - Resizes: mean=0 (0) min=0 (0) max=0 (0)
+             - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - Travel: mean=0 (0) min=0 (0) max=0 (0)
+      EXCHANGE_NODE (id=2) [12 instances]:(Total: 1s074ms, non-child: 337.628us, % non-child: 0.03%)
+        Node Lifecycle Event Timeline[0]: 1s180ms
+           - Open Started: 97.338ms (97.338ms)
+           - Open Finished: 1s092ms (995.404ms)
+           - First Batch Requested: 1s094ms (1.644ms)
+           - First Batch Returned: 1s180ms (85.633ms)
+           - Last Batch Returned: 1s180ms (638.000ns)
+           - Closed: 1s180ms (354.274us)
+        Node Lifecycle Event Timeline[1]: 1s180ms
+           - Open Started: 97.338ms (97.338ms)
+           - Open Finished: 1s093ms (995.902ms)
+           - First Batch Requested: 1s094ms (1.737ms)
+           - First Batch Returned: 1s179ms (84.907ms)
+           - Last Batch Returned: 1s179ms (835.000ns)
+           - Closed: 1s180ms (383.884us)
+        Node Lifecycle Event Timeline[2]: 1s181ms
+           - Open Started: 97.344ms (97.344ms)
+           - Open Finished: 1s092ms (995.498ms)
+           - First Batch Requested: 1s094ms (1.802ms)
+           - First Batch Returned: 1s180ms (86.038ms)
+           - Last Batch Returned: 1s180ms (683.000ns)
+           - Closed: 1s181ms (419.046us)
+        Node Lifecycle Event Timeline[3]: 1s180ms
+           - Open Started: 97.346ms (97.346ms)
+           - Open Finished: 1s094ms (997.471ms)
+           - First Batch Requested: 1s096ms (1.694ms)
+           - First Batch Returned: 1s179ms (83.459ms)
+           - Last Batch Returned: 1s179ms (1.132us)
+           - Closed: 1s180ms (369.462us)
+        Node Lifecycle Event Timeline[4]: 1s183ms
+           - Open Started: 101.909ms (101.909ms)
+           - Open Finished: 1s094ms (992.867ms)
+           - First Batch Requested: 1s096ms (1.500ms)
+           - First Batch Returned: 1s183ms (87.094ms)
+           - Last Batch Returned: 1s183ms (461.000ns)
+           - Closed: 1s183ms (387.179us)
+        Node Lifecycle Event Timeline[5]: 1s183ms
+           - Open Started: 101.912ms (101.912ms)
+           - Open Finished: 1s094ms (992.217ms)
+           - First Batch Requested: 1s095ms (1.821ms)
+           - First Batch Returned: 1s182ms (86.814ms)
+           - Last Batch Returned: 1s182ms (723.000ns)
+           - Closed: 1s183ms (296.293us)
+        Node Lifecycle Event Timeline[6]: 1s183ms
+           - Open Started: 101.926ms (101.926ms)
+           - Open Finished: 1s094ms (992.232ms)
+           - First Batch Requested: 1s095ms (1.758ms)
+           - First Batch Returned: 1s182ms (86.912ms)
+           - Last Batch Returned: 1s182ms (714.000ns)
+           - Closed: 1s183ms (377.941us)
+        Node Lifecycle Event Timeline[7]: 1s186ms
+           - Open Started: 101.923ms (101.923ms)
+           - Open Finished: 1s094ms (992.160ms)
+           - First Batch Requested: 1s095ms (1.896ms)
+           - First Batch Returned: 1s185ms (89.904ms)
+           - Last Batch Returned: 1s185ms (1.094us)
+           - Closed: 1s186ms (313.367us)
+        Node Lifecycle Event Timeline[8]: 1s186ms
+           - Open Started: 122.664ms (122.664ms)
+           - Open Finished: 1s106ms (984.221ms)
+           - First Batch Requested: 1s108ms (1.745ms)
+           - First Batch Returned: 1s185ms (77.330ms)
+           - Last Batch Returned: 1s185ms (1.503us)
+           - Closed: 1s186ms (436.231us)
+        Node Lifecycle Event Timeline[9]: 1s186ms
+           - Open Started: 122.683ms (122.683ms)
+           - Open Finished: 1s106ms (984.204ms)
+           - First Batch Requested: 1s108ms (1.731ms)
+           - First Batch Returned: 1s186ms (77.528ms)
+           - Last Batch Returned: 1s186ms (1.166us)
+           - Closed: 1s186ms (445.964us)
+        Node Lifecycle Event Timeline[10]: 1s186ms
+           - Open Started: 122.677ms (122.677ms)
+           - Open Finished: 1s107ms (984.449ms)
+           - First Batch Requested: 1s109ms (1.887ms)
+           - First Batch Returned: 1s186ms (77.012ms)
+           - Last Batch Returned: 1s186ms (742.000ns)
+           - Closed: 1s186ms (383.513us)
+        Node Lifecycle Event Timeline[11]: 1s187ms
+           - Open Started: 122.687ms (122.687ms)
+           - Open Finished: 1s106ms (984.266ms)
+           - First Batch Requested: 1s108ms (1.612ms)
+           - First Batch Returned: 1s186ms (78.285ms)
+           - Last Batch Returned: 1s186ms (648.000ns)
+           - Closed: 1s187ms (373.159us)
+         - ConvertRowBatchTime: mean=143.207us min=116.119us max=165.560us
+         - InactiveTotalTime: mean=1s073ms min=1s061ms max=1s081ms
+         - PeakMemoryUsage: mean=104.00 KB (106496) min=104.00 KB (106496) max=104.00 KB (106496)
+         - RowsReturned: mean=152 (152) min=125 (125) max=180 (180)
+         - RowsReturnedRate: mean=141.00 /sec min=117.00 /sec max=169.00 /sec
+         - TotalTime: mean=1s074ms min=1s061ms max=1s082ms
+        Buffer pool [12 instances]:
+           - AllocTime: mean=86.111us min=72.074us max=108.178us
+           - CompressionTime: mean=0.000ns min=0.000ns max=0.000ns
+           - CumulativeAllocationBytes: mean=192.00 KB (196608) min=192.00 KB (196608) max=192.00 KB (196608)
+           - CumulativeAllocations: mean=24 (24) min=24 (24) max=24 (24)
+           - EncryptionTime: mean=0.000ns min=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - PeakReservation: mean=104.00 KB (106496) min=104.00 KB (106496) max=104.00 KB (106496)
+           - PeakUnpinnedBytes: mean=0 min=0 max=0
+           - PeakUsedReservation: mean=104.00 KB (106496) min=104.00 KB (106496) max=104.00 KB (106496)
+           - ReadIoBytes: mean=0 min=0 max=0
+           - ReadIoOps: mean=0 (0) min=0 (0) max=0 (0)
+           - ReadIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+           - SystemAllocTime: mean=52.161us min=38.650us max=71.936us
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - WriteIoBytes: mean=0 min=0 max=0
+           - WriteIoOps: mean=0 (0) min=0 (0) max=0 (0)
+           - WriteIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+        Dequeue [12 instances]:
+           - BytesDequeued[0] (500.000ms): 0, 0, 2.56 KB
+           - FirstBatchWaitTime: mean=990.895ms min=984.180ms max=997.464ms
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - TotalBytesDequeued: mean=3.12 KB (3192) min=2.56 KB (2625) max=3.69 KB (3780)
+           - TotalGetBatchTime: mean=1s074ms min=1s061ms max=1s081ms
+             - DataWaitTime: mean=1s073ms min=1s061ms max=1s081ms
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+        Enqueue [12 instances]:
+           - BytesReceived[0] (500.000ms): 0, 0, 1.62 KB
+           - DeferredQueueSize[0] (500.000ms): 0, 0, 0
+           - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+           - DeserializeRowBatchTime: mean=264.636us min=241.086us max=300.026us
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - TotalBatchesEnqueued: mean=12 (12) min=12 (12) max=12 (12)
+           - TotalBatchesReceived: mean=12 (12) min=12 (12) max=12 (12)
+           - TotalBytesReceived: mean=2.00 KB (2052) min=1.67 KB (1715) max=2.34 KB (2394)
+           - TotalEarlySenders: mean=0 (0) min=0 (0) max=0 (0)
+           - TotalEosReceived: mean=12 (12) min=12 (12) max=12 (12)
+           - TotalHasDeferredRPCsTime: mean=0.000ns min=0.000ns max=0.000ns
+           - TotalRPCsDeferred: mean=0 (0) min=0 (0) max=0 (0)
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+    Fragment F00 [12 instances]:
+    Instances: Instance 874b65988023a32b:71d209e900000001 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000002 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000003 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000004 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000005 (host=tarmstrong-Precision-7540:27000), Instance 874b65988023a32b:71d209e900000006 (host=tarmstrong-Pr [...]
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[11]: 0:152/15.76 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[9]: 0:152/15.86 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[0]: 0:152/15.87 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[5]: 0:152/15.91 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[4]: 0:152/15.98 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[2]: 0:152/16.01 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[1]: 0:152/16.03 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[8]: 0:152/16.04 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[10]: 0:152/16.06 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[3]: 0:152/16.09 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[6]: 0:152/16.21 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[7]: 0:152/21.12 MB
+      Last report received time[0-3]: 2021-02-09 08:53:03.669
+      Last report received time[8-11]: 2021-02-09 08:53:03.674
+      Last report received time[4-7]: 2021-02-09 08:53:03.675
+       - MemoryUsage[0] (500.000ms): 2.27 MB, 2.28 MB
+       - ThreadUsage[0] (500.000ms): 1, 1
+      Fragment Instance Lifecycle Event Timeline[0]: 1s119ms
+         - Prepare Finished: 776.677us (776.677us)
+         - Open Finished: 107.969ms (107.192ms)
+         - First Batch Produced: 1s111ms (1s003ms)
+         - First Batch Sent: 1s111ms (4.642us)
+         - ExecInternal Finished: 1s119ms (7.500ms)
+      Fragment Instance Lifecycle Event Timeline[1]: 1s120ms
+         - Prepare Finished: 750.321us (750.321us)
+         - Open Finished: 108.355ms (107.604ms)
+         - First Batch Produced: 1s113ms (1s005ms)
+         - First Batch Sent: 1s113ms (2.594us)
+         - ExecInternal Finished: 1s120ms (6.616ms)
+      Fragment Instance Lifecycle Event Timeline[2]: 1s120ms
+         - Prepare Finished: 5.058ms (5.058ms)
+         - Open Finished: 108.602ms (103.544ms)
+         - First Batch Produced: 1s111ms (1s002ms)
+         - First Batch Sent: 1s111ms (4.379us)
+         - ExecInternal Finished: 1s120ms (8.868ms)
+      Fragment Instance Lifecycle Event Timeline[3]: 1s119ms
+         - Prepare Finished: 6.184ms (6.184ms)
+         - Open Finished: 108.312ms (102.128ms)
+         - First Batch Produced: 1s111ms (1s003ms)
+         - First Batch Sent: 1s111ms (4.522us)
+         - ExecInternal Finished: 1s119ms (8.434ms)
+      Fragment Instance Lifecycle Event Timeline[4]: 1s110ms
+         - Prepare Finished: 926.288us (926.288us)
+         - Open Finished: 106.313ms (105.387ms)
+         - First Batch Produced: 1s092ms (986.536ms)
+         - First Batch Sent: 1s092ms (3.002us)
+         - ExecInternal Finished: 1s110ms (17.926ms)
+      Fragment Instance Lifecycle Event Timeline[5]: 1s110ms
+         - Prepare Finished: 995.460us (995.460us)
+         - Open Finished: 106.829ms (105.833ms)
+         - First Batch Produced: 1s088ms (981.238ms)
+         - First Batch Sent: 1s088ms (6.404us)
+         - ExecInternal Finished: 1s110ms (22.492ms)
+      Fragment Instance Lifecycle Event Timeline[6]: 1s110ms
+         - Prepare Finished: 1.207ms (1.207ms)
+         - Open Finished: 106.859ms (105.651ms)
+         - First Batch Produced: 1s089ms (982.651ms)
+         - First Batch Sent: 1s089ms (5.604us)
+         - ExecInternal Finished: 1s110ms (20.593ms)
+      Fragment Instance Lifecycle Event Timeline[7]: 1s111ms
+         - Prepare Finished: 1.155ms (1.155ms)
+         - Open Finished: 106.859ms (105.703ms)
+         - First Batch Produced: 1s090ms (983.811ms)
+         - First Batch Sent: 1s090ms (5.116us)
+         - ExecInternal Finished: 1s111ms (20.702ms)
+      Fragment Instance Lifecycle Event Timeline[8]: 1s180ms
+         - Prepare Finished: 14.345ms (14.345ms)
+         - Open Finished: 129.210ms (114.865ms)
+         - First Batch Produced: 1s172ms (1s043ms)
+         - First Batch Sent: 1s172ms (4.312us)
+         - ExecInternal Finished: 1s180ms (7.848ms)
+      Fragment Instance Lifecycle Event Timeline[9]: 1s187ms
+         - Prepare Finished: 22.586ms (22.586ms)
+         - Open Finished: 129.209ms (106.623ms)
+         - First Batch Produced: 1s173ms (1s044ms)
+         - First Batch Sent: 1s173ms (5.257us)
+         - ExecInternal Finished: 1s187ms (13.841ms)
+      Fragment Instance Lifecycle Event Timeline[10]: 1s183ms
+         - Prepare Finished: 29.265ms (29.265ms)
+         - Open Finished: 129.406ms (100.140ms)
+         - First Batch Produced: 1s174ms (1s045ms)
+         - First Batch Sent: 1s174ms (3.828us)
+         - ExecInternal Finished: 1s183ms (8.310ms)
+      Fragment Instance Lifecycle Event Timeline[11]: 1s183ms
+         - Prepare Finished: 30.377ms (30.377ms)
+         - Open Finished: 130.655ms (100.277ms)
+         - First Batch Produced: 1s176ms (1s046ms)
+         - First Batch Sent: 1s176ms (4.263us)
+         - ExecInternal Finished: 1s183ms (6.345ms)
+       - AverageThreadTokens: mean=1.00 min=1.00 max=1.00
+       - BytesAssigned: mean=16.41 MB (17209364) min=15.76 MB (16526332) max=21.12 MB (22147452)
+       - CompletionTime: mean=1s242ms min=1s237ms max=1s247ms
+       - ExchangeScanRatio: mean=0.00 min=0.00 max=0.00
+       - ExecutionRate: mean=13.21 MB/sec min=12.67 MB/sec max=16.94 MB/sec
+       - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+       - PeakMemoryUsage: mean=2.28 MB (2387200) min=2.28 MB (2387200) max=2.28 MB (2387200)
+       - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) max=2.12 MB (2228224)
+       - PeakUsedReservation: mean=0 min=0 max=0
+       - PerHostPeakMemUsage: mean=18.01 MB (18889170) min=17.96 MB (18831232) max=18.08 MB (18963196)
+       - RowsProduced: mean=152 (152) min=145 (145) max=161 (161)
+       - TotalNetworkReceiveTime: mean=0.000ns min=0.000ns max=0.000ns
+       - TotalNetworkSendTime: mean=9.808ms min=3.492ms max=20.842ms
+       - TotalStorageWaitTime: mean=870.654ms min=818.142ms max=939.015ms
+       - TotalThreadsInvoluntaryContextSwitches: mean=76 (76) min=19 (19) max=143 (143)
+       - TotalThreadsTotalWallClockTime: mean=1s128ms min=1s108ms max=1s166ms
+         - TotalThreadsSysTime: mean=6.110ms min=0.000ns max=19.040ms
+         - TotalThreadsUserTime: mean=89.308ms min=50.775ms max=171.387ms
+       - TotalThreadsVoluntaryContextSwitches: mean=301 (301) min=273 (273) max=335 (335)
+       - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      Fragment Instance Lifecycle Timings [12 instances]:
+         - ExecTime: mean=1s023ms min=1s003ms max=1s058ms
+           - ExecTreeExecTime: mean=1s011ms min=982.063ms max=1s048ms
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - OpenTime: mean=105.401ms min=100.129ms max=114.851ms
+           - ExecTreeOpenTime: mean=2.117ms min=1.537ms max=3.551ms
+         - PrepareTime: mean=529.508us min=409.778us max=703.734us
+           - ExecTreePrepareTime: mean=190.924us min=137.665us max=359.438us
+         - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      KrpcDataStreamSender (dst_id=2) [12 instances]:(Total: 11.165ms, non-child: 1.356ms, % non-child: 12.15%)
+        ExecOption[0-11]: Hash Partitioned Sender Codegen Enabled
+         - BytesSent[0] (500.000ms): 0, 0
+         - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+         - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+         - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+         - EosSent: mean=12 (12) min=12 (12) max=12 (12)
+         - InactiveTotalTime: mean=9.808ms min=3.492ms max=20.842ms
+         - PeakMemoryUsage: mean=166.12 KB (170112) min=166.12 KB (170112) max=166.12 KB (170112)
+         - RowsSent: mean=152 (152) min=145 (145) max=161 (161)
+         - RpcFailure: mean=0 (0) min=0 (0) max=0 (0)
+         - RpcRetry: mean=0 (0) min=0 (0) max=0 (0)
+         - SerializeBatchTime: mean=94.621us min=81.411us max=112.200us
+         - TotalBytesSent: mean=2.00 KB (2052) min=1.92 KB (1962) max=2.12 KB (2167)
+         - TotalTime: mean=11.165ms min=4.530ms max=21.640ms
+         - UncompressedRowBatchSize: mean=3.12 KB (3192) min=2.97 KB (3045) max=3.30 KB (3381)
+      AGGREGATION_NODE (id=1) [12 instances]:(Total: 1s014ms, non-child: 6.511ms, % non-child: 0.64%)
+        Node Lifecycle Event Timeline[0]: 1s112ms
+           - Open Started: 106.397ms (106.397ms)
+           - Open Finished: 107.945ms (1.547ms)
+           - First Batch Requested: 107.973ms (28.268us)
+           - First Batch Returned: 1s111ms (1s003ms)
+           - Last Batch Returned: 1s112ms (1.187ms)
+           - Closed: 1s112ms (66.335us)
+        Node Lifecycle Event Timeline[1]: 1s115ms
+           - Open Started: 106.397ms (106.397ms)
+           - Open Finished: 108.335ms (1.937ms)
+           - First Batch Requested: 108.357ms (22.466us)
+           - First Batch Returned: 1s113ms (1s005ms)
+           - Last Batch Returned: 1s115ms (2.166ms)
+           - Closed: 1s115ms (96.464us)
+        Node Lifecycle Event Timeline[2]: 1s112ms
+           - Open Started: 106.406ms (106.406ms)
+           - Open Finished: 108.580ms (2.174ms)
+           - First Batch Requested: 108.606ms (25.499us)
+           - First Batch Returned: 1s111ms (1s002ms)
+           - Last Batch Returned: 1s112ms (1.135ms)
+           - Closed: 1s112ms (78.714us)
+        Node Lifecycle Event Timeline[3]: 1s112ms
+           - Open Started: 106.408ms (106.408ms)
+           - Open Finished: 108.293ms (1.884ms)
+           - First Batch Requested: 108.315ms (22.392us)
+           - First Batch Returned: 1s111ms (1s003ms)
+           - Last Batch Returned: 1s112ms (1.145ms)
+           - Closed: 1s112ms (60.110us)
+        Node Lifecycle Event Timeline[4]: 1s094ms
+           - Open Started: 104.756ms (104.756ms)
+           - Open Finished: 106.290ms (1.534ms)
+           - First Batch Requested: 106.318ms (27.368us)
+           - First Batch Returned: 1s092ms (986.530ms)
+           - Last Batch Returned: 1s094ms (1.284ms)
+           - Closed: 1s094ms (81.417us)
+        Node Lifecycle Event Timeline[5]: 1s089ms
+           - Open Started: 104.761ms (104.761ms)
+           - Open Finished: 106.805ms (2.044ms)
+           - First Batch Requested: 106.832ms (26.994us)
+           - First Batch Returned: 1s088ms (981.233ms)
+           - Last Batch Returned: 1s089ms (1.126ms)
+           - Closed: 1s089ms (89.130us)
+        Node Lifecycle Event Timeline[6]: 1s090ms
+           - Open Started: 104.768ms (104.768ms)
+           - Open Finished: 106.839ms (2.070ms)
+           - First Batch Requested: 106.863ms (23.945us)
+           - First Batch Returned: 1s089ms (982.645ms)
+           - Last Batch Returned: 1s090ms (1.187ms)
+           - Closed: 1s090ms (72.378us)
+        Node Lifecycle Event Timeline[7]: 1s092ms
+           - Open Started: 104.768ms (104.768ms)
+           - Open Finished: 106.839ms (2.070ms)
+           - First Batch Requested: 106.863ms (24.031us)
+           - First Batch Returned: 1s090ms (983.806ms)
+           - Last Batch Returned: 1s091ms (1.240ms)
+           - Closed: 1s092ms (92.113us)
+        Node Lifecycle Event Timeline[8]: 1s173ms
+           - Open Started: 127.057ms (127.057ms)
+           - Open Finished: 129.170ms (2.112ms)
+           - First Batch Requested: 129.215ms (44.625us)
+           - First Batch Returned: 1s172ms (1s043ms)
+           - Last Batch Returned: 1s173ms (1.019ms)
+           - Closed: 1s173ms (60.683us)
+        Node Lifecycle Event Timeline[9]: 1s174ms
+           - Open Started: 127.057ms (127.057ms)
+           - Open Finished: 129.181ms (2.124ms)
+           - First Batch Requested: 129.215ms (33.860us)
+           - First Batch Returned: 1s173ms (1s044ms)
+           - Last Batch Returned: 1s174ms (1.231ms)
+           - Closed: 1s174ms (66.953us)
+        Node Lifecycle Event Timeline[10]: 1s178ms
+           - Open Started: 127.058ms (127.058ms)
+           - Open Finished: 129.379ms (2.320ms)
+           - First Batch Requested: 129.410ms (31.019us)
+           - First Batch Returned: 1s174ms (1s045ms)
+           - Last Batch Returned: 1s178ms (4.068ms)
+           - Closed: 1s178ms (64.504us)
+        Node Lifecycle Event Timeline[11]: 1s178ms
+           - Open Started: 127.081ms (127.081ms)
+           - Open Finished: 130.624ms (3.542ms)
+           - First Batch Requested: 130.659ms (35.576us)
+           - First Batch Returned: 1s176ms (1s046ms)
+           - Last Batch Returned: 1s178ms (1.365ms)
+           - Closed: 1s178ms (80.565us)
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - PeakMemoryUsage: mean=2.02 MB (2122880) min=2.02 MB (2122880) max=2.02 MB (2122880)
+         - RowsReturned: mean=152 (152) min=145 (145) max=161 (161)
+         - RowsReturnedRate: mean=149.00 /sec min=142.00 /sec max=160.00 /sec
+         - TotalTime: mean=1s014ms min=984.318ms max=1s051ms
+        GroupingAggregator 0 [12 instances]:
+          ExecOption[0-11]: Streaming Preaggregation, Codegen Enabled
+           - BuildTime: mean=0.000ns min=0.000ns max=0.000ns
+           - GetResultsTime: mean=934.666us min=561.494us max=3.104ms
+           - HTResizeTime: mean=0.000ns min=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - LargestPartitionPercent: mean=9 (9) min=8 (8) max=11 (11)
+           - PartitionsCreated: mean=16 (16) min=16 (16) max=16 (16)
+           - PeakMemoryUsage: mean=2.01 MB (2110592) min=2.01 MB (2110592) max=2.01 MB (2110592)
+           - PeakReservation: mean=2.00 MB (2097152) min=2.00 MB (2097152) max=2.00 MB (2097152)
+           - PeakUsedReservation: mean=0 min=0 max=0
+           - ReductionFactorEstimate: mean=0.00 min=0.00 max=0.00
+           - ReductionFactorThresholdToExpand: mean=0.00 min=0.00 max=0.00
+           - RowsPassedThrough: mean=0 (0) min=0 (0) max=0 (0)
+           - RowsReturned: mean=152 (152) min=145 (145) max=161 (161)
+           - StreamingTime: mean=2.450ms min=2.181ms max=3.116ms
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+          Buffer pool [12 instances]:
+             - AllocTime: mean=219.261us min=147.001us max=550.862us
+             - CompressionTime: mean=0.000ns min=0.000ns max=0.000ns
+             - CumulativeAllocationBytes: mean=1.25 MB (1310720) min=1.25 MB (1310720) max=1.25 MB (1310720)
+             - CumulativeAllocations: mean=20 (20) min=20 (20) max=20 (20)
+             - EncryptionTime: mean=0.000ns min=0.000ns max=0.000ns
+             - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - PeakReservation: mean=2.00 MB (2097152) min=2.00 MB (2097152) max=2.00 MB (2097152)
+             - PeakUnpinnedBytes: mean=0 min=0 max=0
+             - PeakUsedReservation: mean=1.25 MB (1310720) min=1.25 MB (1310720) max=1.25 MB (1310720)
+             - ReadIoBytes: mean=0 min=0 max=0
+             - ReadIoOps: mean=0 (0) min=0 (0) max=0 (0)
+             - ReadIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+             - SystemAllocTime: mean=162.411us min=96.171us max=505.486us
+             - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - WriteIoBytes: mean=0 min=0 max=0
+             - WriteIoOps: mean=0 (0) min=0 (0) max=0 (0)
+             - WriteIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+          Hash Table [12 instances]:
+             - HashBuckets: mean=16.38K (16384) min=16.38K (16384) max=16.38K (16384)
+             - HashCollisions: mean=0 (0) min=0 (0) max=0 (0)
+             - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - Probes: mean=152 (152) min=145 (145) max=161 (161)
+             - Resizes: mean=0 (0) min=0 (0) max=0 (0)
+             - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+             - Travel: mean=0 (0) min=0 (0) max=0 (0)
+      HDFS_SCAN_NODE (id=0) [12 instances]:(Total: 1s007ms, non-child: 1s007ms, % non-child: 100.00%)
+        ExecOption[2]: PARQUET Codegen Enabled, Codegen enabled: 145 out of 145
+        ExecOption[1]: PARQUET Codegen Enabled, Codegen enabled: 146 out of 146
+        ExecOption[6]: PARQUET Codegen Enabled, Codegen enabled: 147 out of 147
+        ExecOption[4,10]: PARQUET Codegen Enabled, Codegen enabled: 150 out of 150
+        ExecOption[9,11]: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152
+        ExecOption[8]: PARQUET Codegen Enabled, Codegen enabled: 154 out of 154
+        ExecOption[5]: PARQUET Codegen Enabled, Codegen enabled: 155 out of 155
+        ExecOption[0,7]: PARQUET Codegen Enabled, Codegen enabled: 156 out of 156
+        ExecOption[3]: PARQUET Codegen Enabled, Codegen enabled: 161 out of 161
+        File Formats[2]: PARQUET/Unknown(Skipped):145
+        File Formats[1]: PARQUET/Unknown(Skipped):146
+        File Formats[6]: PARQUET/Unknown(Skipped):147
+        File Formats[4,10]: PARQUET/Unknown(Skipped):150
+        File Formats[9,11]: PARQUET/Unknown(Skipped):152
+        File Formats[8]: PARQUET/Unknown(Skipped):154
+        File Formats[5]: PARQUET/Unknown(Skipped):155
+        File Formats[0,7]: PARQUET/Unknown(Skipped):156
+        File Formats[3]: PARQUET/Unknown(Skipped):161
+        Hdfs Read Thread Concurrency Bucket[0-1,3-7,9]: 0:0% 1:100% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[8,10-11]: 0:33.33% 1:66.67% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[2]: 0:50% 1:50% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Table Name[0-11]: tpcds_parquet.store_sales
+         - BytesReadSeries[0] (500.000ms): 0, 4.99 MB
+        Node Lifecycle Event Timeline[0]: 1s111ms
+           - Open Started: 106.400ms (106.400ms)
+           - Open Finished: 107.093ms (692.793us)
+           - First Batch Requested: 107.982ms (888.746us)
+           - First Batch Returned: 207.163ms (99.181ms)
+           - Last Batch Returned: 1s111ms (904.176ms)
+           - Closed: 1s111ms (108.280us)
+        Node Lifecycle Event Timeline[1]: 1s113ms
+           - Open Started: 106.400ms (106.400ms)
+           - Open Finished: 107.243ms (842.150us)
+           - First Batch Requested: 108.370ms (1.127ms)
+           - First Batch Returned: 207.593ms (99.223ms)
+           - Last Batch Returned: 1s111ms (903.994ms)
+           - Closed: 1s113ms (1.780ms)
+        Node Lifecycle Event Timeline[2]: 1s111ms
+           - Open Started: 106.407ms (106.407ms)
+           - Open Finished: 107.419ms (1.011ms)
+           - First Batch Requested: 108.614ms (1.195ms)
+           - First Batch Returned: 207.163ms (98.548ms)
+           - Last Batch Returned: 1s111ms (904.067ms)
+           - Closed: 1s111ms (119.007us)
+        Node Lifecycle Event Timeline[3]: 1s111ms
+           - Open Started: 106.410ms (106.410ms)
+           - Open Finished: 107.307ms (896.928us)
+           - First Batch Requested: 108.320ms (1.013ms)
+           - First Batch Returned: 208.144ms (99.823ms)
+           - Last Batch Returned: 1s111ms (903.161ms)
+           - Closed: 1s111ms (154.581us)
+        Node Lifecycle Event Timeline[4]: 1s092ms
+           - Open Started: 104.760ms (104.760ms)
+           - Open Finished: 105.390ms (629.875us)
+           - First Batch Requested: 106.326ms (936.485us)
+           - First Batch Returned: 207.640ms (101.314ms)
+           - Last Batch Returned: 1s092ms (885.039ms)
+           - Closed: 1s092ms (121.362us)
+        Node Lifecycle Event Timeline[5]: 1s088ms
+           - Open Started: 104.763ms (104.763ms)
+           - Open Finished: 105.742ms (979.351us)
+           - First Batch Requested: 106.839ms (1.096ms)
+           - First Batch Returned: 207.640ms (100.800ms)
+           - Last Batch Returned: 1s087ms (880.267ms)
+           - Closed: 1s088ms (107.980us)
+        Node Lifecycle Event Timeline[6]: 1s089ms
+           - Open Started: 104.770ms (104.770ms)
+           - Open Finished: 105.709ms (939.264us)
+           - First Batch Requested: 106.873ms (1.163ms)
+           - First Batch Returned: 207.639ms (100.766ms)
+           - Last Batch Returned: 1s089ms (881.723ms)
+           - Closed: 1s089ms (106.855us)
+        Node Lifecycle Event Timeline[7]: 1s090ms
+           - Open Started: 104.770ms (104.770ms)
+           - Open Finished: 105.744ms (974.104us)
+           - First Batch Requested: 106.873ms (1.128ms)
+           - First Batch Returned: 207.639ms (100.766ms)
+           - Last Batch Returned: 1s090ms (882.848ms)
+           - Closed: 1s090ms (115.451us)
+        Node Lifecycle Event Timeline[8]: 1s172ms
+           - Open Started: 127.061ms (127.061ms)
+           - Open Finished: 128.033ms (971.953us)
+           - First Batch Requested: 129.224ms (1.191ms)
+           - First Batch Returned: 237.792ms (108.568ms)
+           - Last Batch Returned: 1s172ms (934.429ms)
+           - Closed: 1s172ms (382.034us)
+        Node Lifecycle Event Timeline[9]: 1s173ms
+           - Open Started: 127.061ms (127.061ms)
+           - Open Finished: 128.027ms (965.864us)
+           - First Batch Requested: 129.224ms (1.197ms)
+           - First Batch Returned: 240.150ms (110.926ms)
+           - Last Batch Returned: 1s173ms (933.103ms)
+           - Closed: 1s173ms (341.816us)
+        Node Lifecycle Event Timeline[10]: 1s174ms
+           - Open Started: 127.061ms (127.061ms)
+           - Open Finished: 128.134ms (1.073ms)
+           - First Batch Requested: 129.417ms (1.283ms)
+           - First Batch Returned: 237.455ms (108.037ms)
+           - Last Batch Returned: 1s174ms (937.175ms)
+           - Closed: 1s174ms (119.496us)
+        Node Lifecycle Event Timeline[11]: 1s176ms
+           - Open Started: 127.083ms (127.083ms)
+           - Open Finished: 129.197ms (2.113ms)
+           - First Batch Requested: 130.671ms (1.473ms)
+           - First Batch Returned: 237.374ms (106.703ms)
+           - Last Batch Returned: 1s176ms (939.430ms)
+           - Closed: 1s176ms (121.753us)
+         - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+         - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+         - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+         - ParquetCompressedPageSize: 0 (Number of samples: 0)
+         - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+         - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+         - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+         - AverageHdfsReadThreadConcurrency: mean=0.67 min=0.50 max=1.00
+         - BytesRead: mean=11.84 MB (12417186) min=11.32 MB (11870030) max=12.62 MB (13237750)
+         - BytesReadDataNodeCache: mean=0 min=0 max=0
+         - BytesReadLocal: mean=11.84 MB (12417186) min=11.32 MB (11870030) max=12.62 MB (13237750)
+         - BytesReadRemoteUnexpected: mean=0 min=0 max=0
+         - BytesReadShortCircuit: mean=11.84 MB (12417186) min=11.32 MB (11870030) max=12.62 MB (13237750)
+         - CachedFileHandlesHitCount: mean=0 (0) min=0 (0) max=0 (0)
+         - CachedFileHandlesMissCount: mean=152 (152) min=145 (145) max=161 (161)
+         - CollectionItemsRead: mean=0 (0) min=0 (0) max=0 (0)
+         - DataCacheHitBytes: mean=0 min=0 max=0
+         - DataCacheHitCount: mean=0 (0) min=0 (0) max=0 (0)
+         - DataCacheMissBytes: mean=0 min=0 max=0
+         - DataCacheMissCount: mean=0 (0) min=0 (0) max=0 (0)
+         - DataCachePartialHitCount: mean=0 (0) min=0 (0) max=0 (0)
+         - DecompressionTime: mean=0.000ns min=0.000ns max=0.000ns
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - MaterializeTupleTime: mean=42.710us min=38.641us max=54.285us
+         - MaxCompressedTextFileLength: mean=0 min=0 max=0
+         - NumColumns: mean=0 (0) min=0 (0) max=0 (0)
+         - NumDictFilteredRowGroups: mean=0 (0) min=0 (0) max=0 (0)
+         - NumDisksAccessed: mean=1 (1) min=1 (1) max=1 (1)
+         - NumPages: mean=0 (0) min=0 (0) max=0 (0)
+         - NumRowGroups: mean=152 (152) min=145 (145) max=161 (161)
+         - NumRowGroupsWithPageIndex: mean=152 (152) min=145 (145) max=161 (161)
+         - NumScannersWithNoReads: mean=0 (0) min=0 (0) max=0 (0)
+         - NumStatsFilteredPages: mean=0 (0) min=0 (0) max=0 (0)
+         - NumStatsFilteredRowGroups: mean=0 (0) min=0 (0) max=0 (0)
+         - PeakMemoryUsage: mean=132.00 KB (135168) min=132.00 KB (135168) max=132.00 KB (135168)
+         - PerReadThreadRawHdfsThroughput: mean=27.54 MB/sec min=24.58 MB/sec max=31.73 MB/sec
+         - RemoteScanRanges: mean=0 (0) min=0 (0) max=0 (0)
+         - RowsRead: mean=0 (0) min=0 (0) max=0 (0)
+         - RowsReturned: mean=152 (152) min=145 (145) max=161 (161)
+         - RowsReturnedRate: mean=150.00 /sec min=143.00 /sec max=160.00 /sec
+         - ScanRangesComplete: mean=152 (152) min=145 (145) max=161 (161)
+         - ScannerIoWaitTime: mean=870.654ms min=818.142ms max=939.015ms
+         - TotalRawHdfsOpenFileTime: mean=377.816ms min=341.136ms max=458.881ms
+         - TotalRawHdfsReadTime: mean=431.541ms min=397.820ms max=469.735ms
+         - TotalReadThroughput: mean=6.02 MB/sec min=4.99 MB/sec max=8.13 MB/sec
+         - TotalTime: mean=1s007ms min=977.917ms max=1s044ms
+        Buffer pool [12 instances]:
+           - AllocTime: mean=613.787us min=535.398us max=815.810us
+           - CompressionTime: mean=0.000ns min=0.000ns max=0.000ns
+           - CumulativeAllocationBytes: mean=16.67 MB (17476266) min=15.81 MB (16580608) max=17.94 MB (18808832)
+           - CumulativeAllocations: mean=152 (152) min=145 (145) max=161 (161)
+           - EncryptionTime: mean=0.000ns min=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - PeakReservation: mean=128.00 KB (131072) min=128.00 KB (131072) max=128.00 KB (131072)
+           - PeakUnpinnedBytes: mean=0 min=0 max=0
+           - PeakUsedReservation: mean=128.00 KB (131072) min=128.00 KB (131072) max=128.00 KB (131072)
+           - ReadIoBytes: mean=0 min=0 max=0
+           - ReadIoOps: mean=0 (0) min=0 (0) max=0 (0)
+           - ReadIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+           - SystemAllocTime: mean=155.597us min=114.733us max=207.253us
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - WriteIoBytes: mean=0 min=0 max=0
+           - WriteIoOps: mean=0 (0) min=0 (0) max=0 (0)
+           - WriteIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+Query (id=504e9a5d292585e8:7c56749700000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:53:03.688525000
+    End Time: 2021-02-09 08:53:08.376531000
+    Query Type: QUERY
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: SELECT NDV(ss_sold_time_sk) AS ss_sold_time_sk, COUNT(CASE WHEN ss_sold_time_sk IS NULL THEN 1 ELSE NULL END), 4, CAST(4 as DOUBLE), NULL, NULL, NDV(ss_item_sk) AS ss_item_sk, COUNT(CASE WHEN ss_item_sk IS NULL THEN 1 ELSE NULL END), 8, CAST(8 as DOUBLE), NULL, NULL, NDV(ss_customer_sk) AS ss_customer_sk, COUNT(CASE WHEN ss_customer_sk IS NULL THEN 1 ELSE NULL END), 4, CAST(4 as DOUBLE), NULL, NULL, NDV(ss_cdemo_sk) AS ss_cdemo_sk, COUNT(CASE WHEN ss_cdemo_sk IS NULL T [...]
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Query Options (set by configuration and planner): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Plan: 
+----------------
+Max Per-Host Resource Reservation: Memory=32.00MB Threads=5
+Per-Host Resource Estimates: Memory=114MB
+Analyzed query: SELECT ndv(ss_sold_time_sk) ss_sold_time_sk, count(CASE WHEN
+ss_sold_time_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(4 AS
+TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_item_sk) ss_item_sk, count(CASE
+WHEN ss_item_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(8 AS
+TINYINT), CAST(8 AS DOUBLE), NULL, NULL, ndv(ss_customer_sk) ss_customer_sk,
+count(CASE WHEN ss_customer_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_cdemo_sk) ss_cdemo_sk,
+count(CASE WHEN ss_cdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_hdemo_sk) ss_hdemo_sk,
+count(CASE WHEN ss_hdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_addr_sk) ss_addr_sk,
+count(CASE WHEN ss_addr_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_store_sk) ss_store_sk,
+count(CASE WHEN ss_store_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_promo_sk) ss_promo_sk,
+count(CASE WHEN ss_promo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_ticket_number)
+ss_ticket_number, count(CASE WHEN ss_ticket_number IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(8 AS TINYINT), CAST(8 AS DOUBLE), NULL, NULL,
+ndv(ss_quantity) ss_quantity, count(CASE WHEN ss_quantity IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL,
+ndv(ss_wholesale_cost) ss_wholesale_cost, count(CASE WHEN ss_wholesale_cost IS
+NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_list_price) ss_list_price, count(CASE WHEN
+ss_list_price IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS
+TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_sales_price) ss_sales_price,
+count(CASE WHEN ss_sales_price IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_ext_discount_amt)
+ss_ext_discount_amt, count(CASE WHEN ss_ext_discount_amt IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL,
+ndv(ss_ext_sales_price) ss_ext_sales_price, count(CASE WHEN ss_ext_sales_price
+IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_ext_wholesale_cost) ss_ext_wholesale_cost,
+count(CASE WHEN ss_ext_wholesale_cost IS NULL THEN CAST(1 AS TINYINT) ELSE NULL
+END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL,
+ndv(ss_ext_list_price) ss_ext_list_price, count(CASE WHEN ss_ext_list_price IS
+NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_ext_tax) ss_ext_tax, count(CASE WHEN ss_ext_tax IS
+NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_coupon_amt) ss_coupon_amt, count(CASE WHEN
+ss_coupon_amt IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS
+TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_net_paid) ss_net_paid,
+count(CASE WHEN ss_net_paid IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_net_paid_inc_tax)
+ss_net_paid_inc_tax, count(CASE WHEN ss_net_paid_inc_tax IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL,
+ndv(ss_net_profit) ss_net_profit, count(CASE WHEN ss_net_profit IS NULL THEN
+CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE),
+NULL, NULL FROM tpcds_parquet.store_sales
+
+F01:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
+|  Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1
+PLAN-ROOT SINK
+|  output exprs: ndv(ss_sold_time_sk), count(CASE WHEN ss_sold_time_sk IS NULL THEN 1 ELSE NULL END), CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_item_sk), count(CASE WHEN ss_item_sk IS NULL THEN 1 ELSE NULL END), CAST(8 AS TINYINT), CAST(8 AS DOUBLE), NULL, NULL, ndv(ss_customer_sk), count(CASE WHEN ss_customer_sk IS NULL THEN 1 ELSE NULL END), CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_cdemo_sk), count(CASE WHEN ss_cdemo_sk IS NULL THEN 1 ELSE NULL END), CA [...]
+|  mem-estimate=0B mem-reservation=0B thread-reservation=0
+|
+03:AGGREGATE [FINALIZE]
+|  output: ndv:merge(ss_sold_time_sk), count:merge(CASE WHEN ss_sold_time_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_item_sk), count:merge(CASE WHEN ss_item_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_customer_sk), count:merge(CASE WHEN ss_customer_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_cdemo_sk), count:merge(CASE WHEN ss_cdemo_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_hdemo_sk), count:merge(CASE WHEN ss_hdemo_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_addr_sk), c [...]
+|  mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
+|  tuple-ids=2 row-size=352B cardinality=1
+|  in pipelines: 03(GETNEXT), 01(OPEN)
+|
+02:EXCHANGE [UNPARTITIONED]
+|  mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
+|  tuple-ids=1 row-size=352B cardinality=1
+|  in pipelines: 01(GETNEXT)
+|
+F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=12
+Per-Instance Resources: mem-estimate=26.00MB mem-reservation=8.00MB thread-reservation=1
+01:AGGREGATE
+|  output: ndv(ss_sold_time_sk), count(CASE WHEN ss_sold_time_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_item_sk), count(CASE WHEN ss_item_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_customer_sk), count(CASE WHEN ss_customer_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_cdemo_sk), count(CASE WHEN ss_cdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_hdemo_sk), count(CASE WHEN ss_hdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), [...]
+|  mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
+|  tuple-ids=1 row-size=352B cardinality=1
+|  in pipelines: 01(GETNEXT), 00(OPEN)
+|
+00:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
+   HDFS partitions=1824/1824 files=1824 size=196.95MB
+   stored statistics:
+     table: rows=2.88M size=196.95MB
+     partitions: 1824/1824 rows=2.88M
+     columns: all
+   extrapolated-rows=disabled max-scan-range-rows=130.09K
+   mem-estimate=16.00MB mem-reservation=8.00MB thread-reservation=0
+   tuple-ids=0 row-size=96B cardinality=2.88M
+   in pipelines: 00(GETNEXT)
+----------------
+    Estimated Per-Host Mem: 119554048
+    Request Pool: default-pool
+    Per Host Min Memory Reservation: tarmstrong-Precision-7540:27001(32.00 MB) tarmstrong-Precision-7540:27000(32.00 MB) tarmstrong-Precision-7540:27002(32.00 MB)
+    Per Host Number of Fragment Instances: tarmstrong-Precision-7540:27001(4) tarmstrong-Precision-7540:27000(5) tarmstrong-Precision-7540:27002(4)
+    Admission result: Admitted immediately
+    Cluster Memory Admitted: 342.05 MB
+    Executor Group: default
+    ExecSummary: 
+Operator              #Hosts  #Inst   Avg Time   Max Time  #Rows  Est. #Rows   Peak Mem  Est. Peak Mem  Detail                    
+----------------------------------------------------------------------------------------------------------------------------------
+F01:ROOT                   1      1   93.354us   93.354us                             0              0                            
+03:AGGREGATE               1      1    3.372ms    3.372ms      1           1   34.17 KB       10.00 MB  FINALIZE                  
+02:EXCHANGE                1      1  416.507us  416.507us     12           1  392.00 KB       16.00 KB  UNPARTITIONED             
+F00:EXCHANGE SENDER        3     12  265.136us  490.561us                        8.00 B              0                            
+01:AGGREGATE               3     12  167.993ms  223.770ms     12           1  133.17 KB       10.00 MB                            
+00:SCAN HDFS               3     12    3s859ms    3s934ms  2.88M       2.88M   12.24 MB       16.00 MB  tpcds_parquet.store_sales
+    Errors: 
+    Query Compilation: 161.417ms
+       - Metadata of all 1 tables cached: 12.496ms (12.496ms)
+       - Analysis finished: 63.795ms (51.298ms)
+       - Authorization finished (noop): 63.870ms (75.085us)
+       - Value transfer graph computed: 64.580ms (709.718us)
+       - Single node plan created: 137.668ms (73.088ms)
+       - Runtime filters computed: 143.160ms (5.491ms)
+       - Distributed plan created: 143.321ms (161.701us)
+       - Parallel plans created: 143.339ms (17.755us)
+       - Planning finished: 161.417ms (18.077ms)
+    Query Timeline: 4s688ms
+       - Query submitted: 101.803us (101.803us)
+       - Planning finished: 177.253ms (177.152ms)
+       - Submit for admission: 181.013ms (3.759ms)
+       - Completed admission: 200.984ms (19.971ms)
+       - Ready to start on 3 backends: 201.926ms (941.785us)
+       - All 3 execution backends (13 fragment instances) started: 215.853ms (13.927ms)
+       - Rows available: 4s674ms (4s458ms)
+       - First row fetched: 4s675ms (696.950us)
+       - Last row fetched: 4s675ms (112.403us)
+       - Released admission control resources: 4s687ms (12.366ms)
+       - Unregister query: 4s688ms (250.375us)
+     - AdmissionControlTimeSinceLastUpdate: 65.000ms
+     - ComputeScanRangeAssignmentTimer: 16.678ms
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - ClientFetchWaitTimer: 131.365us
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 1 (1)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 75.00 /sec
+     - RowMaterializationTimer: 13.268ms
+     - TotalTime: 0.000ns
+  Execution Profile 504e9a5d292585e8:7c56749700000000:
+    Number of filters: 0
+    Filter routing table: 
+ ID  Src. Node  Tgt. Node(s)  Target type  Partition filter  Pending (Expected)  First arrived  Completed  Enabled  Bloom Size   Est fpp
+----------------------------------------------------------------------------------------------------------------------------------------
+    Backend startup latencies: Count: 3, min / max: 4ms / 5ms, 25th %-ile: 4ms, 50th %-ile: 4ms, 75th %-ile: 4ms, 90th %-ile: 5ms, 95th %-ile: 5ms, 99.9th %-ile: 5ms
+    Slowest backend to start up: tarmstrong-Precision-7540:27001
+    Per Node Peak Memory Usage: tarmstrong-Precision-7540:27000(37.50 MB) tarmstrong-Precision-7540:27002(33.62 MB) tarmstrong-Precision-7540:27001(33.61 MB)
+    Per Node Bytes Read: tarmstrong-Precision-7540:27000(113.30 MB) tarmstrong-Precision-7540:27002(108.23 MB) tarmstrong-Precision-7540:27001(107.79 MB)
+    Per Node User Time: tarmstrong-Precision-7540:27000(6s060ms) tarmstrong-Precision-7540:27002(5s572ms) tarmstrong-Precision-7540:27001(5s600ms)
+    Per Node System Time: tarmstrong-Precision-7540:27000(326.911ms) tarmstrong-Precision-7540:27002(244.871ms) tarmstrong-Precision-7540:27001(240.180ms)
+     - ExchangeScanRatio: 0.00
+     - FiltersReceived: 0 (0)
+     - FinalizationTimer: 0.000ns
+     - InactiveTotalTime: 0.000ns
+     - InnerNodeSelectivityRatio: 0.00
+     - NumBackends: 3 (3)
+     - NumCompletedBackends: 3 (3)
+     - NumFragmentInstances: 13 (13)
+     - NumFragments: 2 (2)
+     - TotalBytesRead: 329.31 MB (345305727)
+     - TotalBytesSent: 174.51 KB (178703)
+     - TotalCpuTime: 18s045ms
+     - TotalInnerBytesSent: 0
+     - TotalScanBytesSent: 174.51 KB (178703)
+     - TotalTime: 4s486ms
+    Per Node Profiles:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+      tarmstrong-Precision-7540:27000:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 0 (0)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 0
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 9 (9)
+             - CodegenTotalWallClockTime: 164.546ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 158.686ms
+             - CodegenVoluntaryContextSwitches: 2 (2)
+             - CompileTime: 29.470ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 5.487ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 141.993ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 132 (132)
+             - NumInstructions: 660 (660)
+             - OptimizationTime: 105.694ms
+             - PeakMemoryUsage: 330.00 KB (337920)
+             - PrepareTime: 22.568ms
+             - TotalTime: 164.560ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 16 (16)
+             - CodegenTotalWallClockTime: 345.587ms
+               - CodegenSysTime: 7.899ms
+               - CodegenUserTime: 334.763ms
+             - CodegenVoluntaryContextSwitches: 0 (0)
+             - CompileTime: 11.055ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 13.433ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 326.181ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 213 (213)
+             - NumInstructions: 3.20K (3202)
+             - OptimizationTime: 300.274ms
+             - PeakMemoryUsage: 1.56 MB (1639424)
+             - PrepareTime: 19.418ms
+             - TotalTime: 345.598ms
+      tarmstrong-Precision-7540:27002:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 0 (0)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 0
+           - GcTotalExtraSleepTimeMillis: 1ms
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 10 (10)
+             - CodegenTotalWallClockTime: 308.750ms
+               - CodegenSysTime: 3.948ms
+               - CodegenUserTime: 303.791ms
+             - CodegenVoluntaryContextSwitches: 0 (0)
+             - CompileTime: 6.765ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 11.404ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 290.436ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 213 (213)
+             - NumInstructions: 3.20K (3202)
+             - OptimizationTime: 271.101ms
+             - PeakMemoryUsage: 1.56 MB (1639424)
+             - PrepareTime: 18.327ms
+             - TotalTime: 308.762ms
+      tarmstrong-Precision-7540:27001:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 0 (0)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 0
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 13 (13)
+             - CodegenTotalWallClockTime: 369.970ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 366.906ms
+             - CodegenVoluntaryContextSwitches: 0 (0)
+             - CompileTime: 10.798ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 11.049ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 353.774ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 213 (213)
+             - NumInstructions: 3.20K (3202)
+             - OptimizationTime: 330.788ms
+             - PeakMemoryUsage: 1.56 MB (1639424)
+             - PrepareTime: 16.210ms
+             - TotalTime: 369.983ms
+    Coordinator Fragment F01:
+    Instances: Instance 504e9a5d292585e8:7c56749700000000 (host=tarmstrong-Precision-7540:27000)
+      Last report received time[0]: 2021-02-09 08:53:08.375
+       - MemoryUsage[0] (500.000ms): 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB
+      Fragment Instance Lifecycle Event Timeline[0]: 4s434ms
+         - Prepare Finished: 33.298ms (33.298ms)
+         - Open Finished: 4s434ms (4s400ms)
+         - First Batch Produced: 4s434ms (602.083us)
+         - First Batch Sent: 4s434ms (77.650us)
+         - ExecInternal Finished: 4s434ms (128.282us)
+       - AverageThreadTokens: 0.00
+       - BytesAssigned: 0
+       - CompletionTime: 4s476ms
+       - ExchangeScanRatio: 0.00
+       - ExecutionRate: 0.00 /sec
+       - InactiveTotalTime: 0.000ns
+       - PeakMemoryUsage: 434.17 KB (444592)
+       - PeakReservation: 0
+       - PeakUsedReservation: 0
+       - PerHostPeakMemUsage: 37.50 MB (39320356)
+       - RowsProduced: 1 (1)
+       - TotalNetworkReceiveTime: 4s233ms
+       - TotalNetworkSendTime: 0.000ns
+       - TotalStorageWaitTime: 0.000ns
+       - TotalThreadsInvoluntaryContextSwitches: 9 (9)
+       - TotalThreadsTotalWallClockTime: 4s401ms
+         - TotalThreadsSysTime: 0.000ns
+         - TotalThreadsUserTime: 161.610ms
+       - TotalThreadsVoluntaryContextSwitches: 14 (14)
+       - TotalTime: 0.000ns
+      Fragment Instance Lifecycle Timings:
+         - ExecTime: 779.769us
+           - ExecTreeExecTime: 598.871us
+         - InactiveTotalTime: 0.000ns
+         - OpenTime: 4s400ms
+           - ExecTreeOpenTime: 4s236ms
+         - PrepareTime: 719.886us
+           - ExecTreePrepareTime: 485.979us
+         - TotalTime: 0.000ns
+      PLAN_ROOT_SINK:(Total: 93.354us, non-child: 93.354us, % non-child: 100.00%)
+         - InactiveTotalTime: 0.000ns
+         - PeakMemoryUsage: 0
+         - RowsSent: 1 (1)
+         - RowsSentRate: 10.71 K/sec
+         - TotalTime: 93.354us
+      AGGREGATION_NODE (id=3):(Total: 4s237ms, non-child: 3.372ms, % non-child: 0.08%)
+        Node Lifecycle Event Timeline[0]: 4s434ms
+           - Open Started: 197.977ms (197.977ms)
+           - Open Finished: 4s434ms (4s236ms)
+           - First Batch Requested: 4s434ms (49.765us)
+           - First Batch Returned: 4s434ms (595.782us)
+           - Last Batch Returned: 4s434ms (626.000ns)
+           - Closed: 4s434ms (166.794us)
+         - InactiveTotalTime: 0.000ns
+         - PeakMemoryUsage: 34.17 KB (34992)
+         - RowsReturned: 1 (1)
+         - RowsReturnedRate: 0
+         - TotalTime: 4s237ms
+        NonGroupingAggregator 0:
+           - BuildTime: 2.106ms
+           - InactiveTotalTime: 0.000ns
+           - PeakMemoryUsage: 26.17 KB (26800)
+           - RowsReturned: 1 (1)
+           - TotalTime: 0.000ns
+      EXCHANGE_NODE (id=2):(Total: 4s233ms, non-child: 416.507us, % non-child: 0.01%)
+        Node Lifecycle Event Timeline[0]: 4s434ms
+           - Open Started: 197.981ms (197.981ms)
+           - Open Finished: 4s315ms (4s117ms)
+           - First Batch Requested: 4s315ms (80.529us)
+           - First Batch Returned: 4s431ms (116.291ms)
+           - Last Batch Returned: 4s431ms (685.000ns)
+           - Closed: 4s434ms (2.198ms)
+         - ConvertRowBatchTime: 67.503us
+         - InactiveTotalTime: 4s233ms
+         - PeakMemoryUsage: 392.00 KB (401408)
+         - RowsReturned: 12 (12)
+         - RowsReturnedRate: 2.00 /sec
+         - TotalTime: 4s233ms
+        Buffer pool:
+           - AllocTime: 47.984us
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 480.00 KB (491520)
+           - CumulativeAllocations: 24 (24)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 392.00 KB (401408)
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 392.00 KB (401408)
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        Dequeue:
+           - BytesDequeued[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+           - FirstBatchWaitTime: 4s117ms
+           - InactiveTotalTime: 0.000ns
+           - TotalBytesDequeued: 266.16 KB (272544)
+           - TotalGetBatchTime: 4s233ms
+             - DataWaitTime: 4s233ms
+           - TotalTime: 0.000ns
+        Enqueue:
+           - BytesReceived[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+           - DeferredQueueSize[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+           - DispatchTime: (Avg: 62.664us ; Min: 37.152us ; Max: 81.138us ; Number of samples: 12)
+           - DeserializeRowBatchTime: 557.808us
+           - InactiveTotalTime: 0.000ns
+           - TotalBatchesEnqueued: 12 (12)
+           - TotalBatchesReceived: 12 (12)
+           - TotalBytesReceived: 174.51 KB (178703)
+           - TotalEarlySenders: 0 (0)
+           - TotalEosReceived: 12 (12)
+           - TotalHasDeferredRPCsTime: 0.000ns
+           - TotalRPCsDeferred: 0 (0)
+           - TotalTime: 0.000ns
+    Fragment F00 [12 instances]:
+    Instances: Instance 504e9a5d292585e8:7c56749700000001 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000002 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000003 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000004 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000005 (host=tarmstrong-Precision-7540:27000), Instance 504e9a5d292585e8:7c56749700000006 (host=tarmstrong-Pr [...]
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[11]: 0:152/15.76 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[9]: 0:152/15.86 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[0]: 0:152/15.87 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[5]: 0:152/15.91 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[4]: 0:152/15.98 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[2]: 0:152/16.01 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[1]: 0:152/16.03 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[8]: 0:152/16.04 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[10]: 0:152/16.06 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[3]: 0:152/16.09 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[6]: 0:152/16.21 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[7]: 0:152/21.12 MB
+      Last report received time[0-3]: 2021-02-09 08:53:08.267
+      Last report received time[8-11]: 2021-02-09 08:53:08.313
+      Last report received time[4-7]: 2021-02-09 08:53:08.375
+       - MemoryUsage[0] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.28 MB, 8.21 MB, 8.36 MB, 8.04 MB, 8.04 MB, 8.04 MB
+       - ThreadUsage[0] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+      Fragment Instance Lifecycle Event Timeline[0]: 4s330ms
+         - Prepare Finished: 1.158ms (1.158ms)
+         - Open Finished: 4s329ms (4s328ms)
+         - First Batch Produced: 4s329ms (31.906us)
+         - First Batch Sent: 4s329ms (122.841us)
+         - ExecInternal Finished: 4s330ms (623.646us)
+      Fragment Instance Lifecycle Event Timeline[1]: 4s320ms
+         - Prepare Finished: 1.184ms (1.184ms)
+         - Open Finished: 4s319ms (4s318ms)
+         - First Batch Produced: 4s319ms (31.710us)
+         - First Batch Sent: 4s319ms (190.570us)
+         - ExecInternal Finished: 4s320ms (655.298us)
+      Fragment Instance Lifecycle Event Timeline[2]: 4s328ms
+         - Prepare Finished: 9.033ms (9.033ms)
+         - Open Finished: 4s326ms (4s317ms)
+         - First Batch Produced: 4s326ms (26.453us)
+         - First Batch Sent: 4s326ms (144.470us)
+         - ExecInternal Finished: 4s328ms (2.040ms)
+      Fragment Instance Lifecycle Event Timeline[3]: 4s321ms
+         - Prepare Finished: 9.878ms (9.878ms)
+         - Open Finished: 4s320ms (4s310ms)
+         - First Batch Produced: 4s320ms (25.675us)
+         - First Batch Sent: 4s321ms (162.439us)
+         - ExecInternal Finished: 4s321ms (581.751us)
+      Fragment Instance Lifecycle Event Timeline[4]: 4s427ms
+         - Prepare Finished: 2.566ms (2.566ms)
+         - Open Finished: 4s426ms (4s424ms)
+         - First Batch Produced: 4s426ms (41.370us)
+         - First Batch Sent: 4s427ms (207.460us)
+         - ExecInternal Finished: 4s427ms (607.753us)
+      Fragment Instance Lifecycle Event Timeline[5]: 4s431ms
+         - Prepare Finished: 2.677ms (2.677ms)
+         - Open Finished: 4s431ms (4s428ms)
+         - First Batch Produced: 4s431ms (19.415us)
+         - First Batch Sent: 4s431ms (140.035us)
+         - ExecInternal Finished: 4s431ms (564.231us)
+      Fragment Instance Lifecycle Event Timeline[6]: 4s424ms
+         - Prepare Finished: 3.906ms (3.906ms)
+         - Open Finished: 4s423ms (4s419ms)
+         - First Batch Produced: 4s423ms (24.758us)
+         - First Batch Sent: 4s423ms (154.196us)
+         - ExecInternal Finished: 4s424ms (575.241us)
+      Fragment Instance Lifecycle Event Timeline[7]: 4s424ms
+         - Prepare Finished: 25.170ms (25.170ms)
+         - Open Finished: 4s423ms (4s398ms)
+         - First Batch Produced: 4s423ms (24.670us)
+         - First Batch Sent: 4s423ms (150.068us)
+         - ExecInternal Finished: 4s424ms (614.776us)
+      Fragment Instance Lifecycle Event Timeline[8]: 4s368ms
+         - Prepare Finished: 969.067us (969.067us)
+         - Open Finished: 4s367ms (4s366ms)
+         - First Batch Produced: 4s367ms (20.446us)
+         - First Batch Sent: 4s367ms (111.063us)
+         - ExecInternal Finished: 4s368ms (591.764us)
+      Fragment Instance Lifecycle Event Timeline[9]: 4s361ms
+         - Prepare Finished: 1.160ms (1.160ms)
+         - Open Finished: 4s360ms (4s359ms)
+         - First Batch Produced: 4s360ms (27.553us)
+         - First Batch Sent: 4s360ms (147.832us)
+         - ExecInternal Finished: 4s361ms (680.699us)
+      Fragment Instance Lifecycle Event Timeline[10]: 4s357ms
+         - Prepare Finished: 5.190ms (5.190ms)
+         - Open Finished: 4s356ms (4s351ms)
+         - First Batch Produced: 4s356ms (34.650us)
+         - First Batch Sent: 4s356ms (165.947us)
+         - ExecInternal Finished: 4s357ms (827.343us)
+      Fragment Instance Lifecycle Event Timeline[11]: 4s363ms
+         - Prepare Finished: 5.305ms (5.305ms)
+         - Open Finished: 4s361ms (4s356ms)
+         - First Batch Produced: 4s361ms (23.021us)
+         - First Batch Sent: 4s361ms (120.230us)
+         - ExecInternal Finished: 4s363ms (1.129ms)
+       - AverageThreadTokens: mean=1.00 min=1.00 max=1.00
+       - BytesAssigned: mean=16.41 MB (17209364) min=15.76 MB (16526332) max=21.12 MB (22147452)
+       - CompletionTime: mean=4s417ms min=4s366ms max=4s476ms
+       - ExchangeScanRatio: mean=0.00 min=0.00 max=0.00
+       - ExecutionRate: mean=3.71 MB/sec min=3.55 MB/sec max=4.72 MB/sec
+       - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+       - PeakMemoryUsage: mean=8.77 MB (9196772) min=8.44 MB (8849914) max=12.28 MB (12875074)
+       - PeakReservation: mean=8.03 MB (8415914) min=8.00 MB (8388608) max=8.31 MB (8716288)
+       - PeakUsedReservation: mean=0 min=0 max=0
+       - PerHostPeakMemUsage: mean=34.91 MB (36607039) min=33.61 MB (35243040) max=37.50 MB (39320356)
+       - RowsProduced: mean=1 (1) min=1 (1) max=1 (1)
+       - TotalNetworkReceiveTime: mean=0.000ns min=0.000ns max=0.000ns
+       - TotalNetworkSendTime: mean=503.701us min=1.186us max=1.773ms
+       - TotalStorageWaitTime: mean=397.650ms min=310.306ms max=528.168ms
+       - TotalThreadsInvoluntaryContextSwitches: mean=8.50K (8504) min=7.69K (7686) max=9.09K (9092)
+       - TotalThreadsTotalWallClockTime: mean=4s365ms min=4s311ms max=4s429ms
+         - TotalThreadsSysTime: mean=67.663ms min=30.810ms max=94.248ms
+         - TotalThreadsUserTime: mean=1s422ms min=1s263ms max=1s924ms
+       - TotalThreadsVoluntaryContextSwitches: mean=3.65K (3645) min=3.36K (3364) max=3.82K (3822)
+       - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      Fragment Instance Lifecycle Timings [12 instances]:
+         - ExecTime: mean=950.015us min=705.115us max=2.186ms
+           - ExecTreeExecTime: mean=23.725us min=17.572us max=29.492us
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - OpenTime: mean=4s364ms min=4s310ms max=4s428ms
+           - ExecTreeOpenTime: mean=4s026ms min=3s982ms max=4s082ms
+         - PrepareTime: mean=692.491us min=552.175us max=1.004ms
+           - ExecTreePrepareTime: mean=475.968us min=366.658us max=749.055us
+         - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      KrpcDataStreamSender (dst_id=2) [12 instances]:(Total: 768.837us, non-child: 265.136us, % non-child: 34.49%)
+        ExecOption[0-11]: Unpartitioned Sender Codegen Disabled: not needed
+         - BytesSent[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+         - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+         - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+         - EosSent: mean=1 (1) min=1 (1) max=1 (1)
+         - InactiveTotalTime: mean=503.701us min=1.186us max=1.773ms
+         - PeakMemoryUsage: mean=8.00 B (8) min=8.00 B (8) max=8.00 B (8)
+         - RowsSent: mean=1 (1) min=1 (1) max=1 (1)
+         - RpcFailure: mean=0 (0) min=0 (0) max=0 (0)
+         - RpcRetry: mean=0 (0) min=0 (0) max=0 (0)
+         - SerializeBatchTime: mean=104.857us min=74.813us max=135.849us
+         - TotalBytesSent: mean=14.54 KB (14891) min=14.46 KB (14808) max=14.65 KB (14997)
+         - TotalTime: mean=768.837us min=491.747us max=2.006ms
+         - UncompressedRowBatchSize: mean=22.18 KB (22712) min=22.18 KB (22712) max=22.18 KB (22712)
+      AGGREGATION_NODE (id=1) [12 instances]:(Total: 4s027ms, non-child: 167.993ms, % non-child: 4.17%)
+        Node Lifecycle Event Timeline[0]: 4s329ms
+           - Open Started: 310.016ms (310.016ms)
+           - Open Finished: 4s329ms (4s019ms)
+           - First Batch Requested: 4s329ms (28.571us)
+           - First Batch Returned: 4s329ms (25.986us)
+           - Last Batch Returned: 4s329ms (295.000ns)
+           - Closed: 4s329ms (326.862us)
+        Node Lifecycle Event Timeline[1]: 4s319ms
+           - Open Started: 310.017ms (310.017ms)
+           - Open Finished: 4s319ms (4s009ms)
+           - First Batch Requested: 4s319ms (43.335us)
+           - First Batch Returned: 4s319ms (26.328us)
+           - Last Batch Returned: 4s319ms (576.000ns)
+           - Closed: 4s319ms (558.228us)
+        Node Lifecycle Event Timeline[2]: 4s326ms
+           - Open Started: 310.028ms (310.028ms)
+           - Open Finished: 4s326ms (4s016ms)
+           - First Batch Requested: 4s326ms (34.690us)
+           - First Batch Returned: 4s326ms (21.651us)
+           - Last Batch Returned: 4s326ms (352.000ns)
+           - Closed: 4s326ms (340.013us)
+        Node Lifecycle Event Timeline[3]: 4s321ms
+           - Open Started: 310.032ms (310.032ms)
+           - Open Finished: 4s320ms (4s010ms)
+           - First Batch Requested: 4s320ms (31.483us)
+           - First Batch Returned: 4s320ms (21.327us)
+           - Last Batch Returned: 4s320ms (438.000ns)
+           - Closed: 4s321ms (342.613us)
+        Node Lifecycle Event Timeline[4]: 4s427ms
+           - Open Started: 348.276ms (348.276ms)
+           - Open Finished: 4s426ms (4s078ms)
+           - First Batch Requested: 4s426ms (64.897us)
+           - First Batch Returned: 4s426ms (23.842us)
+           - Last Batch Returned: 4s426ms (364.000ns)
+           - Closed: 4s427ms (415.811us)
+        Node Lifecycle Event Timeline[5]: 4s431ms
+           - Open Started: 348.276ms (348.276ms)
+           - Open Finished: 4s431ms (4s082ms)
+           - First Batch Requested: 4s431ms (26.319us)
+           - First Batch Returned: 4s431ms (16.148us)
+           - Last Batch Returned: 4s431ms (250.000ns)
+           - Closed: 4s431ms (258.362us)
+        Node Lifecycle Event Timeline[6]: 4s424ms
+           - Open Started: 348.283ms (348.283ms)
+           - Open Finished: 4s423ms (4s075ms)
+           - First Batch Requested: 4s423ms (31.223us)
+           - First Batch Returned: 4s423ms (20.186us)
+           - Last Batch Returned: 4s423ms (345.000ns)
+           - Closed: 4s424ms (349.576us)
+        Node Lifecycle Event Timeline[7]: 4s424ms
+           - Open Started: 348.378ms (348.378ms)
+           - Open Finished: 4s423ms (4s075ms)
+           - First Batch Requested: 4s423ms (22.104us)
+           - First Batch Returned: 4s423ms (20.276us)
+           - Last Batch Returned: 4s423ms (336.000ns)
+           - Closed: 4s424ms (353.433us)
+        Node Lifecycle Event Timeline[8]: 4s368ms
+           - Open Started: 371.062ms (371.062ms)
+           - Open Finished: 4s367ms (3s996ms)
+           - First Batch Requested: 4s367ms (24.187us)
+           - First Batch Returned: 4s367ms (17.535us)
+           - Last Batch Returned: 4s367ms (281.000ns)
+           - Closed: 4s368ms (222.881us)
+        Node Lifecycle Event Timeline[9]: 4s360ms
+           - Open Started: 372.319ms (372.319ms)
+           - Open Finished: 4s360ms (3s988ms)
+           - First Batch Requested: 4s360ms (43.642us)
+           - First Batch Returned: 4s360ms (21.507us)
+           - Last Batch Returned: 4s360ms (338.000ns)
+           - Closed: 4s360ms (301.447us)
+        Node Lifecycle Event Timeline[10]: 4s356ms
+           - Open Started: 373.400ms (373.400ms)
+           - Open Finished: 4s356ms (3s982ms)
+           - First Batch Requested: 4s356ms (44.683us)
+           - First Batch Returned: 4s356ms (26.979us)
+           - Last Batch Returned: 4s356ms (584.000ns)
+           - Closed: 4s356ms (371.094us)
+        Node Lifecycle Event Timeline[11]: 4s362ms
+           - Open Started: 373.405ms (373.405ms)
+           - Open Finished: 4s361ms (3s988ms)
+           - First Batch Requested: 4s361ms (28.432us)
+           - First Batch Returned: 4s361ms (18.969us)
+           - Last Batch Returned: 4s361ms (335.000ns)
+           - Closed: 4s362ms (306.643us)
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - PeakMemoryUsage: mean=133.17 KB (136368) min=133.17 KB (136368) max=133.17 KB (136368)
+         - RowsReturned: mean=1 (1) min=1 (1) max=1 (1)
+         - RowsReturnedRate: mean=0 min=0 max=0
+         - TotalTime: mean=4s027ms min=3s983ms max=4s083ms
+        NonGroupingAggregator 0 [12 instances]:
+          ExecOption[0-11]: Codegen Enabled
+           - BuildTime: mean=163.292ms min=133.963ms max=219.918ms
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - PeakMemoryUsage: mean=26.17 KB (26800) min=26.17 KB (26800) max=26.17 KB (26800)
+           - RowsReturned: mean=1 (1) min=1 (1) max=1 (1)
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+      HDFS_SCAN_NODE (id=0) [12 instances]:(Total: 3s859ms, non-child: 3s859ms, % non-child: 100.00%)
+        ExecOption[2,4]: PARQUET Codegen Enabled, Codegen enabled: 146 out of 146
+        ExecOption[5,10]: PARQUET Codegen Enabled, Codegen enabled: 150 out of 150
+        ExecOption[9]: PARQUET Codegen Enabled, Codegen enabled: 151 out of 151
+        ExecOption[3,8]: PARQUET Codegen Enabled, Codegen enabled: 153 out of 153
+        ExecOption[1,6,11]: PARQUET Codegen Enabled, Codegen enabled: 154 out of 154
+        ExecOption[0]: PARQUET Codegen Enabled, Codegen enabled: 155 out of 155
+        ExecOption[7]: PARQUET Codegen Enabled, Codegen enabled: 158 out of 158
+        File Formats[2,4]: PARQUET/SNAPPY:146
+        File Formats[5,10]: PARQUET/SNAPPY:150
+        File Formats[9]: PARQUET/SNAPPY:151
+        File Formats[3,8]: PARQUET/SNAPPY:153
+        File Formats[1,6,11]: PARQUET/SNAPPY:154
+        File Formats[0]: PARQUET/SNAPPY:155
+        File Formats[7]: PARQUET/SNAPPY:158
+        Hdfs Read Thread Concurrency Bucket[1-2,11]: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[9]: 0:75% 1:0% 2:0% 3:12.5% 4:0% 5:0% 6:0% 7:12.5% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[5]: 0:75% 1:12.5% 2:12.5% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[0]: 0:75% 1:25% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[6]: 0:87.5% 1:0% 2:0% 3:0% 4:12.5% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[4]: 0:87.5% 1:0% 2:12.5% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[3,7-8,10]: 0:87.5% 1:12.5% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Table Name[0-11]: tpcds_parquet.store_sales
+         - BytesReadSeries[0] (500.000ms): 0, 2.64 MB, 5.58 MB, 9.44 MB, 12.27 MB, 15.03 MB, 17.80 MB, 21.56 MB, 25.69 MB
+        Node Lifecycle Event Timeline[0]: 4s329ms
+           - Open Started: 310.021ms (310.021ms)
+           - Open Finished: 310.751ms (729.882us)
+           - First Batch Requested: 310.978ms (226.858us)
+           - First Batch Returned: 335.053ms (24.075ms)
+           - Last Batch Returned: 4s329ms (3s994ms)
+           - Closed: 4s329ms (230.641us)
+        Node Lifecycle Event Timeline[1]: 4s319ms
+           - Open Started: 310.021ms (310.021ms)
+           - Open Finished: 310.944ms (923.058us)
+           - First Batch Requested: 311.156ms (212.721us)
+           - First Batch Returned: 327.973ms (16.816ms)
+           - Last Batch Returned: 4s319ms (3s991ms)
+           - Closed: 4s319ms (124.618us)
+        Node Lifecycle Event Timeline[2]: 4s326ms
+           - Open Started: 310.030ms (310.030ms)
+           - Open Finished: 310.817ms (787.245us)
+           - First Batch Requested: 310.975ms (158.365us)
+           - First Batch Returned: 325.707ms (14.731ms)
+           - Last Batch Returned: 4s326ms (4s000ms)
+           - Closed: 4s326ms (135.204us)
+        Node Lifecycle Event Timeline[3]: 4s320ms
+           - Open Started: 310.033ms (310.033ms)
+           - Open Finished: 310.924ms (890.811us)
+           - First Batch Requested: 311.127ms (203.196us)
+           - First Batch Returned: 327.978ms (16.850ms)
+           - Last Batch Returned: 4s320ms (3s992ms)
+           - Closed: 4s320ms (90.116us)
+        Node Lifecycle Event Timeline[4]: 4s426ms
+           - Open Started: 348.280ms (348.280ms)
+           - Open Finished: 349.163ms (882.740us)
+           - First Batch Requested: 349.413ms (249.352us)
+           - First Batch Returned: 378.564ms (29.151ms)
+           - Last Batch Returned: 4s426ms (4s048ms)
+           - Closed: 4s426ms (115.346us)
+        Node Lifecycle Event Timeline[5]: 4s431ms
+           - Open Started: 348.280ms (348.280ms)
+           - Open Finished: 350.279ms (1.998ms)
+           - First Batch Requested: 350.515ms (235.744us)
+           - First Batch Returned: 378.901ms (28.386ms)
+           - Last Batch Returned: 4s431ms (4s052ms)
+           - Closed: 4s431ms (90.681us)
+        Node Lifecycle Event Timeline[6]: 4s423ms
+           - Open Started: 348.285ms (348.285ms)
+           - Open Finished: 349.319ms (1.033ms)
+           - First Batch Requested: 349.547ms (228.277us)
+           - First Batch Returned: 378.476ms (28.928ms)
+           - Last Batch Returned: 4s423ms (4s045ms)
+           - Closed: 4s423ms (86.989us)
+        Node Lifecycle Event Timeline[7]: 4s423ms
+           - Open Started: 348.380ms (348.380ms)
+           - Open Finished: 349.232ms (852.068us)
+           - First Batch Requested: 349.429ms (196.884us)
+           - First Batch Returned: 381.953ms (32.524ms)
+           - Last Batch Returned: 4s423ms (4s041ms)
+           - Closed: 4s423ms (98.043us)
+        Node Lifecycle Event Timeline[8]: 4s367ms
+           - Open Started: 371.066ms (371.066ms)
+           - Open Finished: 371.955ms (889.224us)
+           - First Batch Requested: 372.215ms (259.767us)
+           - First Batch Returned: 401.941ms (29.725ms)
+           - Last Batch Returned: 4s367ms (3s965ms)
+           - Closed: 4s367ms (90.329us)
+        Node Lifecycle Event Timeline[9]: 4s360ms
+           - Open Started: 372.321ms (372.321ms)
+           - Open Finished: 373.136ms (814.689us)
+           - First Batch Requested: 373.343ms (207.192us)
+           - First Batch Returned: 419.884ms (46.540ms)
+           - Last Batch Returned: 4s360ms (3s940ms)
+           - Closed: 4s360ms (103.462us)
+        Node Lifecycle Event Timeline[10]: 4s356ms
+           - Open Started: 373.402ms (373.402ms)
+           - Open Finished: 374.211ms (809.152us)
+           - First Batch Requested: 374.419ms (208.373us)
+           - First Batch Returned: 405.330ms (30.910ms)
+           - Last Batch Returned: 4s355ms (3s950ms)
+           - Closed: 4s356ms (365.034us)
+        Node Lifecycle Event Timeline[11]: 4s361ms
+           - Open Started: 373.407ms (373.407ms)
+           - Open Finished: 374.252ms (845.372us)
+           - First Batch Requested: 374.453ms (200.225us)
+           - First Batch Returned: 413.791ms (39.338ms)
+           - Last Batch Returned: 4s361ms (3s947ms)
+           - Closed: 4s361ms (107.905us)
+         - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+         - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+         - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+         - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+         - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+         - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+         - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+         - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+         - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+         - AverageHdfsReadThreadConcurrency: mean=0.08 min=0.00 max=1.25
+         - BytesRead: mean=27.44 MB (28775477) min=25.82 MB (27069397) max=30.47 MB (31949790)
+         - BytesReadDataNodeCache: mean=0 min=0 max=0
+         - BytesReadLocal: mean=27.44 MB (28775477) min=25.82 MB (27069397) max=30.47 MB (31949790)
+         - BytesReadRemoteUnexpected: mean=0 min=0 max=0
+         - BytesReadShortCircuit: mean=27.44 MB (28775477) min=25.82 MB (27069397) max=30.47 MB (31949790)
+         - CachedFileHandlesHitCount: mean=3.25K (3247) min=3.11K (3109) max=3.38K (3380)
+         - CachedFileHandlesMissCount: mean=248 (248) min=210 (210) max=276 (276)
+         - CollectionItemsRead: mean=0 (0) min=0 (0) max=0 (0)
+         - DataCacheHitBytes: mean=0 min=0 max=0
+         - DataCacheHitCount: mean=0 (0) min=0 (0) max=0 (0)
+         - DataCacheMissBytes: mean=0 min=0 max=0
+         - DataCacheMissCount: mean=0 (0) min=0 (0) max=0 (0)
+         - DataCachePartialHitCount: mean=0 (0) min=0 (0) max=0 (0)
+         - DecompressionTime: mean=33.930ms min=26.619ms max=45.003ms
+         - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+         - MaterializeTupleTime: mean=766.270ms min=680.111ms max=1s015ms
+         - MaxCompressedTextFileLength: mean=0 min=0 max=0
+         - NumColumns: mean=22 (22) min=22 (22) max=22 (22)
+         - NumDictFilteredRowGroups: mean=0 (0) min=0 (0) max=0 (0)
+         - NumDisksAccessed: mean=1 (1) min=1 (1) max=1 (1)
+         - NumPages: mean=3.35K (3347) min=3.21K (3212) max=3.48K (3476)
+         - NumRowGroups: mean=152 (152) min=146 (146) max=158 (158)
+         - NumRowGroupsWithPageIndex: mean=152 (152) min=146 (146) max=158 (158)
+         - NumScannersWithNoReads: mean=0 (0) min=0 (0) max=0 (0)
+         - NumStatsFilteredPages: mean=0 (0) min=0 (0) max=0 (0)
+         - NumStatsFilteredRowGroups: mean=0 (0) min=0 (0) max=0 (0)
+         - PeakMemoryUsage: mean=8.73 MB (9153580) min=8.40 MB (8806722) max=12.24 MB (12831882)
+         - PerReadThreadRawHdfsThroughput: mean=60.06 MB/sec min=43.95 MB/sec max=71.10 MB/sec
+         - RemoteScanRanges: mean=0 (0) min=0 (0) max=0 (0)
+         - RowsRead: mean=240.03K (240033) min=219.12K (219119) max=341.39K (341391)
+         - RowsReturned: mean=240.03K (240033) min=219.12K (219119) max=341.39K (341391)
+         - RowsReturnedRate: mean=62.20 K/sec min=56.80 K/sec max=88.55 K/sec
+         - ScanRangesComplete: mean=152 (152) min=146 (146) max=158 (158)
+         - ScannerIoWaitTime: mean=397.650ms min=310.306ms max=528.168ms
+         - TotalRawHdfsOpenFileTime: mean=529.984ms min=392.213ms max=663.815ms
+         - TotalRawHdfsReadTime: mean=463.558ms min=378.840ms max=615.711ms
+         - TotalReadThroughput: mean=5.69 MB/sec min=5.47 MB/sec max=6.13 MB/sec
+         - TotalTime: mean=3s859ms min=3s814ms max=3s934ms
+        Buffer pool [12 instances]:
+           - AllocTime: mean=19.285ms min=12.140ms max=30.782ms
+           - CompressionTime: mean=0.000ns min=0.000ns max=0.000ns
+           - CumulativeAllocationBytes: mean=50.04 MB (52467029) min=46.96 MB (49242112) max=54.95 MB (57622528)
+           - CumulativeAllocations: mean=3.50K (3496) min=3.36K (3358) max=3.63K (3634)
+           - EncryptionTime: mean=0.000ns min=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - PeakReservation: mean=8.03 MB (8415914) min=8.00 MB (8388608) max=8.31 MB (8716288)
+           - PeakUnpinnedBytes: mean=0 min=0 max=0
+           - PeakUsedReservation: mean=1.06 MB (1113429) min=376.00 KB (385024) max=8.31 MB (8716288)
+           - ReadIoBytes: mean=0 min=0 max=0
+           - ReadIoOps: mean=0 (0) min=0 (0) max=0 (0)
+           - ReadIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+           - SystemAllocTime: mean=1.586ms min=231.568us max=12.072ms
+           - TotalTime: mean=0.000ns min=0.000ns max=0.000ns
+           - WriteIoBytes: mean=0 min=0 max=0
+           - WriteIoOps: mean=0 (0) min=0 (0) max=0 (0)
+           - WriteIoWaitTime: mean=0.000ns min=0.000ns max=0.000ns
+Query (id=9f4b30ece90cd333:2acc7b4c00000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:52:55.708896000
+    End Time: 2021-02-09 08:53:19.071286000
+    Query Type: DDL
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: compute stats tpcds_parquet.store_sales
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST
+    Query Options (set by configuration and planner): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST
+    DDL Type: COMPUTE_STATS
+    Query Compilation: 6s305ms
+       - Metadata load started: 2.839ms (2.839ms)
+       - Metadata load finished. loaded-tables=1/1 load-requests=1 catalog-updates=5 storage-load-time=756ms: 6s169ms (6s166ms)
+       - Analysis finished: 6s267ms (97.828ms)
+       - Authorization finished (noop): 6s267ms (665.110us)
+       - Planning finished: 6s305ms (37.262ms)
+    Query Timeline: 23s362ms
+       - Query submitted: 49.736us (49.736us)
+       - Planning finished: 6s309ms (6s309ms)
+       - Child queries finished: 12s668ms (6s358ms)
+       - Metastore update finished: 23s157ms (10s488ms)
+       - Rows available: 23s157ms (62.458us)
+       - Unregister query: 23s362ms (205.148ms)
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - CatalogOpExecTimer: 10s366ms
+     - ClientFetchWaitTimer: 205.117ms
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 0 (0)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 0
+     - RowMaterializationTimer: 0.000ns
+     - TotalTime: 0.000ns
+  Child Queries:
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Table Stats Query (id=874b65988023a32b:71d209e900000000):
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+    Column Stats Query (id=504e9a5d292585e8:7c56749700000000):
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
diff --git a/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_extended.expected.txt b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_extended.expected.txt
new file mode 100644
index 0000000..8316188
--- /dev/null
+++ b/testdata/impala-profiles/impala_profile_log_tpcds_compute_stats_v2_extended.expected.txt
@@ -0,0 +1,3275 @@
+Query (id=614b82553aefd2a9:8415494b00000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:52:55.589910000
+    End Time: 2021-02-09 08:52:55.705400000
+    Query Type: SET
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: set all
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): TIMEZONE=America/Los_Angeles
+    Query Options (set by configuration and planner): TIMEZONE=America/Los_Angeles
+    Query Compilation: 69.304ms
+       - Metadata of all 0 tables cached: 29.226ms (29.226ms)
+       - Analysis finished: 48.377ms (19.150ms)
+       - Authorization finished (noop): 50.900ms (2.523ms)
+       - Planning finished: 69.304ms (18.404ms)
+    Query Timeline: 115.484ms
+       - Query submitted: 58.193us (58.193us)
+       - Planning finished: 113.518ms (113.460ms)
+       - Rows available: 114.395ms (877.040us)
+       - Unregister query: 115.484ms (1.089ms)
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - ClientFetchWaitTimer: 1.023ms
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 0 (0)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 0
+     - RowMaterializationTimer: 0.000ns
+     - TotalTime: 0.000ns
+Query (id=874b65988023a32b:71d209e900000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:53:02.023838000
+    End Time: 2021-02-09 08:53:03.677563000
+    Query Type: QUERY
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: SELECT COUNT(*), ss_sold_date_sk FROM tpcds_parquet.store_sales GROUP BY ss_sold_date_sk
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Query Options (set by configuration and planner): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Plan: 
+----------------
+Max Per-Host Resource Reservation: Memory=16.25MB Threads=9
+Per-Host Resource Estimates: Memory=145MB
+Analyzed query: SELECT count(*), ss_sold_date_sk FROM tpcds_parquet.store_sales
+GROUP BY ss_sold_date_sk
+
+F02:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
+|  Per-Instance Resources: mem-estimate=199.12KB mem-reservation=0B thread-reservation=1
+PLAN-ROOT SINK
+|  output exprs: count(*), ss_sold_date_sk
+|  mem-estimate=0B mem-reservation=0B thread-reservation=0
+|
+04:EXCHANGE [UNPARTITIONED]
+|  mem-estimate=199.12KB mem-reservation=0B thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 03(GETNEXT)
+|
+F01:PLAN FRAGMENT [HASH(ss_sold_date_sk)] hosts=3 instances=12
+Per-Instance Resources: mem-estimate=10.19MB mem-reservation=1.94MB thread-reservation=1
+03:AGGREGATE [FINALIZE]
+|  output: count:merge(*)
+|  group by: ss_sold_date_sk
+|  mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 03(GETNEXT), 00(OPEN)
+|
+02:EXCHANGE [HASH(ss_sold_date_sk)]
+|  mem-estimate=199.12KB mem-reservation=0B thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 00(GETNEXT)
+|
+F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=12
+Per-Instance Resources: mem-estimate=26.00MB mem-reservation=2.12MB thread-reservation=1
+01:AGGREGATE [STREAMING]
+|  output: sum_init_zero(tpcds_parquet.store_sales.stats: num_rows)
+|  group by: ss_sold_date_sk
+|  mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
+|  tuple-ids=1 row-size=12B cardinality=1.82K
+|  in pipelines: 00(GETNEXT)
+|
+00:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
+   HDFS partitions=1824/1824 files=1824 size=196.95MB
+   stored statistics:
+     table: rows=2.88M size=196.95MB
+     partitions: 1824/1824 rows=2.88M
+     columns: all
+   extrapolated-rows=disabled max-scan-range-rows=130.09K
+   mem-estimate=16.00MB mem-reservation=128.00KB thread-reservation=0
+   tuple-ids=0 row-size=12B cardinality=2.88M
+   in pipelines: 00(GETNEXT)
+----------------
+    Estimated Per-Host Mem: 152014464
+    Request Pool: default-pool
+    Per Host Min Memory Reservation: tarmstrong-Precision-7540:27001(16.25 MB) tarmstrong-Precision-7540:27000(16.25 MB) tarmstrong-Precision-7540:27002(16.25 MB)
+    Per Host Number of Fragment Instances: tarmstrong-Precision-7540:27001(8) tarmstrong-Precision-7540:27000(9) tarmstrong-Precision-7540:27002(8)
+    Admission result: Admitted immediately
+    Cluster Memory Admitted: 434.92 MB
+    Executor Group: default
+    ExecSummary: 
+Operator              #Hosts  #Inst   Avg Time   Max Time  #Rows  Est. #Rows    Peak Mem  Est. Peak Mem  Detail                    
+-----------------------------------------------------------------------------------------------------------------------------------
+F02:ROOT                   1      1    2.601ms    2.601ms                              0              0                            
+04:EXCHANGE                1      1    4.187ms    4.187ms  1.82K       1.82K  1000.00 KB      199.12 KB  UNPARTITIONED             
+F01:EXCHANGE SENDER        3     12  629.006us  703.273us                        9.84 KB              0                            
+03:AGGREGATE               3     12    4.091ms    4.605ms  1.82K       1.82K     2.15 MB       10.00 MB  FINALIZE                  
+02:EXCHANGE                3     12  337.627us  367.352us  1.82K       1.82K   104.00 KB      199.12 KB  HASH(ss_sold_date_sk)     
+F00:EXCHANGE SENDER        3     12    1.356ms    6.539ms                      166.12 KB              0                            
+01:AGGREGATE               3     12    6.511ms    8.827ms  1.82K       1.82K     2.02 MB       10.00 MB  STREAMING                 
+00:SCAN HDFS               3     12    1s007ms    1s044ms  1.82K       2.88M   132.00 KB       16.00 MB  tpcds_parquet.store_sales
+    Errors: 
+    Query Compilation: 336.500ms
+       - Metadata of all 1 tables cached: 6.915ms (6.915ms)
+       - Analysis finished: 20.406ms (13.491ms)
+       - Authorization finished (noop): 20.826ms (419.852us)
+       - Value transfer graph computed: 38.930ms (18.103ms)
+       - Single node plan created: 227.470ms (188.539ms)
+       - Runtime filters computed: 232.776ms (5.306ms)
+       - Distributed plan created: 233.721ms (944.683us)
+       - Parallel plans created: 236.028ms (2.307ms)
+       - Planning finished: 336.500ms (100.472ms)
+    Query Timeline: 1s654ms
+       - Query submitted: 61.395us (61.395us)
+       - Planning finished: 370.769ms (370.708ms)
+       - Submit for admission: 370.971ms (201.925us)
+       - Completed admission: 390.364ms (19.392ms)
+       - Ready to start on 3 backends: 391.336ms (972.178us)
+       - All 3 execution backends (25 fragment instances) started: 408.377ms (17.040ms)
+       - Rows available: 1s617ms (1s209ms)
+       - First row fetched: 1s630ms (12.597ms)
+       - Last row fetched: 1s642ms (12.643ms)
+       - Released admission control resources: 1s653ms (10.782ms)
+       - Unregister query: 1s654ms (327.299us)
+     - AdmissionControlTimeSinceLastUpdate: 108.000ms
+     - ComputeScanRangeAssignmentTimer: 16.873ms
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - ClientFetchWaitTimer: 151.777us
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 1.82K (1824)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 50.44 K/sec
+     - RowMaterializationTimer: 36.164ms
+     - TotalTime: 0.000ns
+  Execution Profile 874b65988023a32b:71d209e900000000:
+    Number of filters: 0
+    Filter routing table: 
+ ID  Src. Node  Tgt. Node(s)  Target type  Partition filter  Pending (Expected)  First arrived  Completed  Enabled  Bloom Size   Est fpp
+----------------------------------------------------------------------------------------------------------------------------------------
+    Backend startup latencies: Count: 3, min / max: 12ms / 15ms, 25th %-ile: 12ms, 50th %-ile: 13ms, 75th %-ile: 13ms, 90th %-ile: 15ms, 95th %-ile: 15ms, 99.9th %-ile: 15ms
+    Slowest backend to start up: tarmstrong-Precision-7540:27002
+    Per Node Peak Memory Usage: tarmstrong-Precision-7540:27000(17.96 MB) tarmstrong-Precision-7540:27002(18.00 MB) tarmstrong-Precision-7540:27001(18.08 MB)
+    Per Node Bytes Read: tarmstrong-Precision-7540:27000(47.32 MB) tarmstrong-Precision-7540:27002(47.47 MB) tarmstrong-Precision-7540:27001(47.31 MB)
+    Per Node User Time: tarmstrong-Precision-7540:27000(500.073ms) tarmstrong-Precision-7540:27002(482.462ms) tarmstrong-Precision-7540:27001(443.702ms)
+    Per Node System Time: tarmstrong-Precision-7540:27000(24.884ms) tarmstrong-Precision-7540:27002(12.613ms) tarmstrong-Precision-7540:27001(47.738ms)
+     - ExchangeScanRatio: 0.00
+     - FiltersReceived: 0 (0)
+     - FinalizationTimer: 0.000ns
+     - InactiveTotalTime: 0.000ns
+     - InnerNodeSelectivityRatio: 1.03
+     - NumBackends: 3 (3)
+     - NumCompletedBackends: 3 (3)
+     - NumFragmentInstances: 25 (25)
+     - NumFragments: 3 (3)
+     - TotalBytesRead: 142.10 MB (149006243)
+     - TotalBytesSent: 48.76 KB (49926)
+     - TotalCpuTime: 1s511ms
+     - TotalInnerBytesSent: 24.70 KB (25297)
+     - TotalScanBytesSent: 24.05 KB (24629)
+     - TotalTime: 1s263ms
+    Per Node Profiles:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+      tarmstrong-Precision-7540:27000:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 1 (1)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 26ms
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F02:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 10 (10)
+             - CodegenTotalWallClockTime: 50.265ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 35.400ms
+             - CodegenVoluntaryContextSwitches: 19 (19)
+             - CompileTime: 3.232ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 170.687us
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 26.605ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 2 (2)
+             - NumInstructions: 35 (35)
+             - OptimizationTime: 21.896ms
+             - PeakMemoryUsage: 17.50 KB (17920)
+             - PrepareTime: 23.671ms
+             - TotalTime: 50.275ms
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 11 (11)
+             - CodegenTotalWallClockTime: 100.690ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 79.054ms
+             - CodegenVoluntaryContextSwitches: 32 (32)
+             - CompileTime: 6.441ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 3.551ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 81.764ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 38 (38)
+             - NumInstructions: 757 (757)
+             - OptimizationTime: 70.636ms
+             - PeakMemoryUsage: 378.50 KB (387584)
+             - PrepareTime: 18.938ms
+             - TotalTime: 100.703ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 30 (30)
+             - CodegenTotalWallClockTime: 103.725ms
+               - CodegenSysTime: 12.235ms
+               - CodegenUserTime: 84.369ms
+             - CodegenVoluntaryContextSwitches: 30 (30)
+             - CompileTime: 5.503ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 6.608ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 80.087ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 54 (54)
+             - NumInstructions: 1.31K (1306)
+             - OptimizationTime: 66.685ms
+             - PeakMemoryUsage: 653.00 KB (668672)
+             - PrepareTime: 23.649ms
+             - TotalTime: 103.735ms
+      tarmstrong-Precision-7540:27002:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 1 (1)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 10ms
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 2 (2)
+             - CodegenTotalWallClockTime: 87.886ms
+               - CodegenSysTime: 4.014ms
+               - CodegenUserTime: 82.635ms
+             - CodegenVoluntaryContextSwitches: 1 (1)
+             - CompileTime: 6.882ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 4.045ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 65.241ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 38 (38)
+             - NumInstructions: 757 (757)
+             - OptimizationTime: 53.145ms
+             - PeakMemoryUsage: 378.50 KB (387584)
+             - PrepareTime: 22.659ms
+             - TotalTime: 87.900ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 10 (10)
+             - CodegenTotalWallClockTime: 105.531ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 102.902ms
+             - CodegenVoluntaryContextSwitches: 1 (1)
+             - CompileTime: 7.686ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 5.646ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 89.936ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 54 (54)
+             - NumInstructions: 1.31K (1306)
+             - OptimizationTime: 75.584ms
+             - PeakMemoryUsage: 653.00 KB (668672)
+             - PrepareTime: 15.609ms
+             - TotalTime: 105.544ms
+      tarmstrong-Precision-7540:27001:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 1 (1)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 14ms
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 7 (7)
+             - CodegenTotalWallClockTime: 88.042ms
+               - CodegenSysTime: 3.992ms
+               - CodegenUserTime: 83.491ms
+             - CodegenVoluntaryContextSwitches: 10 (10)
+             - CompileTime: 6.530ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 4.560ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 64.300ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 38 (38)
+             - NumInstructions: 757 (757)
+             - OptimizationTime: 51.874ms
+             - PeakMemoryUsage: 378.50 KB (387584)
+             - PrepareTime: 23.759ms
+             - TotalTime: 88.057ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 3 (3)
+             - CodegenTotalWallClockTime: 112.599ms
+               - CodegenSysTime: 8.048ms
+               - CodegenUserTime: 92.568ms
+             - CodegenVoluntaryContextSwitches: 29 (29)
+             - CompileTime: 6.610ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 6.594ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 85.473ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 54 (54)
+             - NumInstructions: 1.31K (1306)
+             - OptimizationTime: 70.779ms
+             - PeakMemoryUsage: 653.00 KB (668672)
+             - PrepareTime: 27.139ms
+             - TotalTime: 112.612ms
+    Coordinator Fragment F02:
+    Instances: Instance 874b65988023a32b:71d209e900000000 (host=tarmstrong-Precision-7540:27000)
+      Last report received time[0]: 2021-02-09 08:53:03.675
+       - MemoryUsage[0] (500.000ms): 8.00 KB, 8.00 KB, 8.00 KB
+      Fragment Instance Lifecycle Event Timeline[0]: 1s208ms
+         - Prepare Finished: 891.562us (891.562us)
+         - Open Finished: 1s183ms (1s182ms)
+         - First Batch Produced: 1s194ms (11.546ms)
+         - First Batch Sent: 1s196ms (1.082ms)
+         - ExecInternal Finished: 1s208ms (12.648ms)
+       - AverageThreadTokens: 0.00
+       - BytesAssigned: 0
+       - CompletionTime: 1s247ms
+       - ExchangeScanRatio: 0.00
+       - ExecutionRate: 0.00 /sec
+       - InactiveTotalTime: 0.000ns
+       - PeakMemoryUsage: 1008.00 KB (1032192)
+       - PeakReservation: 0
+       - PeakUsedReservation: 0
+       - PerHostPeakMemUsage: 17.96 MB (18831232)
+       - RowsProduced: 1.82K (1824)
+       - TotalNetworkReceiveTime: 1s151ms
+       - TotalNetworkSendTime: 0.000ns
+       - TotalStorageWaitTime: 0.000ns
+       - TotalThreadsInvoluntaryContextSwitches: 14 (14)
+       - TotalThreadsTotalWallClockTime: 1s207ms
+         - TotalThreadsSysTime: 0.000ns
+         - TotalThreadsUserTime: 42.441ms
+       - TotalThreadsVoluntaryContextSwitches: 140 (140)
+       - TotalTime: 0.000ns
+      Fragment Instance Lifecycle Timings:
+         - ExecTime: 25.262ms
+           - ExecTreeExecTime: 22.256ms
+         - InactiveTotalTime: 0.000ns
+         - OpenTime: 1s182ms
+           - ExecTreeOpenTime: 1s132ms
+         - PrepareTime: 223.242us
+           - ExecTreePrepareTime: 132.433us
+         - TotalTime: 0.000ns
+      PLAN_ROOT_SINK:(Total: 2.601ms, non-child: 2.601ms, % non-child: 100.00%)
+         - InactiveTotalTime: 0.000ns
+         - PeakMemoryUsage: 0
+         - RowsSent: 1.82K (1824)
+         - RowsSentRate: 701.10 K/sec
+         - TotalTime: 2.601ms
+      EXCHANGE_NODE (id=4):(Total: 1s154ms, non-child: 4.187ms, % non-child: 0.36%)
+        Node Lifecycle Event Timeline[0]: 1s208ms
+           - Open Started: 51.273ms (51.273ms)
+           - Open Finished: 1s183ms (1s132ms)
+           - First Batch Requested: 1s183ms (25.306us)
+           - First Batch Returned: 1s194ms (11.541ms)
+           - Last Batch Returned: 1s206ms (11.991ms)
+           - Closed: 1s208ms (1.711ms)
+         - ConvertRowBatchTime: 1.709ms
+         - InactiveTotalTime: 1s150ms
+         - PeakMemoryUsage: 1000.00 KB (1024000)
+         - RowsReturned: 1.82K (1824)
+         - RowsReturnedRate: 1.58 K/sec
+         - TotalTime: 1s154ms
+        Buffer pool:
+           - AllocTime: 951.115us
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 3.00 MB (3145728)
+           - CumulativeAllocations: 384 (384)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 1000.00 KB (1024000)
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 1000.00 KB (1024000)
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - SystemAllocTime: 363.515us
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        Dequeue:
+           - BytesDequeued[0] (500.000ms): 0, 0, 0
+           - FirstBatchWaitTime: 1s132ms
+           - InactiveTotalTime: 0.000ns
+           - TotalBytesDequeued: 37.41 KB (38304)
+           - TotalGetBatchTime: 1s151ms
+             - DataWaitTime: 1s150ms
+           - TotalTime: 0.000ns
+        Enqueue:
+           - BytesReceived[0] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[0] (500.000ms): 0, 0, 0
+           - DispatchTime: (Avg: 85.578us ; Min: 29.095us ; Max: 738.280us ; Number of samples: 192)
+           - DeserializeRowBatchTime: 3.977ms
+           - InactiveTotalTime: 0.000ns
+           - TotalBatchesEnqueued: 192 (192)
+           - TotalBatchesReceived: 192 (192)
+           - TotalBytesReceived: 24.70 KB (25297)
+           - TotalEarlySenders: 0 (0)
+           - TotalEosReceived: 12 (12)
+           - TotalHasDeferredRPCsTime: 0.000ns
+           - TotalRPCsDeferred: 0 (0)
+           - TotalTime: 0.000ns
+    Fragment F01 [12 instances]:
+    Instances: Instance 874b65988023a32b:71d209e90000000d (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e90000000e (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e90000000f (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000010 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000011 (host=tarmstrong-Precision-7540:27000), Instance 874b65988023a32b:71d209e900000012 (host=tarmstrong-Pr [...]
+      Last report received time[0-3]: 2021-02-09 08:53:03.669
+      Last report received time[8-11]: 2021-02-09 08:53:03.674
+      Last report received time[4-7]: 2021-02-09 08:53:03.675
+       - MemoryUsage[0] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[1] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[2] (500.000ms): 30.97 KB, 30.97 KB, 2.24 MB
+       - MemoryUsage[3] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[4] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[5] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[6] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[7] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[8] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[9] (500.000ms): 30.97 KB, 30.97 KB, 2.23 MB
+       - MemoryUsage[10] (500.000ms): 30.97 KB, 30.97 KB, 2.25 MB
+       - MemoryUsage[11] (500.000ms): 30.97 KB, 30.97 KB, 2.24 MB
+       - ThreadUsage[0] (500.000ms): 1, 1, 1
+       - ThreadUsage[1] (500.000ms): 1, 1, 1
+       - ThreadUsage[2] (500.000ms): 1, 1, 1
+       - ThreadUsage[3] (500.000ms): 1, 1, 1
+       - ThreadUsage[4] (500.000ms): 1, 1, 1
+       - ThreadUsage[5] (500.000ms): 1, 1, 1
+       - ThreadUsage[6] (500.000ms): 1, 1, 1
+       - ThreadUsage[7] (500.000ms): 1, 1, 1
+       - ThreadUsage[8] (500.000ms): 1, 1, 1
+       - ThreadUsage[9] (500.000ms): 1, 1, 1
+       - ThreadUsage[10] (500.000ms): 1, 1, 1
+       - ThreadUsage[11] (500.000ms): 1, 1, 1
+      Fragment Instance Lifecycle Event Timeline[0]: 1s199ms
+         - Prepare Finished: 9.319ms (9.319ms)
+         - Open Finished: 1s180ms (1s171ms)
+         - First Batch Produced: 1s180ms (56.379us)
+         - First Batch Sent: 1s180ms (25.630us)
+         - ExecInternal Finished: 1s199ms (19.087ms)
+      Fragment Instance Lifecycle Event Timeline[1]: 1s201ms
+         - Prepare Finished: 9.319ms (9.319ms)
+         - Open Finished: 1s180ms (1s171ms)
+         - First Batch Produced: 1s180ms (60.722us)
+         - First Batch Sent: 1s180ms (40.555us)
+         - ExecInternal Finished: 1s201ms (20.592ms)
+      Fragment Instance Lifecycle Event Timeline[2]: 1s201ms
+         - Prepare Finished: 13.196ms (13.196ms)
+         - Open Finished: 1s181ms (1s167ms)
+         - First Batch Produced: 1s181ms (60.527us)
+         - First Batch Sent: 1s181ms (43.214us)
+         - ExecInternal Finished: 1s201ms (19.769ms)
+      Fragment Instance Lifecycle Event Timeline[3]: 1s199ms
+         - Prepare Finished: 21.292ms (21.292ms)
+         - Open Finished: 1s180ms (1s159ms)
+         - First Batch Produced: 1s180ms (57.789us)
+         - First Batch Sent: 1s180ms (39.978us)
+         - ExecInternal Finished: 1s199ms (18.846ms)
+      Fragment Instance Lifecycle Event Timeline[4]: 1s198ms
+         - Prepare Finished: 1.121ms (1.121ms)
+         - Open Finished: 1s183ms (1s182ms)
+         - First Batch Produced: 1s183ms (43.818us)
+         - First Batch Sent: 1s183ms (25.883us)
+         - ExecInternal Finished: 1s198ms (14.434ms)
+      Fragment Instance Lifecycle Event Timeline[5]: 1s198ms
+         - Prepare Finished: 3.848ms (3.848ms)
+         - Open Finished: 1s183ms (1s179ms)
+         - First Batch Produced: 1s183ms (52.235us)
+         - First Batch Sent: 1s183ms (36.362us)
+         - ExecInternal Finished: 1s198ms (15.194ms)
+      Fragment Instance Lifecycle Event Timeline[6]: 1s197ms
+         - Prepare Finished: 12.230ms (12.230ms)
+         - Open Finished: 1s183ms (1s171ms)
+         - First Batch Produced: 1s183ms (60.463us)
+         - First Batch Sent: 1s183ms (32.628us)
+         - ExecInternal Finished: 1s197ms (14.152ms)
+      Fragment Instance Lifecycle Event Timeline[7]: 1s200ms
+         - Prepare Finished: 12.775ms (12.775ms)
+         - Open Finished: 1s186ms (1s173ms)
+         - First Batch Produced: 1s186ms (41.109us)
+         - First Batch Sent: 1s186ms (27.478us)
+         - ExecInternal Finished: 1s200ms (14.440ms)
+      Fragment Instance Lifecycle Event Timeline[8]: 1s204ms
+         - Prepare Finished: 34.481ms (34.481ms)
+         - Open Finished: 1s186ms (1s152ms)
+         - First Batch Produced: 1s186ms (63.682us)
+         - First Batch Sent: 1s186ms (40.819us)
+         - ExecInternal Finished: 1s204ms (18.074ms)
+      Fragment Instance Lifecycle Event Timeline[9]: 1s203ms
+         - Prepare Finished: 42.591ms (42.591ms)
+         - Open Finished: 1s186ms (1s144ms)
+         - First Batch Produced: 1s186ms (69.931us)
+         - First Batch Sent: 1s186ms (46.787us)
+         - ExecInternal Finished: 1s203ms (16.231ms)
+      Fragment Instance Lifecycle Event Timeline[10]: 1s205ms
+         - Prepare Finished: 42.591ms (42.591ms)
+         - Open Finished: 1s186ms (1s143ms)
+         - First Batch Produced: 1s186ms (64.679us)
+         - First Batch Sent: 1s186ms (33.532us)
+         - ExecInternal Finished: 1s205ms (18.804ms)
+      Fragment Instance Lifecycle Event Timeline[11]: 1s205ms
+         - Prepare Finished: 50.498ms (50.498ms)
+         - Open Finished: 1s187ms (1s136ms)
+         - First Batch Produced: 1s187ms (50.358us)
+         - First Batch Sent: 1s187ms (28.799us)
+         - ExecInternal Finished: 1s205ms (17.688ms)
+       - AverageThreadTokens: mean=1.00 min=1.00 p50=1.00 p75=1.00 p90=1.00 p95=1.00 max=1.00
+       - BytesAssigned: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+       - CompletionTime: mean=1s242ms min=1s237ms p50=1s243ms p75=1s247ms p90=1s247ms p95=1s247ms max=1s247ms
+         [1s237ms, 1s237ms, 1s237ms, 1s237ms, 1s247ms, 1s247ms, 1s247ms, 1s247ms,
+          1s243ms, 1s243ms, 1s243ms, 1s243ms]
+       - ExchangeScanRatio: mean=0.00 min=0.00 p50=0.00 p75=0.00 p90=0.00 p95=0.00 max=0.00
+       - ExecutionRate: mean=0.00 /sec min=0.00 /sec p50=0.00 /sec p75=0.00 /sec p90=0.00 /sec p95=0.00 /sec max=0.00 /sec
+       - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+       - PeakMemoryUsage: mean=2.26 MB (2374624) min=2.26 MB (2374624) p50=2.26 MB (2374624) p75=2.26 MB (2374624) p90=2.26 MB (2374624) p95=2.26 MB (2374624) max=2.26 MB (2374624)
+       - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) p50=2.12 MB (2228224) p75=2.12 MB (2228224) p90=2.12 MB (2228224) p95=2.12 MB (2228224) max=2.12 MB (2228224)
+       - PeakUsedReservation: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+       - PerHostPeakMemUsage: mean=18.01 MB (18889170) min=17.96 MB (18831232) p50=18.00 MB (18873084) p75=18.08 MB (18963196) p90=18.08 MB (18963196) p95=18.08 MB (18963196) max=18.08 MB (18963196)
+         [18.00 MB, 18.00 MB, 18.00 MB, 18.00 MB, 17.96 MB, 17.96 MB, 17.96 MB, 17.96 MB,
+          18.08 MB, 18.08 MB, 18.08 MB, 18.08 MB]
+       - RowsProduced: mean=152 (152) min=125 (125) p50=149 (149) p75=159 (159) p90=159 (159) p95=161 (161) max=180 (180)
+         [161, 151, 145, 141, 157, 148, 159, 149,
+          149, 180, 125, 159]
+       - TotalNetworkReceiveTime: mean=1s074ms min=1s061ms p50=1s078ms p75=1s080ms p90=1s080ms p95=1s081ms max=1s081ms
+         [1s080ms, 1s080ms, 1s081ms, 1s080ms, 1s079ms, 1s078ms, 1s078ms, 1s081ms,
+          1s061ms, 1s061ms, 1s061ms, 1s062ms]
+       - TotalNetworkSendTime: mean=14.875ms min=11.322ms p50=14.933ms p75=16.477ms p90=16.760ms p95=17.474ms max=18.352ms
+         [16.760ms, 18.352ms, 17.474ms, 16.477ms, 11.322ms, 12.795ms, 11.889ms, 12.172ms,
+          15.922ms, 13.974ms, 16.429ms, 14.933ms]
+       - TotalStorageWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+       - TotalThreadsInvoluntaryContextSwitches: mean=2 (2) min=0 (0) p50=0 (0) p75=1 (1) p90=2 (2) p95=7 (7) max=13 (13)
+         [2, 0, 0, 0, 13, 1, 0, 0,
+          7, 0, 1, 1]
+       - TotalThreadsTotalWallClockTime: mean=1s180ms min=1s154ms p50=1s185ms p75=1s190ms p90=1s191ms p95=1s194ms max=1s197ms
+         [1s190ms, 1s191ms, 1s187ms, 1s178ms, 1s197ms, 1s194ms, 1s185ms, 1s187ms,
+          1s170ms, 1s160ms, 1s162ms, 1s154ms]
+         - TotalThreadsSysTime: mean=992.833us min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=4.089ms max=7.825ms
+           [4.089ms, 0.000ns, 0.000ns, 0.000ns, 0.000ns, 0.000ns, 0.000ns, 0.000ns,
+            7.825ms, 0.000ns, 0.000ns, 0.000ns]
+         - TotalThreadsUserTime: mean=26.007ms min=5.372ms p50=5.877ms p75=5.978ms p90=85.728ms p95=86.412ms max=88.431ms
+           [88.431ms, 5.372ms, 5.978ms, 5.944ms, 86.412ms, 5.564ms, 5.895ms, 5.707ms,
+            85.728ms, 5.683ms, 5.501ms, 5.877ms]
+       - TotalThreadsVoluntaryContextSwitches: mean=32 (32) min=25 (25) p50=29 (29) p75=32 (32) p90=37 (37) p95=44 (44) max=59 (59)
+         [27, 30, 27, 29, 59, 28, 32, 44,
+          37, 29, 25, 28]
+       - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      Fragment Instance Lifecycle Timings [12 instances]:
+         - ExecTime: mean=17.341ms min=14.208ms p50=17.740ms p75=18.919ms p90=19.152ms p95=19.853ms max=20.658ms
+           [19.152ms, 20.658ms, 19.853ms, 18.919ms, 14.479ms, 15.263ms, 14.208ms, 14.468ms,
+            18.134ms, 16.325ms, 18.887ms, 17.740ms]
+           - ExecTreeExecTime: mean=1.663ms min=1.482ms p50=1.547ms p75=1.572ms p90=1.736ms p95=1.974ms max=2.454ms
+             [1.559ms, 1.485ms, 1.563ms, 1.547ms, 2.454ms, 1.736ms, 1.537ms, 1.572ms,
+              1.482ms, 1.543ms, 1.506ms, 1.974ms]
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - OpenTime: mean=1s162ms min=1s136ms p50=1s167ms p75=1s171ms p90=1s173ms p95=1s179ms max=1s182ms
+           [1s171ms, 1s170ms, 1s167ms, 1s159ms, 1s182ms, 1s179ms, 1s171ms, 1s173ms,
+            1s151ms, 1s144ms, 1s143ms, 1s136ms]
+           - ExecTreeOpenTime: mean=1s076ms min=1s063ms p50=1s081ms p75=1s083ms p90=1s083ms p95=1s083ms max=1s084ms
+             [1s083ms, 1s082ms, 1s083ms, 1s083ms, 1s081ms, 1s081ms, 1s081ms, 1s084ms,
+              1s063ms, 1s063ms, 1s063ms, 1s064ms]
+         - PrepareTime: mean=482.394us min=330.317us p50=491.332us p75=523.441us p90=528.888us p95=554.040us max=592.865us
+           [592.865us, 491.332us, 495.343us, 523.441us, 363.816us, 330.317us, 456.076us, 482.303us,
+            514.923us, 554.040us, 455.395us, 528.888us]
+           - ExecTreePrepareTime: mean=286.959us min=190.510us p50=269.344us p75=314.104us p90=324.823us p95=328.644us max=376.246us
+             [376.246us, 324.823us, 301.614us, 328.644us, 234.989us, 190.510us, 269.344us, 259.007us,
+              307.853us, 268.070us, 268.313us, 314.104us]
+         - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      KrpcDataStreamSender (dst_id=4) [12 instances]:(Total: 15.504ms, non-child: 629.006us, % non-child: 4.06%)
+        ExecOption[0-11]: Unpartitioned Sender Codegen Disabled: not needed
+         - BytesSent[0] (500.000ms): 0, 0, 0
+         - BytesSent[1] (500.000ms): 0, 0, 0
+         - BytesSent[2] (500.000ms): 0, 0, 0
+         - BytesSent[3] (500.000ms): 0, 0, 0
+         - BytesSent[4] (500.000ms): 0, 0, 0
+         - BytesSent[5] (500.000ms): 0, 0, 0
+         - BytesSent[6] (500.000ms): 0, 0, 0
+         - BytesSent[7] (500.000ms): 0, 0, 0
+         - BytesSent[8] (500.000ms): 0, 0, 0
+         - BytesSent[9] (500.000ms): 0, 0, 0
+         - BytesSent[10] (500.000ms): 0, 0, 0
+         - BytesSent[11] (500.000ms): 0, 0, 0
+         - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [0]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [1]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [2]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [3]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [4]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [5]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [6]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [7]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [8]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [9]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [10]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+      [11]   - NetworkThroughput: (Avg: 293.70 KB/sec ; Min: 22.32 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 192)
+         - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [0]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [1]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [2]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [3]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [4]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [5]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [6]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [7]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [8]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [9]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [10]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+      [11]   - RpcNetworkTime: (Avg: 807.928us ; Min: 113.656us ; Max: 3.404ms ; Number of samples: 204)
+         - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [0]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [1]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [2]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [3]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [4]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [5]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [6]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [7]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [8]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [9]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [10]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+      [11]   - RpcRecvrTime: (Avg: 111.588us ; Min: 28.393us ; Max: 777.779us ; Number of samples: 204)
+         - EosSent: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+         - InactiveTotalTime: mean=14.875ms min=11.322ms p50=14.933ms p75=16.477ms p90=16.760ms p95=17.474ms max=18.352ms
+           [16.760ms, 18.352ms, 17.474ms, 16.477ms, 11.322ms, 12.795ms, 11.889ms, 12.172ms,
+            15.922ms, 13.974ms, 16.429ms, 14.933ms]
+         - PeakMemoryUsage: mean=9.84 KB (10080) min=9.84 KB (10080) p50=9.84 KB (10080) p75=9.84 KB (10080) p90=9.84 KB (10080) p95=9.84 KB (10080) max=9.84 KB (10080)
+         - RowsSent: mean=152 (152) min=125 (125) p50=149 (149) p75=159 (159) p90=159 (159) p95=161 (161) max=180 (180)
+           [161, 151, 145, 141, 157, 148, 159, 149,
+            149, 180, 125, 159]
+         - RpcFailure: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - RpcRetry: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - SerializeBatchTime: mean=126.264us min=112.853us p50=123.555us p75=129.544us p90=135.646us p95=135.984us max=149.390us
+           [129.544us, 123.555us, 124.177us, 124.882us, 119.454us, 135.984us, 122.955us, 121.032us,
+            112.853us, 149.390us, 115.707us, 135.646us]
+         - TotalBytesSent: mean=2.06 KB (2108) min=1.73 KB (1776) p50=2.03 KB (2079) p75=2.14 KB (2193) p90=2.15 KB (2199) p95=2.16 KB (2211) max=2.40 KB (2457)
+           [2.16 KB, 2.04 KB, 1.98 KB, 1.93 KB, 2.11 KB, 2.02 KB, 2.15 KB, 2.03 KB,
+            2.02 KB, 2.40 KB, 1.73 KB, 2.14 KB]
+         - TotalTime: mean=15.504ms min=11.856ms p50=15.621ms p75=17.181ms p90=17.437ms p95=18.153ms max=19.007ms
+           [17.437ms, 19.007ms, 18.153ms, 17.181ms, 11.856ms, 13.371ms, 12.481ms, 12.739ms,
+            16.535ms, 14.635ms, 17.032ms, 15.621ms]
+         - UncompressedRowBatchSize: mean=3.12 KB (3192) min=2.56 KB (2625) p50=3.06 KB (3129) p75=3.26 KB (3339) p90=3.26 KB (3339) p95=3.30 KB (3381) max=3.69 KB (3780)
+           [3.30 KB, 3.10 KB, 2.97 KB, 2.89 KB, 3.22 KB, 3.04 KB, 3.26 KB, 3.06 KB,
+            3.06 KB, 3.69 KB, 2.56 KB, 3.26 KB]
+      AGGREGATION_NODE (id=3) [12 instances]:(Total: 1s078ms, non-child: 4.091ms, % non-child: 0.38%)
+        Node Lifecycle Event Timeline[0]: 1s198ms
+           - Open Started: 97.335ms (97.335ms)
+           - Open Finished: 1s180ms (1s083ms)
+           - First Batch Requested: 1s180ms (20.882us)
+           - First Batch Returned: 1s180ms (45.469us)
+           - Last Batch Returned: 1s198ms (18.004ms)
+           - Closed: 1s198ms (91.614us)
+        Node Lifecycle Event Timeline[1]: 1s199ms
+           - Open Started: 97.336ms (97.336ms)
+           - Open Finished: 1s180ms (1s082ms)
+           - First Batch Requested: 1s180ms (24.205us)
+           - First Batch Returned: 1s180ms (57.179us)
+           - Last Batch Returned: 1s199ms (19.207ms)
+           - Closed: 1s199ms (90.315us)
+        Node Lifecycle Event Timeline[2]: 1s200ms
+           - Open Started: 97.342ms (97.342ms)
+           - Open Finished: 1s181ms (1s083ms)
+           - First Batch Requested: 1s181ms (25.369us)
+           - First Batch Returned: 1s181ms (56.910us)
+           - Last Batch Returned: 1s199ms (18.694ms)
+           - Closed: 1s200ms (88.529us)
+        Node Lifecycle Event Timeline[3]: 1s198ms
+           - Open Started: 97.345ms (97.345ms)
+           - Open Finished: 1s180ms (1s083ms)
+           - First Batch Requested: 1s180ms (24.634us)
+           - First Batch Returned: 1s180ms (53.645us)
+           - Last Batch Returned: 1s197ms (17.543ms)
+           - Closed: 1s198ms (141.682us)
+        Node Lifecycle Event Timeline[4]: 1s196ms
+           - Open Started: 101.907ms (101.907ms)
+           - Open Finished: 1s183ms (1s081ms)
+           - First Batch Requested: 1s183ms (20.669us)
+           - First Batch Returned: 1s183ms (41.095us)
+           - Last Batch Returned: 1s196ms (12.507ms)
+           - Closed: 1s196ms (116.106us)
+        Node Lifecycle Event Timeline[5]: 1s196ms
+           - Open Started: 101.910ms (101.910ms)
+           - Open Finished: 1s183ms (1s081ms)
+           - First Batch Requested: 1s183ms (26.277us)
+           - First Batch Returned: 1s183ms (49.744us)
+           - Last Batch Returned: 1s196ms (13.328ms)
+           - Closed: 1s196ms (90.392us)
+        Node Lifecycle Event Timeline[6]: 1s195ms
+           - Open Started: 101.924ms (101.924ms)
+           - Open Finished: 1s183ms (1s081ms)
+           - First Batch Requested: 1s183ms (23.064us)
+           - First Batch Returned: 1s183ms (57.064us)
+           - Last Batch Returned: 1s195ms (11.779ms)
+           - Closed: 1s195ms (122.173us)
+        Node Lifecycle Event Timeline[7]: 1s200ms
+           - Open Started: 101.921ms (101.921ms)
+           - Open Finished: 1s186ms (1s084ms)
+           - First Batch Requested: 1s186ms (29.063us)
+           - First Batch Returned: 1s186ms (38.678us)
+           - Last Batch Returned: 1s199ms (13.658ms)
+           - Closed: 1s200ms (124.149us)
+        Node Lifecycle Event Timeline[8]: 1s202ms
+           - Open Started: 122.660ms (122.660ms)
+           - Open Finished: 1s186ms (1s063ms)
+           - First Batch Requested: 1s186ms (46.917us)
+           - First Batch Returned: 1s186ms (60.380us)
+           - Last Batch Returned: 1s202ms (15.713ms)
+           - Closed: 1s202ms (90.718us)
+        Node Lifecycle Event Timeline[9]: 1s201ms
+           - Open Started: 122.681ms (122.681ms)
+           - Open Finished: 1s186ms (1s063ms)
+           - First Batch Requested: 1s186ms (26.927us)
+           - First Batch Returned: 1s186ms (65.865us)
+           - Last Batch Returned: 1s201ms (14.984ms)
+           - Closed: 1s201ms (94.386us)
+        Node Lifecycle Event Timeline[10]: 1s205ms
+           - Open Started: 122.676ms (122.676ms)
+           - Open Finished: 1s186ms (1s063ms)
+           - First Batch Requested: 1s186ms (36.408us)
+           - First Batch Returned: 1s186ms (60.028us)
+           - Last Batch Returned: 1s204ms (18.392ms)
+           - Closed: 1s205ms (168.330us)
+        Node Lifecycle Event Timeline[11]: 1s203ms
+           - Open Started: 122.686ms (122.686ms)
+           - Open Finished: 1s187ms (1s064ms)
+           - First Batch Requested: 1s187ms (23.976us)
+           - First Batch Returned: 1s187ms (47.235us)
+           - Last Batch Returned: 1s203ms (16.034ms)
+           - Closed: 1s203ms (99.695us)
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - PeakMemoryUsage: mean=2.15 MB (2249856) min=2.15 MB (2249856) p50=2.15 MB (2249856) p75=2.15 MB (2249856) p90=2.15 MB (2249856) p95=2.15 MB (2249856) max=2.15 MB (2249856)
+         - RowsReturned: mean=152 (152) min=125 (125) p50=149 (149) p75=159 (159) p90=159 (159) p95=161 (161) max=180 (180)
+           [161, 151, 145, 141, 157, 148, 159, 149,
+            149, 180, 125, 159]
+         - RowsReturnedRate: mean=140.00 /sec min=117.00 /sec p50=139.00 /sec p75=146.00 /sec p90=148.00 /sec p95=149.00 /sec max=168.00 /sec
+           [148.00 /sec, 139.00 /sec, 133.00 /sec, 129.00 /sec, 144.00 /sec, 136.00 /sec, 146.00 /sec, 137.00 /sec,
+            139.00 /sec, 168.00 /sec, 117.00 /sec, 149.00 /sec]
+         - TotalTime: mean=1s078ms min=1s065ms p50=1s083ms p75=1s084ms p90=1s084ms p95=1s085ms max=1s086ms
+           [1s084ms, 1s084ms, 1s085ms, 1s084ms, 1s084ms, 1s083ms, 1s083ms, 1s086ms,
+            1s065ms, 1s065ms, 1s065ms, 1s066ms]
+        GroupingAggregator 0 [12 instances]:
+          ExecOption[0-11]: Codegen Enabled
+           - BuildTime: mean=302.909us min=228.963us p50=308.324us p75=317.071us p90=320.933us p95=327.247us max=373.636us
+             [288.849us, 305.619us, 320.933us, 295.645us, 315.705us, 228.963us, 310.738us, 242.179us,
+              327.247us, 373.636us, 317.071us, 308.324us]
+           - GetResultsTime: mean=698.381us min=658.962us p50=680.102us p75=685.306us p90=693.201us p95=704.513us max=917.383us
+             [693.201us, 659.787us, 670.786us, 674.374us, 684.357us, 917.383us, 680.102us, 685.306us,
+              682.166us, 704.513us, 669.642us, 658.962us]
+           - HTResizeTime: mean=2.314us min=1.188us p50=2.095us p75=2.516us p90=3.263us p95=3.467us max=3.632us
+             [2.033us, 1.936us, 1.350us, 1.188us, 2.516us, 2.095us, 2.172us, 2.198us,
+              3.467us, 3.263us, 1.921us, 3.632us]
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - LargestPartitionPercent: mean=9 (9) min=8 (8) p50=10 (10) p75=10 (10) p90=11 (11) p95=11 (11) max=11 (11)
+             [10, 10, 9, 11, 11, 10, 10, 9,
+              9, 8, 8, 11]
+           - MaxPartitionLevel: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - NumRepartitions: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - PartitionsCreated: mean=16 (16) min=16 (16) p50=16 (16) p75=16 (16) p90=16 (16) p95=16 (16) max=16 (16)
+           - PeakMemoryUsage: mean=2.14 MB (2245760) min=2.14 MB (2245760) p50=2.14 MB (2245760) p75=2.14 MB (2245760) p90=2.14 MB (2245760) p95=2.14 MB (2245760) max=2.14 MB (2245760)
+           - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) p50=2.12 MB (2228224) p75=2.12 MB (2228224) p90=2.12 MB (2228224) p95=2.12 MB (2228224) max=2.12 MB (2228224)
+           - PeakUsedReservation: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - RowsRepartitioned: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - RowsReturned: mean=152 (152) min=125 (125) p50=149 (149) p75=159 (159) p90=159 (159) p95=161 (161) max=180 (180)
+             [161, 151, 145, 141, 157, 148, 159, 149,
+              149, 180, 125, 159]
+           - SpilledPartitions: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+          Buffer pool [12 instances]:
+             - AllocTime: mean=64.036us min=49.078us p50=65.372us p75=67.865us p90=69.935us p95=73.699us max=73.886us
+               [61.715us, 65.372us, 66.955us, 69.935us, 67.865us, 54.653us, 59.263us, 49.078us,
+                73.699us, 60.204us, 65.815us, 73.886us]
+             - CompressionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - CumulativeAllocationBytes: mean=1.25 MB (1310720) min=1.25 MB (1310720) p50=1.25 MB (1310720) p75=1.25 MB (1310720) p90=1.25 MB (1310720) p95=1.25 MB (1310720) max=1.25 MB (1310720)
+             - CumulativeAllocations: mean=20 (20) min=20 (20) p50=20 (20) p75=20 (20) p90=20 (20) p95=20 (20) max=20 (20)
+             - EncryptionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) p50=2.12 MB (2228224) p75=2.12 MB (2228224) p90=2.12 MB (2228224) p95=2.12 MB (2228224) max=2.12 MB (2228224)
+             - PeakUnpinnedBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+             - PeakUsedReservation: mean=1.25 MB (1310720) min=1.25 MB (1310720) p50=1.25 MB (1310720) p75=1.25 MB (1310720) p90=1.25 MB (1310720) p95=1.25 MB (1310720) max=1.25 MB (1310720)
+             - ReadIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+             - ReadIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - ReadIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - SystemAllocTime: mean=41.434us min=28.587us p50=39.259us p75=46.812us p90=48.345us p95=48.396us max=58.118us
+               [39.259us, 44.643us, 48.396us, 48.345us, 46.812us, 36.279us, 30.340us, 28.587us,
+                34.872us, 37.270us, 44.292us, 58.118us]
+             - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - WriteIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+             - WriteIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - WriteIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+          Hash Table [12 instances]:
+             - HashBuckets: mean=16.38K (16384) min=16.38K (16384) p50=16.38K (16384) p75=16.38K (16384) p90=16.38K (16384) p95=16.38K (16384) max=16.38K (16384)
+             - HashCollisions: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - Probes: mean=152 (152) min=125 (125) p50=149 (149) p75=159 (159) p90=159 (159) p95=161 (161) max=180 (180)
+               [161, 151, 145, 141, 157, 148, 159, 149,
+                149, 180, 125, 159]
+             - Resizes: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - Travel: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+      EXCHANGE_NODE (id=2) [12 instances]:(Total: 1s074ms, non-child: 337.628us, % non-child: 0.03%)
+        Node Lifecycle Event Timeline[0]: 1s180ms
+           - Open Started: 97.338ms (97.338ms)
+           - Open Finished: 1s092ms (995.404ms)
+           - First Batch Requested: 1s094ms (1.644ms)
+           - First Batch Returned: 1s180ms (85.633ms)
+           - Last Batch Returned: 1s180ms (638.000ns)
+           - Closed: 1s180ms (354.274us)
+        Node Lifecycle Event Timeline[1]: 1s180ms
+           - Open Started: 97.338ms (97.338ms)
+           - Open Finished: 1s093ms (995.902ms)
+           - First Batch Requested: 1s094ms (1.737ms)
+           - First Batch Returned: 1s179ms (84.907ms)
+           - Last Batch Returned: 1s179ms (835.000ns)
+           - Closed: 1s180ms (383.884us)
+        Node Lifecycle Event Timeline[2]: 1s181ms
+           - Open Started: 97.344ms (97.344ms)
+           - Open Finished: 1s092ms (995.498ms)
+           - First Batch Requested: 1s094ms (1.802ms)
+           - First Batch Returned: 1s180ms (86.038ms)
+           - Last Batch Returned: 1s180ms (683.000ns)
+           - Closed: 1s181ms (419.046us)
+        Node Lifecycle Event Timeline[3]: 1s180ms
+           - Open Started: 97.346ms (97.346ms)
+           - Open Finished: 1s094ms (997.471ms)
+           - First Batch Requested: 1s096ms (1.694ms)
+           - First Batch Returned: 1s179ms (83.459ms)
+           - Last Batch Returned: 1s179ms (1.132us)
+           - Closed: 1s180ms (369.462us)
+        Node Lifecycle Event Timeline[4]: 1s183ms
+           - Open Started: 101.909ms (101.909ms)
+           - Open Finished: 1s094ms (992.867ms)
+           - First Batch Requested: 1s096ms (1.500ms)
+           - First Batch Returned: 1s183ms (87.094ms)
+           - Last Batch Returned: 1s183ms (461.000ns)
+           - Closed: 1s183ms (387.179us)
+        Node Lifecycle Event Timeline[5]: 1s183ms
+           - Open Started: 101.912ms (101.912ms)
+           - Open Finished: 1s094ms (992.217ms)
+           - First Batch Requested: 1s095ms (1.821ms)
+           - First Batch Returned: 1s182ms (86.814ms)
+           - Last Batch Returned: 1s182ms (723.000ns)
+           - Closed: 1s183ms (296.293us)
+        Node Lifecycle Event Timeline[6]: 1s183ms
+           - Open Started: 101.926ms (101.926ms)
+           - Open Finished: 1s094ms (992.232ms)
+           - First Batch Requested: 1s095ms (1.758ms)
+           - First Batch Returned: 1s182ms (86.912ms)
+           - Last Batch Returned: 1s182ms (714.000ns)
+           - Closed: 1s183ms (377.941us)
+        Node Lifecycle Event Timeline[7]: 1s186ms
+           - Open Started: 101.923ms (101.923ms)
+           - Open Finished: 1s094ms (992.160ms)
+           - First Batch Requested: 1s095ms (1.896ms)
+           - First Batch Returned: 1s185ms (89.904ms)
+           - Last Batch Returned: 1s185ms (1.094us)
+           - Closed: 1s186ms (313.367us)
+        Node Lifecycle Event Timeline[8]: 1s186ms
+           - Open Started: 122.664ms (122.664ms)
+           - Open Finished: 1s106ms (984.221ms)
+           - First Batch Requested: 1s108ms (1.745ms)
+           - First Batch Returned: 1s185ms (77.330ms)
+           - Last Batch Returned: 1s185ms (1.503us)
+           - Closed: 1s186ms (436.231us)
+        Node Lifecycle Event Timeline[9]: 1s186ms
+           - Open Started: 122.683ms (122.683ms)
+           - Open Finished: 1s106ms (984.204ms)
+           - First Batch Requested: 1s108ms (1.731ms)
+           - First Batch Returned: 1s186ms (77.528ms)
+           - Last Batch Returned: 1s186ms (1.166us)
+           - Closed: 1s186ms (445.964us)
+        Node Lifecycle Event Timeline[10]: 1s186ms
+           - Open Started: 122.677ms (122.677ms)
+           - Open Finished: 1s107ms (984.449ms)
+           - First Batch Requested: 1s109ms (1.887ms)
+           - First Batch Returned: 1s186ms (77.012ms)
+           - Last Batch Returned: 1s186ms (742.000ns)
+           - Closed: 1s186ms (383.513us)
+        Node Lifecycle Event Timeline[11]: 1s187ms
+           - Open Started: 122.687ms (122.687ms)
+           - Open Finished: 1s106ms (984.266ms)
+           - First Batch Requested: 1s108ms (1.612ms)
+           - First Batch Returned: 1s186ms (78.285ms)
+           - Last Batch Returned: 1s186ms (648.000ns)
+           - Closed: 1s187ms (373.159us)
+         - ConvertRowBatchTime: mean=143.207us min=116.119us p50=145.892us p75=148.914us p90=150.785us p95=151.848us max=165.560us
+           [145.892us, 132.684us, 140.266us, 135.224us, 148.914us, 138.292us, 146.304us, 151.848us,
+            146.606us, 165.560us, 116.119us, 150.785us]
+         - InactiveTotalTime: mean=1s073ms min=1s061ms p50=1s078ms p75=1s080ms p90=1s080ms p95=1s081ms max=1s081ms
+           [1s080ms, 1s080ms, 1s081ms, 1s080ms, 1s079ms, 1s078ms, 1s078ms, 1s081ms,
+            1s061ms, 1s061ms, 1s061ms, 1s062ms]
+         - PeakMemoryUsage: mean=104.00 KB (106496) min=104.00 KB (106496) p50=104.00 KB (106496) p75=104.00 KB (106496) p90=104.00 KB (106496) p95=104.00 KB (106496) max=104.00 KB (106496)
+         - RowsReturned: mean=152 (152) min=125 (125) p50=149 (149) p75=159 (159) p90=159 (159) p95=161 (161) max=180 (180)
+           [161, 151, 145, 141, 157, 148, 159, 149,
+            149, 180, 125, 159]
+         - RowsReturnedRate: mean=141.00 /sec min=117.00 /sec p50=139.00 /sec p75=147.00 /sec p90=148.00 /sec p95=149.00 /sec max=169.00 /sec
+           [148.00 /sec, 139.00 /sec, 134.00 /sec, 130.00 /sec, 145.00 /sec, 137.00 /sec, 147.00 /sec, 137.00 /sec,
+            140.00 /sec, 169.00 /sec, 117.00 /sec, 149.00 /sec]
+         - TotalTime: mean=1s074ms min=1s061ms p50=1s079ms p75=1s080ms p90=1s081ms p95=1s081ms max=1s082ms
+           [1s081ms, 1s080ms, 1s081ms, 1s080ms, 1s079ms, 1s079ms, 1s079ms, 1s082ms,
+            1s061ms, 1s061ms, 1s061ms, 1s062ms]
+        Buffer pool [12 instances]:
+           - AllocTime: mean=86.111us min=72.074us p50=82.461us p75=90.494us p90=99.804us p95=106.352us max=108.178us
+             [99.804us, 78.410us, 72.443us, 73.035us, 90.494us, 82.461us, 72.074us, 106.352us,
+              80.524us, 86.650us, 108.178us, 82.907us]
+           - CompressionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - CumulativeAllocationBytes: mean=192.00 KB (196608) min=192.00 KB (196608) p50=192.00 KB (196608) p75=192.00 KB (196608) p90=192.00 KB (196608) p95=192.00 KB (196608) max=192.00 KB (196608)
+           - CumulativeAllocations: mean=24 (24) min=24 (24) p50=24 (24) p75=24 (24) p90=24 (24) p95=24 (24) max=24 (24)
+           - EncryptionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - PeakReservation: mean=104.00 KB (106496) min=104.00 KB (106496) p50=104.00 KB (106496) p75=104.00 KB (106496) p90=104.00 KB (106496) p95=104.00 KB (106496) max=104.00 KB (106496)
+           - PeakUnpinnedBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - PeakUsedReservation: mean=104.00 KB (106496) min=104.00 KB (106496) p50=104.00 KB (106496) p75=104.00 KB (106496) p90=104.00 KB (106496) p95=104.00 KB (106496) max=104.00 KB (106496)
+           - ReadIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - ReadIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - ReadIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - SystemAllocTime: mean=52.161us min=38.650us p50=50.372us p75=53.791us p90=57.423us p95=66.493us max=71.936us
+             [66.493us, 48.757us, 43.296us, 42.805us, 57.423us, 50.372us, 38.650us, 71.936us,
+              47.422us, 52.651us, 53.791us, 52.342us]
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - WriteIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - WriteIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - WriteIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+        Dequeue [12 instances]:
+           - BytesDequeued[0] (500.000ms): 0, 0, 2.56 KB
+           - BytesDequeued[1] (500.000ms): 0, 0, 1.95 KB
+           - BytesDequeued[2] (500.000ms): 0, 0, 1.87 KB
+           - BytesDequeued[3] (500.000ms): 0, 0, 1.87 KB
+           - BytesDequeued[4] (500.000ms): 0, 0, 2.19 KB
+           - BytesDequeued[5] (500.000ms): 0, 0, 2.09 KB
+           - BytesDequeued[6] (500.000ms): 0, 0, 2.32 KB
+           - BytesDequeued[7] (500.000ms): 0, 0, 1.97 KB
+           - BytesDequeued[8] (500.000ms): 0, 0, 1.93 KB
+           - BytesDequeued[9] (500.000ms): 0, 0, 2.32 KB
+           - BytesDequeued[10] (500.000ms): 0, 0, 1.89 KB
+           - BytesDequeued[11] (500.000ms): 0, 0, 1.99 KB
+           - FirstBatchWaitTime: mean=990.895ms min=984.180ms p50=992.210ms p75=995.379ms p90=995.490ms p95=995.888ms max=997.464ms
+             [995.379ms, 995.888ms, 995.490ms, 997.464ms, 992.859ms, 992.210ms, 992.224ms, 992.153ms,
+              984.193ms, 984.180ms, 984.442ms, 984.257ms]
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - TotalBytesDequeued: mean=3.12 KB (3192) min=2.56 KB (2625) p50=3.06 KB (3129) p75=3.26 KB (3339) p90=3.26 KB (3339) p95=3.30 KB (3381) max=3.69 KB (3780)
+             [3.30 KB, 3.10 KB, 2.97 KB, 2.89 KB, 3.22 KB, 3.04 KB, 3.26 KB, 3.06 KB,
+              3.06 KB, 3.69 KB, 2.56 KB, 3.26 KB]
+           - TotalGetBatchTime: mean=1s074ms min=1s061ms p50=1s078ms p75=1s080ms p90=1s080ms p95=1s081ms max=1s081ms
+             [1s080ms, 1s080ms, 1s081ms, 1s080ms, 1s079ms, 1s078ms, 1s078ms, 1s081ms,
+              1s061ms, 1s061ms, 1s061ms, 1s062ms]
+             - DataWaitTime: mean=1s073ms min=1s061ms p50=1s078ms p75=1s080ms p90=1s080ms p95=1s081ms max=1s081ms
+               [1s080ms, 1s080ms, 1s081ms, 1s080ms, 1s079ms, 1s078ms, 1s078ms, 1s081ms,
+                1s061ms, 1s061ms, 1s061ms, 1s062ms]
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+        Enqueue [12 instances]:
+           - BytesReceived[0] (500.000ms): 0, 0, 1.62 KB
+           - BytesReceived[1] (500.000ms): 0, 0, 1.25 KB
+           - BytesReceived[2] (500.000ms): 0, 0, 1.22 KB
+           - BytesReceived[3] (500.000ms): 0, 0, 1.21 KB
+           - BytesReceived[4] (500.000ms): 0, 0, 1.40 KB
+           - BytesReceived[5] (500.000ms): 0, 0, 1.35 KB
+           - BytesReceived[6] (500.000ms): 0, 0, 1.47 KB
+           - BytesReceived[7] (500.000ms): 0, 0, 1.27 KB
+           - BytesReceived[8] (500.000ms): 0, 0, 1.25 KB
+           - BytesReceived[9] (500.000ms): 0, 0, 1.47 KB
+           - BytesReceived[10] (500.000ms): 0, 0, 1.22 KB
+           - BytesReceived[11] (500.000ms): 0, 0, 1.29 KB
+           - DeferredQueueSize[0] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[1] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[2] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[3] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[4] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[5] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[6] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[7] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[8] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[9] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[10] (500.000ms): 0, 0, 0
+           - DeferredQueueSize[11] (500.000ms): 0, 0, 0
+           - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [0]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [1]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [2]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [3]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [4]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [5]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [6]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [7]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [8]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [9]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [10]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+        [11]   - DispatchTime: (Avg: 257.144us ; Min: 26.992us ; Max: 3.948ms ; Number of samples: 144)
+           - DeserializeRowBatchTime: mean=264.636us min=241.086us p50=262.773us p75=270.755us p90=276.990us p95=279.645us max=300.026us
+             [279.645us, 241.086us, 245.396us, 265.367us, 276.990us, 249.689us, 253.337us, 300.026us,
+              261.509us, 269.067us, 262.773us, 270.755us]
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - TotalBatchesEnqueued: mean=12 (12) min=12 (12) p50=12 (12) p75=12 (12) p90=12 (12) p95=12 (12) max=12 (12)
+           - TotalBatchesReceived: mean=12 (12) min=12 (12) p50=12 (12) p75=12 (12) p90=12 (12) p95=12 (12) max=12 (12)
+           - TotalBytesReceived: mean=2.00 KB (2052) min=1.67 KB (1715) p50=1.98 KB (2023) p75=2.09 KB (2136) p90=2.09 KB (2138) p95=2.10 KB (2154) max=2.34 KB (2394)
+             [2.10 KB, 1.98 KB, 1.93 KB, 1.87 KB, 2.07 KB, 1.96 KB, 2.09 KB, 1.97 KB,
+              1.98 KB, 2.34 KB, 1.67 KB, 2.09 KB]
+           - TotalEarlySenders: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - TotalEosReceived: mean=12 (12) min=12 (12) p50=12 (12) p75=12 (12) p90=12 (12) p95=12 (12) max=12 (12)
+           - TotalHasDeferredRPCsTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - TotalRPCsDeferred: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+    Fragment F00 [12 instances]:
+    Instances: Instance 874b65988023a32b:71d209e900000001 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000002 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000003 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000004 (host=tarmstrong-Precision-7540:27002), Instance 874b65988023a32b:71d209e900000005 (host=tarmstrong-Precision-7540:27000), Instance 874b65988023a32b:71d209e900000006 (host=tarmstrong-Pr [...]
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[11]: 0:152/15.76 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[9]: 0:152/15.86 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[0]: 0:152/15.87 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[5]: 0:152/15.91 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[4]: 0:152/15.98 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[2]: 0:152/16.01 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[1]: 0:152/16.03 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[8]: 0:152/16.04 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[10]: 0:152/16.06 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[3]: 0:152/16.09 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[6]: 0:152/16.21 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[7]: 0:152/21.12 MB
+      Last report received time[0-3]: 2021-02-09 08:53:03.669
+      Last report received time[8-11]: 2021-02-09 08:53:03.674
+      Last report received time[4-7]: 2021-02-09 08:53:03.675
+       - MemoryUsage[0] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[1] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[2] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[3] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[4] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[5] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[6] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[7] (500.000ms): 2.27 MB, 2.28 MB
+       - MemoryUsage[8] (500.000ms): 2.27 MB, 2.28 MB, 2.28 MB
+       - MemoryUsage[9] (500.000ms): 2.27 MB, 2.28 MB, 2.28 MB
+       - MemoryUsage[10] (500.000ms): 2.27 MB, 2.28 MB, 2.28 MB
+       - MemoryUsage[11] (500.000ms): 2.27 MB, 2.28 MB, 2.28 MB
+       - ThreadUsage[0] (500.000ms): 1, 1
+       - ThreadUsage[1] (500.000ms): 1, 1
+       - ThreadUsage[2] (500.000ms): 1, 1
+       - ThreadUsage[3] (500.000ms): 1, 1
+       - ThreadUsage[4] (500.000ms): 1, 1
+       - ThreadUsage[5] (500.000ms): 1, 1
+       - ThreadUsage[6] (500.000ms): 1, 1
+       - ThreadUsage[7] (500.000ms): 1, 1
+       - ThreadUsage[8] (500.000ms): 1, 1, 1
+       - ThreadUsage[9] (500.000ms): 1, 1, 1
+       - ThreadUsage[10] (500.000ms): 1, 1, 1
+       - ThreadUsage[11] (500.000ms): 1, 1, 1
+      Fragment Instance Lifecycle Event Timeline[0]: 1s119ms
+         - Prepare Finished: 776.677us (776.677us)
+         - Open Finished: 107.969ms (107.192ms)
+         - First Batch Produced: 1s111ms (1s003ms)
+         - First Batch Sent: 1s111ms (4.642us)
+         - ExecInternal Finished: 1s119ms (7.500ms)
+      Fragment Instance Lifecycle Event Timeline[1]: 1s120ms
+         - Prepare Finished: 750.321us (750.321us)
+         - Open Finished: 108.355ms (107.604ms)
+         - First Batch Produced: 1s113ms (1s005ms)
+         - First Batch Sent: 1s113ms (2.594us)
+         - ExecInternal Finished: 1s120ms (6.616ms)
+      Fragment Instance Lifecycle Event Timeline[2]: 1s120ms
+         - Prepare Finished: 5.058ms (5.058ms)
+         - Open Finished: 108.602ms (103.544ms)
+         - First Batch Produced: 1s111ms (1s002ms)
+         - First Batch Sent: 1s111ms (4.379us)
+         - ExecInternal Finished: 1s120ms (8.868ms)
+      Fragment Instance Lifecycle Event Timeline[3]: 1s119ms
+         - Prepare Finished: 6.184ms (6.184ms)
+         - Open Finished: 108.312ms (102.128ms)
+         - First Batch Produced: 1s111ms (1s003ms)
+         - First Batch Sent: 1s111ms (4.522us)
+         - ExecInternal Finished: 1s119ms (8.434ms)
+      Fragment Instance Lifecycle Event Timeline[4]: 1s110ms
+         - Prepare Finished: 926.288us (926.288us)
+         - Open Finished: 106.313ms (105.387ms)
+         - First Batch Produced: 1s092ms (986.536ms)
+         - First Batch Sent: 1s092ms (3.002us)
+         - ExecInternal Finished: 1s110ms (17.926ms)
+      Fragment Instance Lifecycle Event Timeline[5]: 1s110ms
+         - Prepare Finished: 995.460us (995.460us)
+         - Open Finished: 106.829ms (105.833ms)
+         - First Batch Produced: 1s088ms (981.238ms)
+         - First Batch Sent: 1s088ms (6.404us)
+         - ExecInternal Finished: 1s110ms (22.492ms)
+      Fragment Instance Lifecycle Event Timeline[6]: 1s110ms
+         - Prepare Finished: 1.207ms (1.207ms)
+         - Open Finished: 106.859ms (105.651ms)
+         - First Batch Produced: 1s089ms (982.651ms)
+         - First Batch Sent: 1s089ms (5.604us)
+         - ExecInternal Finished: 1s110ms (20.593ms)
+      Fragment Instance Lifecycle Event Timeline[7]: 1s111ms
+         - Prepare Finished: 1.155ms (1.155ms)
+         - Open Finished: 106.859ms (105.703ms)
+         - First Batch Produced: 1s090ms (983.811ms)
+         - First Batch Sent: 1s090ms (5.116us)
+         - ExecInternal Finished: 1s111ms (20.702ms)
+      Fragment Instance Lifecycle Event Timeline[8]: 1s180ms
+         - Prepare Finished: 14.345ms (14.345ms)
+         - Open Finished: 129.210ms (114.865ms)
+         - First Batch Produced: 1s172ms (1s043ms)
+         - First Batch Sent: 1s172ms (4.312us)
+         - ExecInternal Finished: 1s180ms (7.848ms)
+      Fragment Instance Lifecycle Event Timeline[9]: 1s187ms
+         - Prepare Finished: 22.586ms (22.586ms)
+         - Open Finished: 129.209ms (106.623ms)
+         - First Batch Produced: 1s173ms (1s044ms)
+         - First Batch Sent: 1s173ms (5.257us)
+         - ExecInternal Finished: 1s187ms (13.841ms)
+      Fragment Instance Lifecycle Event Timeline[10]: 1s183ms
+         - Prepare Finished: 29.265ms (29.265ms)
+         - Open Finished: 129.406ms (100.140ms)
+         - First Batch Produced: 1s174ms (1s045ms)
+         - First Batch Sent: 1s174ms (3.828us)
+         - ExecInternal Finished: 1s183ms (8.310ms)
+      Fragment Instance Lifecycle Event Timeline[11]: 1s183ms
+         - Prepare Finished: 30.377ms (30.377ms)
+         - Open Finished: 130.655ms (100.277ms)
+         - First Batch Produced: 1s176ms (1s046ms)
+         - First Batch Sent: 1s176ms (4.263us)
+         - ExecInternal Finished: 1s183ms (6.345ms)
+       - AverageThreadTokens: mean=1.00 min=1.00 p50=1.00 p75=1.00 p90=1.00 p95=1.00 max=1.00
+       - BytesAssigned: mean=16.41 MB (17209364) min=15.76 MB (16526332) p50=16.01 MB (16787175) p75=16.06 MB (16835710) p90=16.09 MB (16871797) p95=16.21 MB (16999375) max=21.12 MB (22147452)
+         [15.87 MB, 16.03 MB, 16.01 MB, 16.09 MB, 15.98 MB, 15.91 MB, 16.21 MB, 21.12 MB,
+          16.04 MB, 15.86 MB, 16.06 MB, 15.76 MB]
+       - CompletionTime: mean=1s242ms min=1s237ms p50=1s243ms p75=1s247ms p90=1s247ms p95=1s247ms max=1s247ms
+         [1s237ms, 1s237ms, 1s237ms, 1s237ms, 1s247ms, 1s247ms, 1s247ms, 1s247ms,
+          1s243ms, 1s243ms, 1s243ms, 1s243ms]
+       - ExchangeScanRatio: mean=0.00 min=0.00 p50=0.00 p75=0.00 p90=0.00 p95=0.00 max=0.00
+         [0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,
+          0.00, 0.00, 0.00, 0.00]
+       - ExecutionRate: mean=13.21 MB/sec min=12.67 MB/sec p50=12.90 MB/sec p75=12.96 MB/sec p90=13.00 MB/sec p95=13.00 MB/sec max=16.94 MB/sec
+         [12.82 MB/sec, 12.96 MB/sec, 12.94 MB/sec, 13.00 MB/sec, 12.81 MB/sec, 12.76 MB/sec, 13.00 MB/sec, 16.94 MB/sec,
+          12.90 MB/sec, 12.76 MB/sec, 12.91 MB/sec, 12.67 MB/sec]
+       - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+       - PeakMemoryUsage: mean=2.28 MB (2387200) min=2.28 MB (2387200) p50=2.28 MB (2387200) p75=2.28 MB (2387200) p90=2.28 MB (2387200) p95=2.28 MB (2387200) max=2.28 MB (2387200)
+       - PeakReservation: mean=2.12 MB (2228224) min=2.12 MB (2228224) p50=2.12 MB (2228224) p75=2.12 MB (2228224) p90=2.12 MB (2228224) p95=2.12 MB (2228224) max=2.12 MB (2228224)
+       - PeakUsedReservation: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+       - PerHostPeakMemUsage: mean=18.01 MB (18889170) min=17.96 MB (18831232) p50=18.00 MB (18873084) p75=18.08 MB (18963196) p90=18.08 MB (18963196) p95=18.08 MB (18963196) max=18.08 MB (18963196)
+         [18.00 MB, 18.00 MB, 18.00 MB, 18.00 MB, 17.96 MB, 17.96 MB, 17.96 MB, 17.96 MB,
+          18.08 MB, 18.08 MB, 18.08 MB, 18.08 MB]
+       - RowsProduced: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+         [156, 146, 145, 161, 150, 155, 147, 156,
+          154, 152, 150, 152]
+       - TotalNetworkReceiveTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+       - TotalNetworkSendTime: mean=9.808ms min=3.492ms p50=6.361ms p75=16.080ms p90=18.771ms p95=18.873ms max=20.842ms
+         [5.723ms, 3.907ms, 6.548ms, 6.762ms, 16.080ms, 20.842ms, 18.873ms, 18.771ms,
+          6.335ms, 6.361ms, 3.492ms, 4.004ms]
+       - TotalStorageWaitTime: mean=870.654ms min=818.142ms p50=846.143ms p75=922.163ms p90=925.091ms p95=930.657ms max=939.015ms
+         [868.788ms, 846.143ms, 871.810ms, 841.909ms, 830.330ms, 818.142ms, 818.514ms, 835.287ms,
+          925.091ms, 922.163ms, 930.657ms, 939.015ms]
+       - TotalThreadsInvoluntaryContextSwitches: mean=76 (76) min=19 (19) p50=63 (63) p75=107 (107) p90=128 (128) p95=140 (140) max=143 (143)
+         [63, 128, 84, 140, 107, 68, 143, 23,
+          56, 56, 33, 19]
+       - TotalThreadsTotalWallClockTime: mean=1s128ms min=1s108ms p50=1s115ms p75=1s152ms p90=1s153ms p95=1s164ms max=1s166ms
+         [1s118ms, 1s119ms, 1s115ms, 1s113ms, 1s109ms, 1s109ms, 1s108ms, 1s110ms,
+          1s166ms, 1s164ms, 1s153ms, 1s152ms]
+         - TotalThreadsSysTime: mean=6.110ms min=0.000ns p50=4.078ms p75=8.592ms p90=10.943ms p95=12.523ms max=19.040ms
+           [4.814ms, 0.000ns, 0.000ns, 3.710ms, 12.523ms, 0.000ns, 8.592ms, 3.769ms,
+            10.943ms, 5.852ms, 4.078ms, 19.040ms]
+         - TotalThreadsUserTime: mean=89.308ms min=50.775ms p50=67.648ms p75=72.761ms p90=153.861ms p95=160.503ms max=171.387ms
+           [66.781ms, 171.387ms, 68.065ms, 70.504ms, 153.861ms, 72.761ms, 59.784ms, 67.648ms,
+            160.503ms, 64.381ms, 65.254ms, 50.775ms]
+       - TotalThreadsVoluntaryContextSwitches: mean=301 (301) min=273 (273) p50=296 (296) p75=313 (313) p90=317 (317) p95=326 (326) max=335 (335)
+         [294, 285, 288, 317, 326, 296, 273, 313,
+          335, 291, 299, 306]
+       - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      Fragment Instance Lifecycle Timings [12 instances]:
+         - ExecTime: mean=1s023ms min=1s003ms p50=1s011ms p75=1s051ms p90=1s052ms p95=1s053ms max=1s058ms
+           [1s010ms, 1s011ms, 1s011ms, 1s011ms, 1s004ms, 1s003ms, 1s003ms, 1s004ms,
+            1s051ms, 1s058ms, 1s053ms, 1s052ms]
+           - ExecTreeExecTime: mean=1s011ms min=982.063ms p50=1s004ms p75=1s044ms p90=1s045ms p95=1s047ms max=1s048ms
+             [1s004ms, 1s006ms, 1s003ms, 1s004ms, 987.523ms, 982.063ms, 983.530ms, 984.755ms,
+              1s044ms, 1s045ms, 1s048ms, 1s047ms]
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - OpenTime: mean=105.401ms min=100.129ms p50=105.641ms p75=106.609ms p90=107.181ms p95=107.595ms max=114.851ms
+           [107.181ms, 107.595ms, 103.533ms, 102.119ms, 105.377ms, 105.823ms, 105.641ms, 105.693ms,
+            114.851ms, 106.609ms, 100.129ms, 100.264ms]
+           - ExecTreeOpenTime: mean=2.117ms min=1.537ms p50=2.073ms p75=2.127ms p90=2.178ms p95=2.324ms max=3.551ms
+             [1.550ms, 1.940ms, 2.178ms, 1.887ms, 1.537ms, 2.047ms, 2.073ms, 2.073ms,
+              2.117ms, 2.127ms, 2.324ms, 3.551ms]
+         - PrepareTime: mean=529.508us min=409.778us p50=521.398us p75=610.392us p90=614.221us p95=621.777us max=703.734us
+           [521.398us, 416.325us, 409.778us, 454.024us, 621.777us, 560.334us, 703.734us, 542.206us,
+            430.091us, 614.221us, 610.392us, 469.826us]
+           - ExecTreePrepareTime: mean=190.924us min=137.665us p50=168.350us p75=213.429us p90=218.906us p95=221.179us max=359.438us
+             [139.003us, 137.665us, 147.521us, 145.083us, 221.179us, 213.429us, 359.438us, 168.350us,
+              152.540us, 218.906us, 208.974us, 179.007us]
+         - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      KrpcDataStreamSender (dst_id=2) [12 instances]:(Total: 11.165ms, non-child: 1.356ms, % non-child: 12.15%)
+        ExecOption[0-11]: Hash Partitioned Sender Codegen Enabled
+         - BytesSent[0] (500.000ms): 0, 0
+         - BytesSent[1] (500.000ms): 0, 0
+         - BytesSent[2] (500.000ms): 0, 0
+         - BytesSent[3] (500.000ms): 0, 0
+         - BytesSent[4] (500.000ms): 0, 0
+         - BytesSent[5] (500.000ms): 0, 0
+         - BytesSent[6] (500.000ms): 0, 0
+         - BytesSent[7] (500.000ms): 0, 0
+         - BytesSent[8] (500.000ms): 0, 0, 0
+         - BytesSent[9] (500.000ms): 0, 0, 0
+         - BytesSent[10] (500.000ms): 0, 0, 0
+         - BytesSent[11] (500.000ms): 0, 0, 0
+         - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [0]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [1]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [2]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [3]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [4]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [5]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [6]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [7]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [8]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [9]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [10]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+      [11]   - NetworkThroughput: (Avg: 127.46 KB/sec ; Min: 4.74 KB/sec ; Max: 748.06 KB/sec ; Number of samples: 144)
+         - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [0]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [1]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [2]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [3]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [4]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [5]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [6]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [7]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [8]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [9]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [10]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+      [11]   - RpcNetworkTime: (Avg: 2.391ms ; Min: 203.041us ; Max: 19.273ms ; Number of samples: 288)
+         - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [0]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [1]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [2]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [3]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [4]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [5]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [6]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [7]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [8]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [9]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [10]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+      [11]   - RpcRecvrTime: (Avg: 225.821us ; Min: 27.480us ; Max: 3.984ms ; Number of samples: 288)
+         - EosSent: mean=12 (12) min=12 (12) p50=12 (12) p75=12 (12) p90=12 (12) p95=12 (12) max=12 (12)
+         - InactiveTotalTime: mean=9.808ms min=3.492ms p50=6.361ms p75=16.080ms p90=18.771ms p95=18.873ms max=20.842ms
+           [5.723ms, 3.907ms, 6.548ms, 6.762ms, 16.080ms, 20.842ms, 18.873ms, 18.771ms,
+            6.335ms, 6.361ms, 3.492ms, 4.004ms]
+         - PeakMemoryUsage: mean=166.12 KB (170112) min=166.12 KB (170112) p50=166.12 KB (170112) p75=166.12 KB (170112) p90=166.12 KB (170112) p95=166.12 KB (170112) max=166.12 KB (170112)
+         - RowsSent: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - RpcFailure: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - RpcRetry: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - SerializeBatchTime: mean=94.621us min=81.411us p50=91.935us p75=100.265us p90=102.680us p95=109.510us max=112.200us
+           [92.933us, 84.286us, 102.680us, 91.935us, 89.829us, 90.089us, 81.411us, 112.200us,
+            87.748us, 109.510us, 92.570us, 100.265us]
+         - TotalBytesSent: mean=2.00 KB (2052) min=1.92 KB (1962) p50=2.00 KB (2045) p75=2.04 KB (2089) p90=2.05 KB (2097) p95=2.05 KB (2099) max=2.12 KB (2167)
+           [2.05 KB, 1.93 KB, 1.92 KB, 2.12 KB, 1.99 KB, 2.04 KB, 1.94 KB, 2.05 KB,
+            2.03 KB, 2.01 KB, 1.98 KB, 2.00 KB]
+         - TotalTime: mean=11.165ms min=4.530ms p50=7.544ms p75=16.906ms p90=19.683ms p95=19.717ms max=21.640ms
+           [6.617ms, 4.658ms, 7.964ms, 7.544ms, 16.906ms, 21.640ms, 19.683ms, 19.717ms,
+            7.024ms, 12.901ms, 4.530ms, 4.795ms]
+         - UncompressedRowBatchSize: mean=3.12 KB (3192) min=2.97 KB (3045) p50=3.12 KB (3192) p75=3.18 KB (3255) p90=3.20 KB (3276) p95=3.20 KB (3276) max=3.30 KB (3381)
+           [3.20 KB, 2.99 KB, 2.97 KB, 3.30 KB, 3.08 KB, 3.18 KB, 3.01 KB, 3.20 KB,
+            3.16 KB, 3.12 KB, 3.08 KB, 3.12 KB]
+      AGGREGATION_NODE (id=1) [12 instances]:(Total: 1s014ms, non-child: 6.511ms, % non-child: 0.64%)
+        Node Lifecycle Event Timeline[0]: 1s112ms
+           - Open Started: 106.397ms (106.397ms)
+           - Open Finished: 107.945ms (1.547ms)
+           - First Batch Requested: 107.973ms (28.268us)
+           - First Batch Returned: 1s111ms (1s003ms)
+           - Last Batch Returned: 1s112ms (1.187ms)
+           - Closed: 1s112ms (66.335us)
+        Node Lifecycle Event Timeline[1]: 1s115ms
+           - Open Started: 106.397ms (106.397ms)
+           - Open Finished: 108.335ms (1.937ms)
+           - First Batch Requested: 108.357ms (22.466us)
+           - First Batch Returned: 1s113ms (1s005ms)
+           - Last Batch Returned: 1s115ms (2.166ms)
+           - Closed: 1s115ms (96.464us)
+        Node Lifecycle Event Timeline[2]: 1s112ms
+           - Open Started: 106.406ms (106.406ms)
+           - Open Finished: 108.580ms (2.174ms)
+           - First Batch Requested: 108.606ms (25.499us)
+           - First Batch Returned: 1s111ms (1s002ms)
+           - Last Batch Returned: 1s112ms (1.135ms)
+           - Closed: 1s112ms (78.714us)
+        Node Lifecycle Event Timeline[3]: 1s112ms
+           - Open Started: 106.408ms (106.408ms)
+           - Open Finished: 108.293ms (1.884ms)
+           - First Batch Requested: 108.315ms (22.392us)
+           - First Batch Returned: 1s111ms (1s003ms)
+           - Last Batch Returned: 1s112ms (1.145ms)
+           - Closed: 1s112ms (60.110us)
+        Node Lifecycle Event Timeline[4]: 1s094ms
+           - Open Started: 104.756ms (104.756ms)
+           - Open Finished: 106.290ms (1.534ms)
+           - First Batch Requested: 106.318ms (27.368us)
+           - First Batch Returned: 1s092ms (986.530ms)
+           - Last Batch Returned: 1s094ms (1.284ms)
+           - Closed: 1s094ms (81.417us)
+        Node Lifecycle Event Timeline[5]: 1s089ms
+           - Open Started: 104.761ms (104.761ms)
+           - Open Finished: 106.805ms (2.044ms)
+           - First Batch Requested: 106.832ms (26.994us)
+           - First Batch Returned: 1s088ms (981.233ms)
+           - Last Batch Returned: 1s089ms (1.126ms)
+           - Closed: 1s089ms (89.130us)
+        Node Lifecycle Event Timeline[6]: 1s090ms
+           - Open Started: 104.768ms (104.768ms)
+           - Open Finished: 106.839ms (2.070ms)
+           - First Batch Requested: 106.863ms (23.945us)
+           - First Batch Returned: 1s089ms (982.645ms)
+           - Last Batch Returned: 1s090ms (1.187ms)
+           - Closed: 1s090ms (72.378us)
+        Node Lifecycle Event Timeline[7]: 1s092ms
+           - Open Started: 104.768ms (104.768ms)
+           - Open Finished: 106.839ms (2.070ms)
+           - First Batch Requested: 106.863ms (24.031us)
+           - First Batch Returned: 1s090ms (983.806ms)
+           - Last Batch Returned: 1s091ms (1.240ms)
+           - Closed: 1s092ms (92.113us)
+        Node Lifecycle Event Timeline[8]: 1s173ms
+           - Open Started: 127.057ms (127.057ms)
+           - Open Finished: 129.170ms (2.112ms)
+           - First Batch Requested: 129.215ms (44.625us)
+           - First Batch Returned: 1s172ms (1s043ms)
+           - Last Batch Returned: 1s173ms (1.019ms)
+           - Closed: 1s173ms (60.683us)
+        Node Lifecycle Event Timeline[9]: 1s174ms
+           - Open Started: 127.057ms (127.057ms)
+           - Open Finished: 129.181ms (2.124ms)
+           - First Batch Requested: 129.215ms (33.860us)
+           - First Batch Returned: 1s173ms (1s044ms)
+           - Last Batch Returned: 1s174ms (1.231ms)
+           - Closed: 1s174ms (66.953us)
+        Node Lifecycle Event Timeline[10]: 1s178ms
+           - Open Started: 127.058ms (127.058ms)
+           - Open Finished: 129.379ms (2.320ms)
+           - First Batch Requested: 129.410ms (31.019us)
+           - First Batch Returned: 1s174ms (1s045ms)
+           - Last Batch Returned: 1s178ms (4.068ms)
+           - Closed: 1s178ms (64.504us)
+        Node Lifecycle Event Timeline[11]: 1s178ms
+           - Open Started: 127.081ms (127.081ms)
+           - Open Finished: 130.624ms (3.542ms)
+           - First Batch Requested: 130.659ms (35.576us)
+           - First Batch Returned: 1s176ms (1s046ms)
+           - Last Batch Returned: 1s178ms (1.365ms)
+           - Closed: 1s178ms (80.565us)
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - PeakMemoryUsage: mean=2.02 MB (2122880) min=2.02 MB (2122880) p50=2.02 MB (2122880) p75=2.02 MB (2122880) p90=2.02 MB (2122880) p95=2.02 MB (2122880) max=2.02 MB (2122880)
+         - RowsReturned: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - RowsReturnedRate: mean=149.00 /sec min=142.00 /sec p50=147.00 /sec p75=155.00 /sec p90=157.00 /sec p95=158.00 /sec max=160.00 /sec
+           [155.00 /sec, 144.00 /sec, 144.00 /sec, 160.00 /sec, 151.00 /sec, 157.00 /sec, 149.00 /sec, 158.00 /sec,
+            147.00 /sec, 145.00 /sec, 142.00 /sec, 144.00 /sec]
+         - TotalTime: mean=1s014ms min=984.318ms p50=1s006ms p75=1s046ms p90=1s047ms p95=1s050ms max=1s051ms
+           [1s006ms, 1s009ms, 1s005ms, 1s006ms, 989.275ms, 984.318ms, 985.957ms, 986.990ms,
+            1s046ms, 1s047ms, 1s051ms, 1s050ms]
+        GroupingAggregator 0 [12 instances]:
+          ExecOption[0-11]: Streaming Preaggregation, Codegen Enabled
+           - BuildTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - GetResultsTime: mean=934.666us min=561.494us p50=655.304us p75=727.237us p90=760.809us p95=1.516ms max=3.104ms
+             [645.012us, 1.516ms, 623.249us, 638.293us, 760.809us, 610.437us, 655.304us, 727.237us,
+              561.494us, 699.321us, 3.104ms, 674.277us]
+           - HTResizeTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - LargestPartitionPercent: mean=9 (9) min=8 (8) p50=10 (10) p75=10 (10) p90=10 (10) p95=10 (10) max=11 (11)
+             [10, 10, 8, 8, 10, 10, 11, 10,
+              8, 9, 10, 8]
+           - PartitionsCreated: mean=16 (16) min=16 (16) p50=16 (16) p75=16 (16) p90=16 (16) p95=16 (16) max=16 (16)
+           - PeakMemoryUsage: mean=2.01 MB (2110592) min=2.01 MB (2110592) p50=2.01 MB (2110592) p75=2.01 MB (2110592) p90=2.01 MB (2110592) p95=2.01 MB (2110592) max=2.01 MB (2110592)
+           - PeakReservation: mean=2.00 MB (2097152) min=2.00 MB (2097152) p50=2.00 MB (2097152) p75=2.00 MB (2097152) p90=2.00 MB (2097152) p95=2.00 MB (2097152) max=2.00 MB (2097152)
+           - PeakUsedReservation: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - ReductionFactorEstimate: mean=0.00 min=0.00 p50=0.00 p75=0.00 p90=0.00 p95=0.00 max=0.00
+           - ReductionFactorThresholdToExpand: mean=0.00 min=0.00 p50=0.00 p75=0.00 p90=0.00 p95=0.00 max=0.00
+           - RowsPassedThrough: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - RowsReturned: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+             [156, 146, 145, 161, 150, 155, 147, 156,
+              154, 152, 150, 152]
+           - StreamingTime: mean=2.450ms min=2.181ms p50=2.259ms p75=2.502ms p90=2.605ms p95=2.949ms max=3.116ms
+             [2.502ms, 2.181ms, 2.220ms, 2.469ms, 2.259ms, 2.949ms, 2.228ms, 2.256ms,
+              3.116ms, 2.605ms, 2.395ms, 2.215ms]
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+          Buffer pool [12 instances]:
+             - AllocTime: mean=219.261us min=147.001us p50=180.796us p75=199.788us p90=241.529us p95=252.019us max=550.862us
+               [173.881us, 169.089us, 166.561us, 160.565us, 194.368us, 252.019us, 147.001us, 180.796us,
+                550.862us, 241.529us, 199.788us, 194.679us]
+             - CompressionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - CumulativeAllocationBytes: mean=1.25 MB (1310720) min=1.25 MB (1310720) p50=1.25 MB (1310720) p75=1.25 MB (1310720) p90=1.25 MB (1310720) p95=1.25 MB (1310720) max=1.25 MB (1310720)
+             - CumulativeAllocations: mean=20 (20) min=20 (20) p50=20 (20) p75=20 (20) p90=20 (20) p95=20 (20) max=20 (20)
+             - EncryptionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - PeakReservation: mean=2.00 MB (2097152) min=2.00 MB (2097152) p50=2.00 MB (2097152) p75=2.00 MB (2097152) p90=2.00 MB (2097152) p95=2.00 MB (2097152) max=2.00 MB (2097152)
+             - PeakUnpinnedBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+             - PeakUsedReservation: mean=1.25 MB (1310720) min=1.25 MB (1310720) p50=1.25 MB (1310720) p75=1.25 MB (1310720) p90=1.25 MB (1310720) p95=1.25 MB (1310720) max=1.25 MB (1310720)
+             - ReadIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+             - ReadIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - ReadIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - SystemAllocTime: mean=162.411us min=96.171us p50=123.313us p75=143.848us p90=155.217us p95=189.241us max=505.486us
+               [117.362us, 123.313us, 121.746us, 113.586us, 143.848us, 96.171us, 102.830us, 138.584us,
+                505.486us, 189.241us, 155.217us, 141.555us]
+             - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - WriteIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+             - WriteIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - WriteIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+          Hash Table [12 instances]:
+             - HashBuckets: mean=16.38K (16384) min=16.38K (16384) p50=16.38K (16384) p75=16.38K (16384) p90=16.38K (16384) p95=16.38K (16384) max=16.38K (16384)
+             - HashCollisions: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - Probes: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+               [156, 146, 145, 161, 150, 155, 147, 156,
+                154, 152, 150, 152]
+             - Resizes: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+             - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+             - Travel: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+      HDFS_SCAN_NODE (id=0) [12 instances]:(Total: 1s007ms, non-child: 1s007ms, % non-child: 100.00%)
+        ExecOption[2]: PARQUET Codegen Enabled, Codegen enabled: 145 out of 145
+        ExecOption[1]: PARQUET Codegen Enabled, Codegen enabled: 146 out of 146
+        ExecOption[6]: PARQUET Codegen Enabled, Codegen enabled: 147 out of 147
+        ExecOption[4,10]: PARQUET Codegen Enabled, Codegen enabled: 150 out of 150
+        ExecOption[9,11]: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152
+        ExecOption[8]: PARQUET Codegen Enabled, Codegen enabled: 154 out of 154
+        ExecOption[5]: PARQUET Codegen Enabled, Codegen enabled: 155 out of 155
+        ExecOption[0,7]: PARQUET Codegen Enabled, Codegen enabled: 156 out of 156
+        ExecOption[3]: PARQUET Codegen Enabled, Codegen enabled: 161 out of 161
+        File Formats[2]: PARQUET/Unknown(Skipped):145
+        File Formats[1]: PARQUET/Unknown(Skipped):146
+        File Formats[6]: PARQUET/Unknown(Skipped):147
+        File Formats[4,10]: PARQUET/Unknown(Skipped):150
+        File Formats[9,11]: PARQUET/Unknown(Skipped):152
+        File Formats[8]: PARQUET/Unknown(Skipped):154
+        File Formats[5]: PARQUET/Unknown(Skipped):155
+        File Formats[0,7]: PARQUET/Unknown(Skipped):156
+        File Formats[3]: PARQUET/Unknown(Skipped):161
+        Hdfs Read Thread Concurrency Bucket[0-1,3-7,9]: 0:0% 1:100% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[8,10-11]: 0:33.33% 1:66.67% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[2]: 0:50% 1:50% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Table Name[0-11]: tpcds_parquet.store_sales
+         - BytesReadSeries[0] (500.000ms): 0, 4.99 MB
+         - BytesReadSeries[1] (500.000ms): 0, 5.12 MB
+         - BytesReadSeries[2] (500.000ms): 0, 5.35 MB
+         - BytesReadSeries[3] (500.000ms): 0, 5.64 MB
+         - BytesReadSeries[4] (500.000ms): 0, 5.06 MB
+         - BytesReadSeries[5] (500.000ms): 0, 5.06 MB
+         - BytesReadSeries[6] (500.000ms): 0, 5.48 MB
+         - BytesReadSeries[7] (500.000ms): 0, 4.99 MB
+         - BytesReadSeries[8] (500.000ms): 0, 5.15 MB, 12.19 MB
+         - BytesReadSeries[9] (500.000ms): 0, 4.72 MB, 11.32 MB
+         - BytesReadSeries[10] (500.000ms): 0, 4.59 MB, 11.21 MB
+         - BytesReadSeries[11] (500.000ms): 0, 4.28 MB, 11.13 MB
+        Node Lifecycle Event Timeline[0]: 1s111ms
+           - Open Started: 106.400ms (106.400ms)
+           - Open Finished: 107.093ms (692.793us)
+           - First Batch Requested: 107.982ms (888.746us)
+           - First Batch Returned: 207.163ms (99.181ms)
+           - Last Batch Returned: 1s111ms (904.176ms)
+           - Closed: 1s111ms (108.280us)
+        Node Lifecycle Event Timeline[1]: 1s113ms
+           - Open Started: 106.400ms (106.400ms)
+           - Open Finished: 107.243ms (842.150us)
+           - First Batch Requested: 108.370ms (1.127ms)
+           - First Batch Returned: 207.593ms (99.223ms)
+           - Last Batch Returned: 1s111ms (903.994ms)
+           - Closed: 1s113ms (1.780ms)
+        Node Lifecycle Event Timeline[2]: 1s111ms
+           - Open Started: 106.407ms (106.407ms)
+           - Open Finished: 107.419ms (1.011ms)
+           - First Batch Requested: 108.614ms (1.195ms)
+           - First Batch Returned: 207.163ms (98.548ms)
+           - Last Batch Returned: 1s111ms (904.067ms)
+           - Closed: 1s111ms (119.007us)
+        Node Lifecycle Event Timeline[3]: 1s111ms
+           - Open Started: 106.410ms (106.410ms)
+           - Open Finished: 107.307ms (896.928us)
+           - First Batch Requested: 108.320ms (1.013ms)
+           - First Batch Returned: 208.144ms (99.823ms)
+           - Last Batch Returned: 1s111ms (903.161ms)
+           - Closed: 1s111ms (154.581us)
+        Node Lifecycle Event Timeline[4]: 1s092ms
+           - Open Started: 104.760ms (104.760ms)
+           - Open Finished: 105.390ms (629.875us)
+           - First Batch Requested: 106.326ms (936.485us)
+           - First Batch Returned: 207.640ms (101.314ms)
+           - Last Batch Returned: 1s092ms (885.039ms)
+           - Closed: 1s092ms (121.362us)
+        Node Lifecycle Event Timeline[5]: 1s088ms
+           - Open Started: 104.763ms (104.763ms)
+           - Open Finished: 105.742ms (979.351us)
+           - First Batch Requested: 106.839ms (1.096ms)
+           - First Batch Returned: 207.640ms (100.800ms)
+           - Last Batch Returned: 1s087ms (880.267ms)
+           - Closed: 1s088ms (107.980us)
+        Node Lifecycle Event Timeline[6]: 1s089ms
+           - Open Started: 104.770ms (104.770ms)
+           - Open Finished: 105.709ms (939.264us)
+           - First Batch Requested: 106.873ms (1.163ms)
+           - First Batch Returned: 207.639ms (100.766ms)
+           - Last Batch Returned: 1s089ms (881.723ms)
+           - Closed: 1s089ms (106.855us)
+        Node Lifecycle Event Timeline[7]: 1s090ms
+           - Open Started: 104.770ms (104.770ms)
+           - Open Finished: 105.744ms (974.104us)
+           - First Batch Requested: 106.873ms (1.128ms)
+           - First Batch Returned: 207.639ms (100.766ms)
+           - Last Batch Returned: 1s090ms (882.848ms)
+           - Closed: 1s090ms (115.451us)
+        Node Lifecycle Event Timeline[8]: 1s172ms
+           - Open Started: 127.061ms (127.061ms)
+           - Open Finished: 128.033ms (971.953us)
+           - First Batch Requested: 129.224ms (1.191ms)
+           - First Batch Returned: 237.792ms (108.568ms)
+           - Last Batch Returned: 1s172ms (934.429ms)
+           - Closed: 1s172ms (382.034us)
+        Node Lifecycle Event Timeline[9]: 1s173ms
+           - Open Started: 127.061ms (127.061ms)
+           - Open Finished: 128.027ms (965.864us)
+           - First Batch Requested: 129.224ms (1.197ms)
+           - First Batch Returned: 240.150ms (110.926ms)
+           - Last Batch Returned: 1s173ms (933.103ms)
+           - Closed: 1s173ms (341.816us)
+        Node Lifecycle Event Timeline[10]: 1s174ms
+           - Open Started: 127.061ms (127.061ms)
+           - Open Finished: 128.134ms (1.073ms)
+           - First Batch Requested: 129.417ms (1.283ms)
+           - First Batch Returned: 237.455ms (108.037ms)
+           - Last Batch Returned: 1s174ms (937.175ms)
+           - Closed: 1s174ms (119.496us)
+        Node Lifecycle Event Timeline[11]: 1s176ms
+           - Open Started: 127.083ms (127.083ms)
+           - Open Finished: 129.197ms (2.113ms)
+           - First Batch Requested: 130.671ms (1.473ms)
+           - First Batch Returned: 237.374ms (106.703ms)
+           - Last Batch Returned: 1s176ms (939.430ms)
+           - Closed: 1s176ms (121.753us)
+         - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [0]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [1]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [2]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [3]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [4]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [5]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [6]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [7]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [8]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [9]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [10]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+      [11]   - FooterProcessingTime: (Avg: 5.955ms ; Min: 1.208ms ; Max: 110.662ms ; Number of samples: 1824)
+         - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [0]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [1]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [2]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [3]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [4]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [5]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [6]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [7]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [8]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [9]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [10]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [11]   - InitialRangeActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [0]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [1]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [2]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [3]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [4]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [5]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [6]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [7]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [8]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [9]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [10]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [11]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [0]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [1]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [2]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [3]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [4]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [5]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [6]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [7]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [8]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [9]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [10]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [11]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+         - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [0]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [1]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [2]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [3]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [4]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [5]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [6]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [7]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [8]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [9]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [10]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [11]   - ParquetCompressedBytesReadPerColumn: 0 (Number of samples: 0)
+         - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [0]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [1]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [2]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [3]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [4]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [5]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [6]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [7]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [8]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [9]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [10]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+      [11]   - ParquetCompressedPageSize: 0 (Number of samples: 0)
+         - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [0]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [1]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [2]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [3]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [4]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [5]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [6]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [7]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [8]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [9]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [10]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [11]   - ParquetRowGroupActualReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [0]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [1]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [2]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [3]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [4]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [5]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [6]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [7]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [8]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [9]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [10]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+      [11]   - ParquetRowGroupIdealReservation: (Avg: 0 ; Min: 0 ; Max: 0 ; Number of samples: 1824)
+         - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [0]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [1]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [2]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [3]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [4]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [5]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [6]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [7]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [8]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [9]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [10]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+      [11]   - ParquetUncompressedBytesReadPerColumn: 0 (Number of samples: 0)
+         - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [0]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [1]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [2]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [3]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [4]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [5]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [6]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [7]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [8]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [9]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [10]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+      [11]   - ParquetUncompressedPageSize: 0 (Number of samples: 0)
+         - AverageHdfsReadThreadConcurrency: mean=0.67 min=0.50 p50=1.00 p75=1.00 p90=1.00 p95=1.00 max=1.00
+           [1.00, 1.00, 0.50, 1.00, 1.00, 1.00, 1.00, 1.00,
+            0.67, 1.00, 0.67, 0.67]
+         - BytesRead: mean=11.84 MB (12417186) min=11.32 MB (11870030) p50=11.63 MB (12196314) p75=12.10 MB (12691595) p90=12.18 MB (12771396) p95=12.43 MB (13031067) max=12.62 MB (13237750)
+           [12.18 MB, 11.32 MB, 11.34 MB, 12.62 MB, 11.50 MB, 12.10 MB, 11.63 MB, 12.09 MB,
+            12.43 MB, 11.73 MB, 11.61 MB, 11.55 MB]
+         - BytesReadDataNodeCache: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - BytesReadLocal: mean=11.84 MB (12417186) min=11.32 MB (11870030) p50=11.63 MB (12196314) p75=12.10 MB (12691595) p90=12.18 MB (12771396) p95=12.43 MB (13031067) max=12.62 MB (13237750)
+           [12.18 MB, 11.32 MB, 11.34 MB, 12.62 MB, 11.50 MB, 12.10 MB, 11.63 MB, 12.09 MB,
+            12.43 MB, 11.73 MB, 11.61 MB, 11.55 MB]
+         - BytesReadRemoteUnexpected: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - BytesReadShortCircuit: mean=11.84 MB (12417186) min=11.32 MB (11870030) p50=11.63 MB (12196314) p75=12.10 MB (12691595) p90=12.18 MB (12771396) p95=12.43 MB (13031067) max=12.62 MB (13237750)
+           [12.18 MB, 11.32 MB, 11.34 MB, 12.62 MB, 11.50 MB, 12.10 MB, 11.63 MB, 12.09 MB,
+            12.43 MB, 11.73 MB, 11.61 MB, 11.55 MB]
+         - CachedFileHandlesHitCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - CachedFileHandlesMissCount: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - CollectionItemsRead: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DataCacheHitBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - DataCacheHitCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DataCacheMissBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - DataCacheMissCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DataCachePartialHitCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DecompressionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - MaterializeTupleTime: mean=42.710us min=38.641us p50=40.729us p75=44.087us p90=45.228us p95=46.830us max=54.285us
+           [45.228us, 39.318us, 46.830us, 54.285us, 40.432us, 43.524us, 38.641us, 39.968us,
+            44.087us, 40.729us, 38.677us, 40.801us]
+         - MaxCompressedTextFileLength: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - NumColumns: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumDictFilteredRowGroups: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumDisksAccessed: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+         - NumPages: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumRowGroups: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - NumRowGroupsWithPageIndex: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - NumScannersWithNoReads: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumStatsFilteredPages: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumStatsFilteredRowGroups: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - PeakMemoryUsage: mean=132.00 KB (135168) min=132.00 KB (135168) p50=132.00 KB (135168) p75=132.00 KB (135168) p90=132.00 KB (135168) p95=132.00 KB (135168) max=132.00 KB (135168)
+         - PerReadThreadRawHdfsThroughput: mean=27.54 MB/sec min=24.58 MB/sec p50=27.45 MB/sec p75=28.52 MB/sec p90=29.12 MB/sec p95=29.60 MB/sec max=31.73 MB/sec
+           [28.05 MB/sec, 25.72 MB/sec, 25.62 MB/sec, 31.73 MB/sec, 28.20 MB/sec, 29.60 MB/sec, 28.52 MB/sec, 27.01 MB/sec,
+            29.12 MB/sec, 27.45 MB/sec, 24.81 MB/sec, 24.58 MB/sec]
+         - RemoteScanRanges: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - RowsRead: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - RowsReturned: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - RowsReturnedRate: mean=150.00 /sec min=143.00 /sec p50=148.00 /sec p75=155.00 /sec p90=158.00 /sec p95=158.00 /sec max=160.00 /sec
+           [155.00 /sec, 145.00 /sec, 144.00 /sec, 160.00 /sec, 152.00 /sec, 158.00 /sec, 150.00 /sec, 158.00 /sec,
+            148.00 /sec, 145.00 /sec, 143.00 /sec, 145.00 /sec]
+         - ScanRangesComplete: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+           [156, 146, 145, 161, 150, 155, 147, 156,
+            154, 152, 150, 152]
+         - ScannerIoWaitTime: mean=870.654ms min=818.142ms p50=846.143ms p75=922.163ms p90=925.091ms p95=930.657ms max=939.015ms
+           [868.788ms, 846.143ms, 871.810ms, 841.909ms, 830.330ms, 818.142ms, 818.514ms, 835.287ms,
+            925.091ms, 922.163ms, 930.657ms, 939.015ms]
+         - TotalRawHdfsOpenFileTime: mean=377.816ms min=341.136ms p50=359.218ms p75=396.762ms p90=408.373ms p95=445.379ms max=458.881ms
+           [361.823ms, 341.136ms, 359.218ms, 362.439ms, 351.191ms, 353.820ms, 353.273ms, 341.498ms,
+            458.881ms, 445.379ms, 396.762ms, 408.373ms]
+         - TotalRawHdfsReadTime: mean=431.541ms min=397.820ms p50=427.180ms p75=442.793ms p90=447.406ms p95=467.927ms max=469.735ms
+           [434.274ms, 440.171ms, 442.793ms, 397.820ms, 407.819ms, 408.872ms, 407.771ms, 447.406ms,
+            426.720ms, 427.180ms, 467.927ms, 469.735ms]
+         - TotalReadThroughput: mean=6.02 MB/sec min=4.99 MB/sec p50=5.35 MB/sec p75=7.42 MB/sec p90=7.47 MB/sec p95=7.54 MB/sec max=8.13 MB/sec
+           [4.99 MB/sec, 5.12 MB/sec, 5.35 MB/sec, 5.64 MB/sec, 5.06 MB/sec, 5.06 MB/sec, 5.48 MB/sec, 4.99 MB/sec,
+            8.13 MB/sec, 7.54 MB/sec, 7.47 MB/sec, 7.42 MB/sec]
+         - TotalTime: mean=1s007ms min=977.917ms p50=1s000ms p75=1s039ms p90=1s041ms p95=1s042ms max=1s044ms
+           [1s000ms, 1s000ms, 1s000ms, 1s000ms, 983.536ms, 977.917ms, 979.998ms, 981.138ms,
+            1s039ms, 1s041ms, 1s042ms, 1s044ms]
+        Buffer pool [12 instances]:
+           - AllocTime: mean=613.787us min=535.398us p50=582.143us p75=633.142us p90=643.485us p95=667.516us max=815.810us
+             [643.485us, 564.830us, 535.398us, 631.379us, 556.220us, 667.516us, 815.810us, 582.143us,
+              595.463us, 633.142us, 578.890us, 561.173us]
+           - CompressionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - CumulativeAllocationBytes: mean=16.67 MB (17476266) min=15.81 MB (16580608) p50=16.44 MB (17235968) p75=16.94 MB (17760256) p90=17.50 MB (18350080) p95=17.56 MB (18415616) max=17.94 MB (18808832)
+             [17.56 MB, 15.81 MB, 16.06 MB, 17.94 MB, 16.25 MB, 16.94 MB, 16.06 MB, 16.88 MB,
+              17.50 MB, 16.69 MB, 16.44 MB, 15.88 MB]
+           - CumulativeAllocations: mean=152 (152) min=145 (145) p50=152 (152) p75=155 (155) p90=156 (156) p95=156 (156) max=161 (161)
+             [156, 146, 145, 161, 150, 155, 147, 156,
+              154, 152, 150, 152]
+           - EncryptionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - PeakReservation: mean=128.00 KB (131072) min=128.00 KB (131072) p50=128.00 KB (131072) p75=128.00 KB (131072) p90=128.00 KB (131072) p95=128.00 KB (131072) max=128.00 KB (131072)
+           - PeakUnpinnedBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - PeakUsedReservation: mean=128.00 KB (131072) min=128.00 KB (131072) p50=128.00 KB (131072) p75=128.00 KB (131072) p90=128.00 KB (131072) p95=128.00 KB (131072) max=128.00 KB (131072)
+           - ReadIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - ReadIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - ReadIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - SystemAllocTime: mean=155.597us min=114.733us p50=157.948us p75=164.283us p90=176.784us p95=179.144us max=207.253us
+             [164.082us, 114.733us, 121.548us, 179.144us, 128.000us, 207.253us, 157.948us, 150.789us,
+              164.283us, 176.784us, 161.559us, 141.045us]
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - WriteIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - WriteIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - WriteIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+Query (id=504e9a5d292585e8:7c56749700000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:53:03.688525000
+    End Time: 2021-02-09 08:53:08.376531000
+    Query Type: QUERY
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: SELECT NDV(ss_sold_time_sk) AS ss_sold_time_sk, COUNT(CASE WHEN ss_sold_time_sk IS NULL THEN 1 ELSE NULL END), 4, CAST(4 as DOUBLE), NULL, NULL, NDV(ss_item_sk) AS ss_item_sk, COUNT(CASE WHEN ss_item_sk IS NULL THEN 1 ELSE NULL END), 8, CAST(8 as DOUBLE), NULL, NULL, NDV(ss_customer_sk) AS ss_customer_sk, COUNT(CASE WHEN ss_customer_sk IS NULL THEN 1 ELSE NULL END), 4, CAST(4 as DOUBLE), NULL, NULL, NDV(ss_cdemo_sk) AS ss_cdemo_sk, COUNT(CASE WHEN ss_cdemo_sk IS NULL T [...]
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Query Options (set by configuration and planner): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST,PREAGG_BYTES_LIMIT=0,SORT_RUN_BYTES_LIMIT=0,TARGETED_KUDU_SCAN_RANGE_LENGTH=0
+    Plan: 
+----------------
+Max Per-Host Resource Reservation: Memory=32.00MB Threads=5
+Per-Host Resource Estimates: Memory=114MB
+Analyzed query: SELECT ndv(ss_sold_time_sk) ss_sold_time_sk, count(CASE WHEN
+ss_sold_time_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(4 AS
+TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_item_sk) ss_item_sk, count(CASE
+WHEN ss_item_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(8 AS
+TINYINT), CAST(8 AS DOUBLE), NULL, NULL, ndv(ss_customer_sk) ss_customer_sk,
+count(CASE WHEN ss_customer_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_cdemo_sk) ss_cdemo_sk,
+count(CASE WHEN ss_cdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_hdemo_sk) ss_hdemo_sk,
+count(CASE WHEN ss_hdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_addr_sk) ss_addr_sk,
+count(CASE WHEN ss_addr_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_store_sk) ss_store_sk,
+count(CASE WHEN ss_store_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_promo_sk) ss_promo_sk,
+count(CASE WHEN ss_promo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_ticket_number)
+ss_ticket_number, count(CASE WHEN ss_ticket_number IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(8 AS TINYINT), CAST(8 AS DOUBLE), NULL, NULL,
+ndv(ss_quantity) ss_quantity, count(CASE WHEN ss_quantity IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL,
+ndv(ss_wholesale_cost) ss_wholesale_cost, count(CASE WHEN ss_wholesale_cost IS
+NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_list_price) ss_list_price, count(CASE WHEN
+ss_list_price IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS
+TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_sales_price) ss_sales_price,
+count(CASE WHEN ss_sales_price IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_ext_discount_amt)
+ss_ext_discount_amt, count(CASE WHEN ss_ext_discount_amt IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL,
+ndv(ss_ext_sales_price) ss_ext_sales_price, count(CASE WHEN ss_ext_sales_price
+IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_ext_wholesale_cost) ss_ext_wholesale_cost,
+count(CASE WHEN ss_ext_wholesale_cost IS NULL THEN CAST(1 AS TINYINT) ELSE NULL
+END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL,
+ndv(ss_ext_list_price) ss_ext_list_price, count(CASE WHEN ss_ext_list_price IS
+NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_ext_tax) ss_ext_tax, count(CASE WHEN ss_ext_tax IS
+NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS
+DOUBLE), NULL, NULL, ndv(ss_coupon_amt) ss_coupon_amt, count(CASE WHEN
+ss_coupon_amt IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS
+TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_net_paid) ss_net_paid,
+count(CASE WHEN ss_net_paid IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END),
+CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL, ndv(ss_net_paid_inc_tax)
+ss_net_paid_inc_tax, count(CASE WHEN ss_net_paid_inc_tax IS NULL THEN CAST(1 AS
+TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE), NULL, NULL,
+ndv(ss_net_profit) ss_net_profit, count(CASE WHEN ss_net_profit IS NULL THEN
+CAST(1 AS TINYINT) ELSE NULL END), CAST(16 AS TINYINT), CAST(16 AS DOUBLE),
+NULL, NULL FROM tpcds_parquet.store_sales
+
+F01:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
+|  Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1
+PLAN-ROOT SINK
+|  output exprs: ndv(ss_sold_time_sk), count(CASE WHEN ss_sold_time_sk IS NULL THEN 1 ELSE NULL END), CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_item_sk), count(CASE WHEN ss_item_sk IS NULL THEN 1 ELSE NULL END), CAST(8 AS TINYINT), CAST(8 AS DOUBLE), NULL, NULL, ndv(ss_customer_sk), count(CASE WHEN ss_customer_sk IS NULL THEN 1 ELSE NULL END), CAST(4 AS TINYINT), CAST(4 AS DOUBLE), NULL, NULL, ndv(ss_cdemo_sk), count(CASE WHEN ss_cdemo_sk IS NULL THEN 1 ELSE NULL END), CA [...]
+|  mem-estimate=0B mem-reservation=0B thread-reservation=0
+|
+03:AGGREGATE [FINALIZE]
+|  output: ndv:merge(ss_sold_time_sk), count:merge(CASE WHEN ss_sold_time_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_item_sk), count:merge(CASE WHEN ss_item_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_customer_sk), count:merge(CASE WHEN ss_customer_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_cdemo_sk), count:merge(CASE WHEN ss_cdemo_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_hdemo_sk), count:merge(CASE WHEN ss_hdemo_sk IS NULL THEN 1 ELSE NULL END), ndv:merge(ss_addr_sk), c [...]
+|  mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
+|  tuple-ids=2 row-size=352B cardinality=1
+|  in pipelines: 03(GETNEXT), 01(OPEN)
+|
+02:EXCHANGE [UNPARTITIONED]
+|  mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
+|  tuple-ids=1 row-size=352B cardinality=1
+|  in pipelines: 01(GETNEXT)
+|
+F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=12
+Per-Instance Resources: mem-estimate=26.00MB mem-reservation=8.00MB thread-reservation=1
+01:AGGREGATE
+|  output: ndv(ss_sold_time_sk), count(CASE WHEN ss_sold_time_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_item_sk), count(CASE WHEN ss_item_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_customer_sk), count(CASE WHEN ss_customer_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_cdemo_sk), count(CASE WHEN ss_cdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), ndv(ss_hdemo_sk), count(CASE WHEN ss_hdemo_sk IS NULL THEN CAST(1 AS TINYINT) ELSE NULL END), [...]
+|  mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
+|  tuple-ids=1 row-size=352B cardinality=1
+|  in pipelines: 01(GETNEXT), 00(OPEN)
+|
+00:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
+   HDFS partitions=1824/1824 files=1824 size=196.95MB
+   stored statistics:
+     table: rows=2.88M size=196.95MB
+     partitions: 1824/1824 rows=2.88M
+     columns: all
+   extrapolated-rows=disabled max-scan-range-rows=130.09K
+   mem-estimate=16.00MB mem-reservation=8.00MB thread-reservation=0
+   tuple-ids=0 row-size=96B cardinality=2.88M
+   in pipelines: 00(GETNEXT)
+----------------
+    Estimated Per-Host Mem: 119554048
+    Request Pool: default-pool
+    Per Host Min Memory Reservation: tarmstrong-Precision-7540:27001(32.00 MB) tarmstrong-Precision-7540:27000(32.00 MB) tarmstrong-Precision-7540:27002(32.00 MB)
+    Per Host Number of Fragment Instances: tarmstrong-Precision-7540:27001(4) tarmstrong-Precision-7540:27000(5) tarmstrong-Precision-7540:27002(4)
+    Admission result: Admitted immediately
+    Cluster Memory Admitted: 342.05 MB
+    Executor Group: default
+    ExecSummary: 
+Operator              #Hosts  #Inst   Avg Time   Max Time  #Rows  Est. #Rows   Peak Mem  Est. Peak Mem  Detail                    
+----------------------------------------------------------------------------------------------------------------------------------
+F01:ROOT                   1      1   93.354us   93.354us                             0              0                            
+03:AGGREGATE               1      1    3.372ms    3.372ms      1           1   34.17 KB       10.00 MB  FINALIZE                  
+02:EXCHANGE                1      1  416.507us  416.507us     12           1  392.00 KB       16.00 KB  UNPARTITIONED             
+F00:EXCHANGE SENDER        3     12  265.136us  490.561us                        8.00 B              0                            
+01:AGGREGATE               3     12  167.993ms  223.770ms     12           1  133.17 KB       10.00 MB                            
+00:SCAN HDFS               3     12    3s859ms    3s934ms  2.88M       2.88M   12.24 MB       16.00 MB  tpcds_parquet.store_sales
+    Errors: 
+    Query Compilation: 161.417ms
+       - Metadata of all 1 tables cached: 12.496ms (12.496ms)
+       - Analysis finished: 63.795ms (51.298ms)
+       - Authorization finished (noop): 63.870ms (75.085us)
+       - Value transfer graph computed: 64.580ms (709.718us)
+       - Single node plan created: 137.668ms (73.088ms)
+       - Runtime filters computed: 143.160ms (5.491ms)
+       - Distributed plan created: 143.321ms (161.701us)
+       - Parallel plans created: 143.339ms (17.755us)
+       - Planning finished: 161.417ms (18.077ms)
+    Query Timeline: 4s688ms
+       - Query submitted: 101.803us (101.803us)
+       - Planning finished: 177.253ms (177.152ms)
+       - Submit for admission: 181.013ms (3.759ms)
+       - Completed admission: 200.984ms (19.971ms)
+       - Ready to start on 3 backends: 201.926ms (941.785us)
+       - All 3 execution backends (13 fragment instances) started: 215.853ms (13.927ms)
+       - Rows available: 4s674ms (4s458ms)
+       - First row fetched: 4s675ms (696.950us)
+       - Last row fetched: 4s675ms (112.403us)
+       - Released admission control resources: 4s687ms (12.366ms)
+       - Unregister query: 4s688ms (250.375us)
+     - AdmissionControlTimeSinceLastUpdate: 65.000ms
+     - ComputeScanRangeAssignmentTimer: 16.678ms
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - ClientFetchWaitTimer: 131.365us
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 1 (1)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 75.00 /sec
+     - RowMaterializationTimer: 13.268ms
+     - TotalTime: 0.000ns
+  Execution Profile 504e9a5d292585e8:7c56749700000000:
+    Number of filters: 0
+    Filter routing table: 
+ ID  Src. Node  Tgt. Node(s)  Target type  Partition filter  Pending (Expected)  First arrived  Completed  Enabled  Bloom Size   Est fpp
+----------------------------------------------------------------------------------------------------------------------------------------
+    Backend startup latencies: Count: 3, min / max: 4ms / 5ms, 25th %-ile: 4ms, 50th %-ile: 4ms, 75th %-ile: 4ms, 90th %-ile: 5ms, 95th %-ile: 5ms, 99.9th %-ile: 5ms
+    Slowest backend to start up: tarmstrong-Precision-7540:27001
+    Per Node Peak Memory Usage: tarmstrong-Precision-7540:27000(37.50 MB) tarmstrong-Precision-7540:27002(33.62 MB) tarmstrong-Precision-7540:27001(33.61 MB)
+    Per Node Bytes Read: tarmstrong-Precision-7540:27000(113.30 MB) tarmstrong-Precision-7540:27002(108.23 MB) tarmstrong-Precision-7540:27001(107.79 MB)
+    Per Node User Time: tarmstrong-Precision-7540:27000(6s060ms) tarmstrong-Precision-7540:27002(5s572ms) tarmstrong-Precision-7540:27001(5s600ms)
+    Per Node System Time: tarmstrong-Precision-7540:27000(326.911ms) tarmstrong-Precision-7540:27002(244.871ms) tarmstrong-Precision-7540:27001(240.180ms)
+     - ExchangeScanRatio: 0.00
+     - FiltersReceived: 0 (0)
+     - FinalizationTimer: 0.000ns
+     - InactiveTotalTime: 0.000ns
+     - InnerNodeSelectivityRatio: 0.00
+     - NumBackends: 3 (3)
+     - NumCompletedBackends: 3 (3)
+     - NumFragmentInstances: 13 (13)
+     - NumFragments: 2 (2)
+     - TotalBytesRead: 329.31 MB (345305727)
+     - TotalBytesSent: 174.51 KB (178703)
+     - TotalCpuTime: 18s045ms
+     - TotalInnerBytesSent: 0
+     - TotalScanBytesSent: 174.51 KB (178703)
+     - TotalTime: 4s486ms
+    Per Node Profiles:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+      tarmstrong-Precision-7540:27000:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 0 (0)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 0
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F01:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 9 (9)
+             - CodegenTotalWallClockTime: 164.546ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 158.686ms
+             - CodegenVoluntaryContextSwitches: 2 (2)
+             - CompileTime: 29.470ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 5.487ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 141.993ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 132 (132)
+             - NumInstructions: 660 (660)
+             - OptimizationTime: 105.694ms
+             - PeakMemoryUsage: 330.00 KB (337920)
+             - PrepareTime: 22.568ms
+             - TotalTime: 164.560ms
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 16 (16)
+             - CodegenTotalWallClockTime: 345.587ms
+               - CodegenSysTime: 7.899ms
+               - CodegenUserTime: 334.763ms
+             - CodegenVoluntaryContextSwitches: 0 (0)
+             - CompileTime: 11.055ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 13.433ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 326.181ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 213 (213)
+             - NumInstructions: 3.20K (3202)
+             - OptimizationTime: 300.274ms
+             - PeakMemoryUsage: 1.56 MB (1639424)
+             - PrepareTime: 19.418ms
+             - TotalTime: 345.598ms
+      tarmstrong-Precision-7540:27002:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 0 (0)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 0
+           - GcTotalExtraSleepTimeMillis: 1ms
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 10 (10)
+             - CodegenTotalWallClockTime: 308.750ms
+               - CodegenSysTime: 3.948ms
+               - CodegenUserTime: 303.791ms
+             - CodegenVoluntaryContextSwitches: 0 (0)
+             - CompileTime: 6.765ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 11.404ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 290.436ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 213 (213)
+             - NumInstructions: 3.20K (3202)
+             - OptimizationTime: 271.101ms
+             - PeakMemoryUsage: 1.56 MB (1639424)
+             - PrepareTime: 18.327ms
+             - TotalTime: 308.762ms
+      tarmstrong-Precision-7540:27001:
+         - AdmissionSlots: 4 (4)
+         - BloomFilterBytes: 0
+         - InactiveTotalTime: 0.000ns
+         - ScratchBytesRead: 0
+         - ScratchBytesWritten: 0
+         - ScratchFileUsedBytes: 0
+         - ScratchReads: 0 (0)
+         - ScratchWrites: 0 (0)
+         - TotalEncryptionTime: 0.000ns
+         - TotalReadBlockTime: 0.000ns
+         - TotalTime: 0.000ns
+         - UncompressedScratchBytesWritten: 0
+        Buffer pool:
+           - AllocTime: 0.000ns
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 0
+           - CumulativeAllocations: 0 (0)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 0
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 0
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - ReservationLimit: 0
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        JVM:
+           - GcCount: 0 (0)
+           - GcNumInfoThresholdExceeded: 0 (0)
+           - GcNumWarnThresholdExceeded: 0 (0)
+           - GcTimeMillis: 0
+           - GcTotalExtraSleepTimeMillis: 0
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+        Fragment F00:
+           - InactiveTotalTime: 0.000ns
+           - TotalTime: 0.000ns
+          CodeGen:
+             - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0)
+             - CodegenCompileThreadTotalWallClockTime: 0.000ns
+               - CodegenCompileThreadSysTime: 0.000ns
+               - CodegenCompileThreadUserTime: 0.000ns
+             - CodegenCompileThreadVoluntaryContextSwitches: 0 (0)
+             - CodegenInvoluntaryContextSwitches: 13 (13)
+             - CodegenTotalWallClockTime: 369.970ms
+               - CodegenSysTime: 0.000ns
+               - CodegenUserTime: 366.906ms
+             - CodegenVoluntaryContextSwitches: 0 (0)
+             - CompileTime: 10.798ms
+             - InactiveTotalTime: 0.000ns
+             - IrGenerationTime: 11.049ms
+             - LoadTime: 0.000ns
+             - MainThreadCodegenTime: 353.774ms
+             - ModuleBitcodeSize: 3.00 MB (3150808)
+             - NumFunctions: 213 (213)
+             - NumInstructions: 3.20K (3202)
+             - OptimizationTime: 330.788ms
+             - PeakMemoryUsage: 1.56 MB (1639424)
+             - PrepareTime: 16.210ms
+             - TotalTime: 369.983ms
+    Coordinator Fragment F01:
+    Instances: Instance 504e9a5d292585e8:7c56749700000000 (host=tarmstrong-Precision-7540:27000)
+      Last report received time[0]: 2021-02-09 08:53:08.375
+       - MemoryUsage[0] (500.000ms): 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB, 12.00 KB
+      Fragment Instance Lifecycle Event Timeline[0]: 4s434ms
+         - Prepare Finished: 33.298ms (33.298ms)
+         - Open Finished: 4s434ms (4s400ms)
+         - First Batch Produced: 4s434ms (602.083us)
+         - First Batch Sent: 4s434ms (77.650us)
+         - ExecInternal Finished: 4s434ms (128.282us)
+       - AverageThreadTokens: 0.00
+       - BytesAssigned: 0
+       - CompletionTime: 4s476ms
+       - ExchangeScanRatio: 0.00
+       - ExecutionRate: 0.00 /sec
+       - InactiveTotalTime: 0.000ns
+       - PeakMemoryUsage: 434.17 KB (444592)
+       - PeakReservation: 0
+       - PeakUsedReservation: 0
+       - PerHostPeakMemUsage: 37.50 MB (39320356)
+       - RowsProduced: 1 (1)
+       - TotalNetworkReceiveTime: 4s233ms
+       - TotalNetworkSendTime: 0.000ns
+       - TotalStorageWaitTime: 0.000ns
+       - TotalThreadsInvoluntaryContextSwitches: 9 (9)
+       - TotalThreadsTotalWallClockTime: 4s401ms
+         - TotalThreadsSysTime: 0.000ns
+         - TotalThreadsUserTime: 161.610ms
+       - TotalThreadsVoluntaryContextSwitches: 14 (14)
+       - TotalTime: 0.000ns
+      Fragment Instance Lifecycle Timings:
+         - ExecTime: 779.769us
+           - ExecTreeExecTime: 598.871us
+         - InactiveTotalTime: 0.000ns
+         - OpenTime: 4s400ms
+           - ExecTreeOpenTime: 4s236ms
+         - PrepareTime: 719.886us
+           - ExecTreePrepareTime: 485.979us
+         - TotalTime: 0.000ns
+      PLAN_ROOT_SINK:(Total: 93.354us, non-child: 93.354us, % non-child: 100.00%)
+         - InactiveTotalTime: 0.000ns
+         - PeakMemoryUsage: 0
+         - RowsSent: 1 (1)
+         - RowsSentRate: 10.71 K/sec
+         - TotalTime: 93.354us
+      AGGREGATION_NODE (id=3):(Total: 4s237ms, non-child: 3.372ms, % non-child: 0.08%)
+        Node Lifecycle Event Timeline[0]: 4s434ms
+           - Open Started: 197.977ms (197.977ms)
+           - Open Finished: 4s434ms (4s236ms)
+           - First Batch Requested: 4s434ms (49.765us)
+           - First Batch Returned: 4s434ms (595.782us)
+           - Last Batch Returned: 4s434ms (626.000ns)
+           - Closed: 4s434ms (166.794us)
+         - InactiveTotalTime: 0.000ns
+         - PeakMemoryUsage: 34.17 KB (34992)
+         - RowsReturned: 1 (1)
+         - RowsReturnedRate: 0
+         - TotalTime: 4s237ms
+        NonGroupingAggregator 0:
+           - BuildTime: 2.106ms
+           - InactiveTotalTime: 0.000ns
+           - PeakMemoryUsage: 26.17 KB (26800)
+           - RowsReturned: 1 (1)
+           - TotalTime: 0.000ns
+      EXCHANGE_NODE (id=2):(Total: 4s233ms, non-child: 416.507us, % non-child: 0.01%)
+        Node Lifecycle Event Timeline[0]: 4s434ms
+           - Open Started: 197.981ms (197.981ms)
+           - Open Finished: 4s315ms (4s117ms)
+           - First Batch Requested: 4s315ms (80.529us)
+           - First Batch Returned: 4s431ms (116.291ms)
+           - Last Batch Returned: 4s431ms (685.000ns)
+           - Closed: 4s434ms (2.198ms)
+         - ConvertRowBatchTime: 67.503us
+         - InactiveTotalTime: 4s233ms
+         - PeakMemoryUsage: 392.00 KB (401408)
+         - RowsReturned: 12 (12)
+         - RowsReturnedRate: 2.00 /sec
+         - TotalTime: 4s233ms
+        Buffer pool:
+           - AllocTime: 47.984us
+           - CompressionTime: 0.000ns
+           - CumulativeAllocationBytes: 480.00 KB (491520)
+           - CumulativeAllocations: 24 (24)
+           - EncryptionTime: 0.000ns
+           - InactiveTotalTime: 0.000ns
+           - PeakReservation: 392.00 KB (401408)
+           - PeakUnpinnedBytes: 0
+           - PeakUsedReservation: 392.00 KB (401408)
+           - ReadIoBytes: 0
+           - ReadIoOps: 0 (0)
+           - ReadIoWaitTime: 0.000ns
+           - SystemAllocTime: 0.000ns
+           - TotalTime: 0.000ns
+           - WriteIoBytes: 0
+           - WriteIoOps: 0 (0)
+           - WriteIoWaitTime: 0.000ns
+        Dequeue:
+           - BytesDequeued[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+           - FirstBatchWaitTime: 4s117ms
+           - InactiveTotalTime: 0.000ns
+           - TotalBytesDequeued: 266.16 KB (272544)
+           - TotalGetBatchTime: 4s233ms
+             - DataWaitTime: 4s233ms
+           - TotalTime: 0.000ns
+        Enqueue:
+           - BytesReceived[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+           - DeferredQueueSize[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+           - DispatchTime: (Avg: 62.664us ; Min: 37.152us ; Max: 81.138us ; Number of samples: 12)
+           - DeserializeRowBatchTime: 557.808us
+           - InactiveTotalTime: 0.000ns
+           - TotalBatchesEnqueued: 12 (12)
+           - TotalBatchesReceived: 12 (12)
+           - TotalBytesReceived: 174.51 KB (178703)
+           - TotalEarlySenders: 0 (0)
+           - TotalEosReceived: 12 (12)
+           - TotalHasDeferredRPCsTime: 0.000ns
+           - TotalRPCsDeferred: 0 (0)
+           - TotalTime: 0.000ns
+    Fragment F00 [12 instances]:
+    Instances: Instance 504e9a5d292585e8:7c56749700000001 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000002 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000003 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000004 (host=tarmstrong-Precision-7540:27002), Instance 504e9a5d292585e8:7c56749700000005 (host=tarmstrong-Precision-7540:27000), Instance 504e9a5d292585e8:7c56749700000006 (host=tarmstrong-Pr [...]
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[11]: 0:152/15.76 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[9]: 0:152/15.86 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[0]: 0:152/15.87 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[5]: 0:152/15.91 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[4]: 0:152/15.98 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[2]: 0:152/16.01 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[1]: 0:152/16.03 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[8]: 0:152/16.04 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[10]: 0:152/16.06 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[3]: 0:152/16.09 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[6]: 0:152/16.21 MB
+      Hdfs split stats (<volume id>:<# splits>/<split lengths>)[7]: 0:152/21.12 MB
+      Last report received time[0-3]: 2021-02-09 08:53:08.267
+      Last report received time[8-11]: 2021-02-09 08:53:08.313
+      Last report received time[4-7]: 2021-02-09 08:53:08.375
+       - MemoryUsage[0] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.28 MB, 8.21 MB, 8.36 MB, 8.04 MB, 8.04 MB, 8.04 MB
+       - MemoryUsage[1] (500.000ms): 12.01 KB, 8.04 MB, 8.05 MB, 8.10 MB, 8.20 MB, 8.36 MB, 8.04 MB, 8.41 MB, 8.04 MB
+       - MemoryUsage[2] (500.000ms): 12.01 KB, 8.04 MB, 8.38 MB, 8.04 MB, 8.04 MB, 8.37 MB, 8.04 MB, 8.06 MB, 8.04 MB
+       - MemoryUsage[3] (500.000ms): 12.01 KB, 8.24 MB, 8.04 MB, 8.04 MB, 8.24 MB, 8.04 MB, 8.04 MB, 8.08 MB, 8.19 MB
+       - MemoryUsage[4] (500.000ms): 12.01 KB, 8.43 MB, 8.04 MB, 8.04 MB, 8.35 MB, 11.96 MB, 8.35 MB, 8.57 MB, 8.41 MB
+       - MemoryUsage[5] (500.000ms): 12.01 KB, 8.04 MB, 8.06 MB, 8.04 MB, 8.41 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.28 MB
+       - MemoryUsage[6] (500.000ms): 12.01 KB, 8.43 MB, 8.04 MB, 8.04 MB, 8.07 MB, 8.38 MB, 8.28 MB, 8.04 MB, 8.36 MB
+       - MemoryUsage[7] (500.000ms): 12.01 KB, 8.04 MB, 8.43 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB
+       - MemoryUsage[8] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.44 MB, 8.07 MB
+       - MemoryUsage[9] (500.000ms): 12.01 KB, 8.05 MB, 8.05 MB, 8.43 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB, 8.04 MB
+       - MemoryUsage[10] (500.000ms): 12.01 KB, 8.07 MB, 8.24 MB, 8.43 MB, 8.04 MB, 8.04 MB, 8.24 MB, 8.40 MB, 8.05 MB
+       - MemoryUsage[11] (500.000ms): 12.01 KB, 8.04 MB, 8.04 MB, 8.35 MB, 8.08 MB, 8.43 MB, 8.04 MB, 8.04 MB, 8.04 MB
+       - ThreadUsage[0] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[1] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[2] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[3] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[4] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[5] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[6] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[7] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[8] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[9] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[10] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+       - ThreadUsage[11] (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1
+      Fragment Instance Lifecycle Event Timeline[0]: 4s330ms
+         - Prepare Finished: 1.158ms (1.158ms)
+         - Open Finished: 4s329ms (4s328ms)
+         - First Batch Produced: 4s329ms (31.906us)
+         - First Batch Sent: 4s329ms (122.841us)
+         - ExecInternal Finished: 4s330ms (623.646us)
+      Fragment Instance Lifecycle Event Timeline[1]: 4s320ms
+         - Prepare Finished: 1.184ms (1.184ms)
+         - Open Finished: 4s319ms (4s318ms)
+         - First Batch Produced: 4s319ms (31.710us)
+         - First Batch Sent: 4s319ms (190.570us)
+         - ExecInternal Finished: 4s320ms (655.298us)
+      Fragment Instance Lifecycle Event Timeline[2]: 4s328ms
+         - Prepare Finished: 9.033ms (9.033ms)
+         - Open Finished: 4s326ms (4s317ms)
+         - First Batch Produced: 4s326ms (26.453us)
+         - First Batch Sent: 4s326ms (144.470us)
+         - ExecInternal Finished: 4s328ms (2.040ms)
+      Fragment Instance Lifecycle Event Timeline[3]: 4s321ms
+         - Prepare Finished: 9.878ms (9.878ms)
+         - Open Finished: 4s320ms (4s310ms)
+         - First Batch Produced: 4s320ms (25.675us)
+         - First Batch Sent: 4s321ms (162.439us)
+         - ExecInternal Finished: 4s321ms (581.751us)
+      Fragment Instance Lifecycle Event Timeline[4]: 4s427ms
+         - Prepare Finished: 2.566ms (2.566ms)
+         - Open Finished: 4s426ms (4s424ms)
+         - First Batch Produced: 4s426ms (41.370us)
+         - First Batch Sent: 4s427ms (207.460us)
+         - ExecInternal Finished: 4s427ms (607.753us)
+      Fragment Instance Lifecycle Event Timeline[5]: 4s431ms
+         - Prepare Finished: 2.677ms (2.677ms)
+         - Open Finished: 4s431ms (4s428ms)
+         - First Batch Produced: 4s431ms (19.415us)
+         - First Batch Sent: 4s431ms (140.035us)
+         - ExecInternal Finished: 4s431ms (564.231us)
+      Fragment Instance Lifecycle Event Timeline[6]: 4s424ms
+         - Prepare Finished: 3.906ms (3.906ms)
+         - Open Finished: 4s423ms (4s419ms)
+         - First Batch Produced: 4s423ms (24.758us)
+         - First Batch Sent: 4s423ms (154.196us)
+         - ExecInternal Finished: 4s424ms (575.241us)
+      Fragment Instance Lifecycle Event Timeline[7]: 4s424ms
+         - Prepare Finished: 25.170ms (25.170ms)
+         - Open Finished: 4s423ms (4s398ms)
+         - First Batch Produced: 4s423ms (24.670us)
+         - First Batch Sent: 4s423ms (150.068us)
+         - ExecInternal Finished: 4s424ms (614.776us)
+      Fragment Instance Lifecycle Event Timeline[8]: 4s368ms
+         - Prepare Finished: 969.067us (969.067us)
+         - Open Finished: 4s367ms (4s366ms)
+         - First Batch Produced: 4s367ms (20.446us)
+         - First Batch Sent: 4s367ms (111.063us)
+         - ExecInternal Finished: 4s368ms (591.764us)
+      Fragment Instance Lifecycle Event Timeline[9]: 4s361ms
+         - Prepare Finished: 1.160ms (1.160ms)
+         - Open Finished: 4s360ms (4s359ms)
+         - First Batch Produced: 4s360ms (27.553us)
+         - First Batch Sent: 4s360ms (147.832us)
+         - ExecInternal Finished: 4s361ms (680.699us)
+      Fragment Instance Lifecycle Event Timeline[10]: 4s357ms
+         - Prepare Finished: 5.190ms (5.190ms)
+         - Open Finished: 4s356ms (4s351ms)
+         - First Batch Produced: 4s356ms (34.650us)
+         - First Batch Sent: 4s356ms (165.947us)
+         - ExecInternal Finished: 4s357ms (827.343us)
+      Fragment Instance Lifecycle Event Timeline[11]: 4s363ms
+         - Prepare Finished: 5.305ms (5.305ms)
+         - Open Finished: 4s361ms (4s356ms)
+         - First Batch Produced: 4s361ms (23.021us)
+         - First Batch Sent: 4s361ms (120.230us)
+         - ExecInternal Finished: 4s363ms (1.129ms)
+       - AverageThreadTokens: mean=1.00 min=1.00 p50=1.00 p75=1.00 p90=1.00 p95=1.00 max=1.00
+       - BytesAssigned: mean=16.41 MB (17209364) min=15.76 MB (16526332) p50=16.01 MB (16787175) p75=16.06 MB (16835710) p90=16.09 MB (16871797) p95=16.21 MB (16999375) max=21.12 MB (22147452)
+         [15.87 MB, 16.03 MB, 16.01 MB, 16.09 MB, 15.98 MB, 15.91 MB, 16.21 MB, 21.12 MB,
+          16.04 MB, 15.86 MB, 16.06 MB, 15.76 MB]
+       - CompletionTime: mean=4s417ms min=4s366ms p50=4s408ms p75=4s476ms p90=4s476ms p95=4s476ms max=4s476ms
+         [4s366ms, 4s366ms, 4s366ms, 4s366ms, 4s476ms, 4s476ms, 4s476ms, 4s476ms,
+          4s408ms, 4s408ms, 4s408ms, 4s408ms]
+       - ExchangeScanRatio: mean=0.00 min=0.00 p50=0.00 p75=0.00 p90=0.00 p95=0.00 max=0.00
+         [0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,
+          0.00, 0.00, 0.00, 0.00]
+       - ExecutionRate: mean=3.71 MB/sec min=3.55 MB/sec p50=3.63 MB/sec p75=3.67 MB/sec p90=3.67 MB/sec p95=3.68 MB/sec max=4.72 MB/sec
+         [3.63 MB/sec, 3.67 MB/sec, 3.67 MB/sec, 3.68 MB/sec, 3.57 MB/sec, 3.55 MB/sec, 3.62 MB/sec, 4.72 MB/sec,
+          3.64 MB/sec, 3.60 MB/sec, 3.64 MB/sec, 3.57 MB/sec]
+       - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+       - PeakMemoryUsage: mean=8.77 MB (9196772) min=8.44 MB (8849914) p50=8.45 MB (8859006) p75=8.45 MB (8861895) p90=8.47 MB (8882006) p95=8.48 MB (8889122) max=12.28 MB (12875074)
+         [8.44 MB, 8.45 MB, 8.44 MB, 8.48 MB, 12.28 MB, 8.45 MB, 8.45 MB, 8.45 MB,
+          8.45 MB, 8.45 MB, 8.47 MB, 8.45 MB]
+       - PeakReservation: mean=8.03 MB (8415914) min=8.00 MB (8388608) p50=8.00 MB (8388608) p75=8.00 MB (8388608) p90=8.00 MB (8388608) p95=8.00 MB (8388608) max=8.31 MB (8716288)
+         [8.00 MB, 8.00 MB, 8.00 MB, 8.00 MB, 8.31 MB, 8.00 MB, 8.00 MB, 8.00 MB,
+          8.00 MB, 8.00 MB, 8.00 MB, 8.00 MB]
+       - PeakUsedReservation: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+       - PerHostPeakMemUsage: mean=34.91 MB (36607039) min=33.61 MB (35243040) p50=33.62 MB (35257722) p75=37.50 MB (39320356) p90=37.50 MB (39320356) p95=37.50 MB (39320356) max=37.50 MB (39320356)
+         [33.62 MB, 33.62 MB, 33.62 MB, 33.62 MB, 37.50 MB, 37.50 MB, 37.50 MB, 37.50 MB,
+          33.61 MB, 33.61 MB, 33.61 MB, 33.61 MB]
+       - RowsProduced: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+       - TotalNetworkReceiveTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+       - TotalNetworkSendTime: mean=503.701us min=1.186us p50=345.804us p75=436.201us p90=547.304us p95=877.778us max=1.773ms
+         [345.804us, 1.186us, 1.773ms, 327.516us, 335.092us, 404.615us, 342.844us, 375.430us,
+          436.201us, 277.204us, 547.304us, 877.778us]
+       - TotalStorageWaitTime: mean=397.650ms min=310.306ms p50=381.693ms p75=437.853ms p90=443.675ms p95=479.458ms max=528.168ms
+         [310.306ms, 399.145ms, 381.693ms, 326.915ms, 335.759ms, 365.625ms, 383.600ms, 379.604ms,
+          528.168ms, 479.458ms, 443.675ms, 437.853ms]
+       - TotalThreadsInvoluntaryContextSwitches: mean=8.50K (8504) min=7.69K (7686) p50=8.71K (8708) p75=8.81K (8808) p90=8.82K (8824) p95=9.04K (9040) max=9.09K (9092)
+         [9.04K, 8.54K, 8.71K, 8.81K, 7.69K, 8.11K, 8.77K, 9.09K,
+          7.88K, 8.74K, 7.84K, 8.82K]
+       - TotalThreadsTotalWallClockTime: mean=4s365ms min=4s311ms p50=4s357ms p75=4s399ms p90=4s420ms p95=4s425ms max=4s429ms
+         [4s328ms, 4s318ms, 4s319ms, 4s311ms, 4s425ms, 4s429ms, 4s420ms, 4s399ms,
+          4s367ms, 4s360ms, 4s352ms, 4s357ms]
+         - TotalThreadsSysTime: mean=67.663ms min=30.810ms p50=74.710ms p75=85.072ms p90=87.061ms p95=92.454ms max=94.248ms
+           [85.072ms, 76.315ms, 52.674ms, 30.810ms, 92.454ms, 94.248ms, 65.498ms, 74.710ms,
+            36.310ms, 87.061ms, 77.778ms, 39.031ms]
+         - TotalThreadsUserTime: mean=1s422ms min=1s263ms p50=1s340ms p75=1s366ms p90=1s592ms p95=1s682ms max=1s924ms
+           [1s592ms, 1s349ms, 1s263ms, 1s366ms, 1s924ms, 1s307ms, 1s325ms, 1s340ms,
+            1s682ms, 1s290ms, 1s284ms, 1s342ms]
+       - TotalThreadsVoluntaryContextSwitches: mean=3.65K (3645) min=3.36K (3364) p50=3.67K (3666) p75=3.72K (3722) p90=3.75K (3754) p95=3.79K (3792) max=3.82K (3822)
+         [3.82K, 3.67K, 3.36K, 3.72K, 3.62K, 3.70K, 3.67K, 3.75K,
+          3.60K, 3.50K, 3.52K, 3.79K]
+       - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      Fragment Instance Lifecycle Timings [12 instances]:
+         - ExecTime: mean=950.015us min=705.115us p50=773.160us p75=861.747us p90=1.008ms p95=1.243ms max=2.186ms
+           [753.376us, 861.747us, 2.186ms, 732.744us, 851.374us, 705.115us, 741.646us, 773.160us,
+            706.513us, 836.403us, 1.008ms, 1.243ms]
+           - ExecTreeExecTime: mean=23.725us min=17.572us p50=23.316us p75=25.919us p90=28.850us p95=28.920us max=29.492us
+             [28.920us, 28.850us, 23.421us, 23.358us, 25.919us, 17.572us, 22.131us, 22.161us,
+              18.843us, 23.316us, 29.492us, 20.718us]
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - OpenTime: mean=4s364ms min=4s310ms p50=4s356ms p75=4s398ms p90=4s419ms p95=4s424ms max=4s428ms
+           [4s328ms, 4s318ms, 4s317ms, 4s310ms, 4s424ms, 4s428ms, 4s419ms, 4s398ms,
+            4s366ms, 4s359ms, 4s351ms, 4s356ms]
+           - ExecTreeOpenTime: mean=4s026ms min=3s982ms p50=4s010ms p75=4s075ms p90=4s075ms p95=4s078ms max=4s082ms
+             [4s019ms, 4s009ms, 4s016ms, 4s010ms, 4s078ms, 4s082ms, 4s075ms, 4s075ms,
+              3s996ms, 3s988ms, 3s982ms, 3s988ms]
+         - PrepareTime: mean=692.491us min=552.175us p50=646.529us p75=717.264us p90=732.252us p95=824.471us max=1.004ms
+           [717.264us, 603.462us, 717.109us, 639.108us, 732.252us, 584.360us, 1.004ms, 695.332us,
+            552.175us, 646.529us, 824.471us, 593.752us]
+           - ExecTreePrepareTime: mean=475.968us min=366.658us p50=439.817us p75=476.786us p90=508.404us p95=573.328us max=749.055us
+             [476.786us, 428.105us, 508.404us, 403.570us, 473.939us, 407.887us, 749.055us, 439.817us,
+              366.658us, 464.813us, 573.328us, 419.265us]
+         - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      KrpcDataStreamSender (dst_id=2) [12 instances]:(Total: 768.837us, non-child: 265.136us, % non-child: 34.49%)
+        ExecOption[0-11]: Unpartitioned Sender Codegen Disabled: not needed
+         - BytesSent[0] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[1] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[2] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[3] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[4] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[5] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[6] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[7] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[8] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[9] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[10] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - BytesSent[11] (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0
+         - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [0]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [1]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [2]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [3]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [4]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [5]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [6]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [7]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [8]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [9]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [10]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+      [11]   - NetworkThroughput: (Avg: 53.21 MB/sec ; Min: 8.33 MB/sec ; Max: 76.41 MB/sec ; Number of samples: 12)
+         - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [0]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [1]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [2]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [3]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [4]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [5]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [6]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [7]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [8]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [9]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [10]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+      [11]   - RpcNetworkTime: (Avg: 264.769us ; Min: 106.362us ; Max: 1.706ms ; Number of samples: 24)
+         - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [0]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [1]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [2]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [3]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [4]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [5]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [6]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [7]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [8]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [9]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [10]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+      [11]   - RpcRecvrTime: (Avg: 85.190us ; Min: 31.436us ; Max: 145.534us ; Number of samples: 24)
+         - EosSent: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+         - InactiveTotalTime: mean=503.701us min=1.186us p50=345.804us p75=436.201us p90=547.304us p95=877.778us max=1.773ms
+           [345.804us, 1.186us, 1.773ms, 327.516us, 335.092us, 404.615us, 342.844us, 375.430us,
+            436.201us, 277.204us, 547.304us, 877.778us]
+         - PeakMemoryUsage: mean=8.00 B (8) min=8.00 B (8) p50=8.00 B (8) p75=8.00 B (8) p90=8.00 B (8) p95=8.00 B (8) max=8.00 B (8)
+         - RowsSent: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+         - RpcFailure: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - RpcRetry: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - SerializeBatchTime: mean=104.857us min=74.813us p50=100.937us p75=110.544us p90=122.348us p95=122.924us max=135.849us
+           [88.722us, 135.849us, 93.992us, 122.924us, 122.348us, 95.533us, 110.534us, 110.544us,
+            74.813us, 100.937us, 109.901us, 92.191us]
+         - TotalBytesSent: mean=14.54 KB (14891) min=14.46 KB (14808) p50=14.52 KB (14871) p75=14.57 KB (14924) p90=14.60 KB (14953) p95=14.64 KB (14987) max=14.65 KB (14997)
+           [14.49 KB, 14.47 KB, 14.55 KB, 14.65 KB, 14.64 KB, 14.57 KB, 14.52 KB, 14.46 KB,
+            14.52 KB, 14.60 KB, 14.55 KB, 14.49 KB]
+         - TotalTime: mean=768.837us min=491.747us p50=605.210us p75=695.480us p90=802.861us p95=1.076ms max=2.006ms
+           [565.358us, 491.747us, 2.006ms, 579.499us, 629.505us, 605.210us, 574.349us, 591.344us,
+            607.198us, 695.480us, 802.861us, 1.076ms]
+         - UncompressedRowBatchSize: mean=22.18 KB (22712) min=22.18 KB (22712) p50=22.18 KB (22712) p75=22.18 KB (22712) p90=22.18 KB (22712) p95=22.18 KB (22712) max=22.18 KB (22712)
+      AGGREGATION_NODE (id=1) [12 instances]:(Total: 4s027ms, non-child: 167.993ms, % non-child: 4.17%)
+        Node Lifecycle Event Timeline[0]: 4s329ms
+           - Open Started: 310.016ms (310.016ms)
+           - Open Finished: 4s329ms (4s019ms)
+           - First Batch Requested: 4s329ms (28.571us)
+           - First Batch Returned: 4s329ms (25.986us)
+           - Last Batch Returned: 4s329ms (295.000ns)
+           - Closed: 4s329ms (326.862us)
+        Node Lifecycle Event Timeline[1]: 4s319ms
+           - Open Started: 310.017ms (310.017ms)
+           - Open Finished: 4s319ms (4s009ms)
+           - First Batch Requested: 4s319ms (43.335us)
+           - First Batch Returned: 4s319ms (26.328us)
+           - Last Batch Returned: 4s319ms (576.000ns)
+           - Closed: 4s319ms (558.228us)
+        Node Lifecycle Event Timeline[2]: 4s326ms
+           - Open Started: 310.028ms (310.028ms)
+           - Open Finished: 4s326ms (4s016ms)
+           - First Batch Requested: 4s326ms (34.690us)
+           - First Batch Returned: 4s326ms (21.651us)
+           - Last Batch Returned: 4s326ms (352.000ns)
+           - Closed: 4s326ms (340.013us)
+        Node Lifecycle Event Timeline[3]: 4s321ms
+           - Open Started: 310.032ms (310.032ms)
+           - Open Finished: 4s320ms (4s010ms)
+           - First Batch Requested: 4s320ms (31.483us)
+           - First Batch Returned: 4s320ms (21.327us)
+           - Last Batch Returned: 4s320ms (438.000ns)
+           - Closed: 4s321ms (342.613us)
+        Node Lifecycle Event Timeline[4]: 4s427ms
+           - Open Started: 348.276ms (348.276ms)
+           - Open Finished: 4s426ms (4s078ms)
+           - First Batch Requested: 4s426ms (64.897us)
+           - First Batch Returned: 4s426ms (23.842us)
+           - Last Batch Returned: 4s426ms (364.000ns)
+           - Closed: 4s427ms (415.811us)
+        Node Lifecycle Event Timeline[5]: 4s431ms
+           - Open Started: 348.276ms (348.276ms)
+           - Open Finished: 4s431ms (4s082ms)
+           - First Batch Requested: 4s431ms (26.319us)
+           - First Batch Returned: 4s431ms (16.148us)
+           - Last Batch Returned: 4s431ms (250.000ns)
+           - Closed: 4s431ms (258.362us)
+        Node Lifecycle Event Timeline[6]: 4s424ms
+           - Open Started: 348.283ms (348.283ms)
+           - Open Finished: 4s423ms (4s075ms)
+           - First Batch Requested: 4s423ms (31.223us)
+           - First Batch Returned: 4s423ms (20.186us)
+           - Last Batch Returned: 4s423ms (345.000ns)
+           - Closed: 4s424ms (349.576us)
+        Node Lifecycle Event Timeline[7]: 4s424ms
+           - Open Started: 348.378ms (348.378ms)
+           - Open Finished: 4s423ms (4s075ms)
+           - First Batch Requested: 4s423ms (22.104us)
+           - First Batch Returned: 4s423ms (20.276us)
+           - Last Batch Returned: 4s423ms (336.000ns)
+           - Closed: 4s424ms (353.433us)
+        Node Lifecycle Event Timeline[8]: 4s368ms
+           - Open Started: 371.062ms (371.062ms)
+           - Open Finished: 4s367ms (3s996ms)
+           - First Batch Requested: 4s367ms (24.187us)
+           - First Batch Returned: 4s367ms (17.535us)
+           - Last Batch Returned: 4s367ms (281.000ns)
+           - Closed: 4s368ms (222.881us)
+        Node Lifecycle Event Timeline[9]: 4s360ms
+           - Open Started: 372.319ms (372.319ms)
+           - Open Finished: 4s360ms (3s988ms)
+           - First Batch Requested: 4s360ms (43.642us)
+           - First Batch Returned: 4s360ms (21.507us)
+           - Last Batch Returned: 4s360ms (338.000ns)
+           - Closed: 4s360ms (301.447us)
+        Node Lifecycle Event Timeline[10]: 4s356ms
+           - Open Started: 373.400ms (373.400ms)
+           - Open Finished: 4s356ms (3s982ms)
+           - First Batch Requested: 4s356ms (44.683us)
+           - First Batch Returned: 4s356ms (26.979us)
+           - Last Batch Returned: 4s356ms (584.000ns)
+           - Closed: 4s356ms (371.094us)
+        Node Lifecycle Event Timeline[11]: 4s362ms
+           - Open Started: 373.405ms (373.405ms)
+           - Open Finished: 4s361ms (3s988ms)
+           - First Batch Requested: 4s361ms (28.432us)
+           - First Batch Returned: 4s361ms (18.969us)
+           - Last Batch Returned: 4s361ms (335.000ns)
+           - Closed: 4s362ms (306.643us)
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - PeakMemoryUsage: mean=133.17 KB (136368) min=133.17 KB (136368) p50=133.17 KB (136368) p75=133.17 KB (136368) p90=133.17 KB (136368) p95=133.17 KB (136368) max=133.17 KB (136368)
+         - RowsReturned: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+         - RowsReturnedRate: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - TotalTime: mean=4s027ms min=3s983ms p50=4s011ms p75=4s075ms p90=4s076ms p95=4s078ms max=4s083ms
+           [4s019ms, 4s009ms, 4s016ms, 4s011ms, 4s078ms, 4s083ms, 4s076ms, 4s075ms,
+            3s997ms, 3s988ms, 3s983ms, 3s988ms]
+        NonGroupingAggregator 0 [12 instances]:
+          ExecOption[0-11]: Codegen Enabled
+           - BuildTime: mean=163.292ms min=133.963ms p50=156.697ms p75=175.221ms p90=181.802ms p95=185.120ms max=219.918ms
+             [147.494ms, 185.120ms, 155.792ms, 181.802ms, 219.918ms, 145.780ms, 140.153ms, 156.697ms,
+              175.221ms, 133.963ms, 158.420ms, 159.138ms]
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - PeakMemoryUsage: mean=26.17 KB (26800) min=26.17 KB (26800) p50=26.17 KB (26800) p75=26.17 KB (26800) p90=26.17 KB (26800) p95=26.17 KB (26800) max=26.17 KB (26800)
+           - RowsReturned: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+      HDFS_SCAN_NODE (id=0) [12 instances]:(Total: 3s859ms, non-child: 3s859ms, % non-child: 100.00%)
+        ExecOption[2,4]: PARQUET Codegen Enabled, Codegen enabled: 146 out of 146
+        ExecOption[5,10]: PARQUET Codegen Enabled, Codegen enabled: 150 out of 150
+        ExecOption[9]: PARQUET Codegen Enabled, Codegen enabled: 151 out of 151
+        ExecOption[3,8]: PARQUET Codegen Enabled, Codegen enabled: 153 out of 153
+        ExecOption[1,6,11]: PARQUET Codegen Enabled, Codegen enabled: 154 out of 154
+        ExecOption[0]: PARQUET Codegen Enabled, Codegen enabled: 155 out of 155
+        ExecOption[7]: PARQUET Codegen Enabled, Codegen enabled: 158 out of 158
+        File Formats[2,4]: PARQUET/SNAPPY:146
+        File Formats[5,10]: PARQUET/SNAPPY:150
+        File Formats[9]: PARQUET/SNAPPY:151
+        File Formats[3,8]: PARQUET/SNAPPY:153
+        File Formats[1,6,11]: PARQUET/SNAPPY:154
+        File Formats[0]: PARQUET/SNAPPY:155
+        File Formats[7]: PARQUET/SNAPPY:158
+        Hdfs Read Thread Concurrency Bucket[1-2,11]: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[9]: 0:75% 1:0% 2:0% 3:12.5% 4:0% 5:0% 6:0% 7:12.5% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[5]: 0:75% 1:12.5% 2:12.5% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[0]: 0:75% 1:25% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[6]: 0:87.5% 1:0% 2:0% 3:0% 4:12.5% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[4]: 0:87.5% 1:0% 2:12.5% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Hdfs Read Thread Concurrency Bucket[3,7-8,10]: 0:87.5% 1:12.5% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% 25:0% 26:0%
+        Table Name[0-11]: tpcds_parquet.store_sales
+         - BytesReadSeries[0] (500.000ms): 0, 2.64 MB, 5.58 MB, 9.44 MB, 12.27 MB, 15.03 MB, 17.80 MB, 21.56 MB, 25.69 MB
+         - BytesReadSeries[1] (500.000ms): 0, 2.87 MB, 5.71 MB, 9.04 MB, 11.90 MB, 14.92 MB, 18.60 MB, 22.84 MB, 27.01 MB
+         - BytesReadSeries[2] (500.000ms): 0, 2.63 MB, 5.13 MB, 8.82 MB, 11.39 MB, 14.14 MB, 16.76 MB, 20.47 MB, 24.65 MB
+         - BytesReadSeries[3] (500.000ms): 0, 2.68 MB, 5.91 MB, 9.45 MB, 12.59 MB, 15.77 MB, 18.58 MB, 23.05 MB, 26.19 MB
+         - BytesReadSeries[4] (500.000ms): 0, 2.34 MB, 4.84 MB, 8.19 MB, 13.23 MB, 16.72 MB, 19.82 MB, 23.52 MB, 27.60 MB
+         - BytesReadSeries[5] (500.000ms): 0, 1.92 MB, 4.63 MB, 8.03 MB, 10.86 MB, 13.64 MB, 16.65 MB, 20.26 MB, 24.63 MB
+         - BytesReadSeries[6] (500.000ms): 0, 1.98 MB, 4.97 MB, 8.10 MB, 11.24 MB, 14.20 MB, 17.45 MB, 21.39 MB, 24.66 MB
+         - BytesReadSeries[7] (500.000ms): 0, 2.24 MB, 6.32 MB, 9.18 MB, 12.13 MB, 14.98 MB, 17.83 MB, 21.81 MB, 25.41 MB
+         - BytesReadSeries[8] (500.000ms): 0, 1.36 MB, 4.51 MB, 8.03 MB, 11.11 MB, 14.56 MB, 17.62 MB, 21.56 MB, 25.21 MB
+         - BytesReadSeries[9] (500.000ms): 0, 1.40 MB, 4.99 MB, 8.15 MB, 11.60 MB, 14.49 MB, 17.69 MB, 21.68 MB, 25.47 MB
+         - BytesReadSeries[10] (500.000ms): 0, 1.58 MB, 5.00 MB, 8.79 MB, 11.77 MB, 14.59 MB, 18.06 MB, 22.21 MB, 25.45 MB
+         - BytesReadSeries[11] (500.000ms): 0, 1.65 MB, 5.33 MB, 8.33 MB, 11.27 MB, 13.63 MB, 17.14 MB, 21.23 MB, 25.38 MB
+        Node Lifecycle Event Timeline[0]: 4s329ms
+           - Open Started: 310.021ms (310.021ms)
+           - Open Finished: 310.751ms (729.882us)
+           - First Batch Requested: 310.978ms (226.858us)
+           - First Batch Returned: 335.053ms (24.075ms)
+           - Last Batch Returned: 4s329ms (3s994ms)
+           - Closed: 4s329ms (230.641us)
+        Node Lifecycle Event Timeline[1]: 4s319ms
+           - Open Started: 310.021ms (310.021ms)
+           - Open Finished: 310.944ms (923.058us)
+           - First Batch Requested: 311.156ms (212.721us)
+           - First Batch Returned: 327.973ms (16.816ms)
+           - Last Batch Returned: 4s319ms (3s991ms)
+           - Closed: 4s319ms (124.618us)
+        Node Lifecycle Event Timeline[2]: 4s326ms
+           - Open Started: 310.030ms (310.030ms)
+           - Open Finished: 310.817ms (787.245us)
+           - First Batch Requested: 310.975ms (158.365us)
+           - First Batch Returned: 325.707ms (14.731ms)
+           - Last Batch Returned: 4s326ms (4s000ms)
+           - Closed: 4s326ms (135.204us)
+        Node Lifecycle Event Timeline[3]: 4s320ms
+           - Open Started: 310.033ms (310.033ms)
+           - Open Finished: 310.924ms (890.811us)
+           - First Batch Requested: 311.127ms (203.196us)
+           - First Batch Returned: 327.978ms (16.850ms)
+           - Last Batch Returned: 4s320ms (3s992ms)
+           - Closed: 4s320ms (90.116us)
+        Node Lifecycle Event Timeline[4]: 4s426ms
+           - Open Started: 348.280ms (348.280ms)
+           - Open Finished: 349.163ms (882.740us)
+           - First Batch Requested: 349.413ms (249.352us)
+           - First Batch Returned: 378.564ms (29.151ms)
+           - Last Batch Returned: 4s426ms (4s048ms)
+           - Closed: 4s426ms (115.346us)
+        Node Lifecycle Event Timeline[5]: 4s431ms
+           - Open Started: 348.280ms (348.280ms)
+           - Open Finished: 350.279ms (1.998ms)
+           - First Batch Requested: 350.515ms (235.744us)
+           - First Batch Returned: 378.901ms (28.386ms)
+           - Last Batch Returned: 4s431ms (4s052ms)
+           - Closed: 4s431ms (90.681us)
+        Node Lifecycle Event Timeline[6]: 4s423ms
+           - Open Started: 348.285ms (348.285ms)
+           - Open Finished: 349.319ms (1.033ms)
+           - First Batch Requested: 349.547ms (228.277us)
+           - First Batch Returned: 378.476ms (28.928ms)
+           - Last Batch Returned: 4s423ms (4s045ms)
+           - Closed: 4s423ms (86.989us)
+        Node Lifecycle Event Timeline[7]: 4s423ms
+           - Open Started: 348.380ms (348.380ms)
+           - Open Finished: 349.232ms (852.068us)
+           - First Batch Requested: 349.429ms (196.884us)
+           - First Batch Returned: 381.953ms (32.524ms)
+           - Last Batch Returned: 4s423ms (4s041ms)
+           - Closed: 4s423ms (98.043us)
+        Node Lifecycle Event Timeline[8]: 4s367ms
+           - Open Started: 371.066ms (371.066ms)
+           - Open Finished: 371.955ms (889.224us)
+           - First Batch Requested: 372.215ms (259.767us)
+           - First Batch Returned: 401.941ms (29.725ms)
+           - Last Batch Returned: 4s367ms (3s965ms)
+           - Closed: 4s367ms (90.329us)
+        Node Lifecycle Event Timeline[9]: 4s360ms
+           - Open Started: 372.321ms (372.321ms)
+           - Open Finished: 373.136ms (814.689us)
+           - First Batch Requested: 373.343ms (207.192us)
+           - First Batch Returned: 419.884ms (46.540ms)
+           - Last Batch Returned: 4s360ms (3s940ms)
+           - Closed: 4s360ms (103.462us)
+        Node Lifecycle Event Timeline[10]: 4s356ms
+           - Open Started: 373.402ms (373.402ms)
+           - Open Finished: 374.211ms (809.152us)
+           - First Batch Requested: 374.419ms (208.373us)
+           - First Batch Returned: 405.330ms (30.910ms)
+           - Last Batch Returned: 4s355ms (3s950ms)
+           - Closed: 4s356ms (365.034us)
+        Node Lifecycle Event Timeline[11]: 4s361ms
+           - Open Started: 373.407ms (373.407ms)
+           - Open Finished: 374.252ms (845.372us)
+           - First Batch Requested: 374.453ms (200.225us)
+           - First Batch Returned: 413.791ms (39.338ms)
+           - Last Batch Returned: 4s361ms (3s947ms)
+           - Closed: 4s361ms (107.905us)
+         - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [0]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [1]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [2]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [3]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [4]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [5]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [6]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [7]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [8]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [9]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [10]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+      [11]   - FooterProcessingTime: (Avg: 1.661ms ; Min: 144.950us ; Max: 35.064ms ; Number of samples: 1824)
+         - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [0]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [1]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [2]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [3]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [4]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [5]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [6]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [7]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [8]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [9]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [10]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [11]   - InitialRangeActualReservation: (Avg: 8.01 MB (8403339) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+         - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [0]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [1]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [2]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [3]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [4]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [5]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [6]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [7]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [8]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [9]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [10]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+      [11]   - InitialRangeIdealReservation: (Avg: 112.28 KB (114975) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 1824)
+         - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [0]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [1]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [2]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [3]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [4]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [5]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [6]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [7]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [8]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [9]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [10]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+      [11]   - PageIndexProcessingTime: 0.000ns (Number of samples: 0)
+         - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [0]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [1]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [2]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [3]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [4]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [5]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [6]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [7]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [8]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [9]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [10]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+      [11]   - ParquetCompressedBytesReadPerColumn: (Avg: 249.59 KB (255579) ; Min: 75.88 KB (77698) ; Max: 519.11 KB (531566) ; Number of samples: 264)
+         - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [0]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [1]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [2]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [3]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [4]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [5]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [6]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [7]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [8]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [9]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [10]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+      [11]   - ParquetCompressedPageSize: (Avg: 1.64 KB (1679) ; Min: 162.00 B (162) ; Max: 78.28 KB (80161) ; Number of samples: 40174)
+         - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [0]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [1]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [2]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [3]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [4]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [5]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [6]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [7]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [8]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [9]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [10]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [11]   - ParquetRowGroupActualReservation: (Avg: 8.01 MB (8403518) ; Min: 8.00 MB (8388608) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+         - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [0]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [1]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [2]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [3]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [4]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [5]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [6]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [7]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [8]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [9]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [10]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+      [11]   - ParquetRowGroupIdealReservation: (Avg: 224.81 KB (230202) ; Min: 176.00 KB (180224) ; Max: 8.31 MB (8716288) ; Number of samples: 1824)
+         - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [0]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [1]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [2]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [3]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [4]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [5]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [6]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [7]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [8]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [9]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [10]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+      [11]   - ParquetUncompressedBytesReadPerColumn: (Avg: 266.14 KB (272531) ; Min: 76.53 KB (78365) ; Max: 851.95 KB (872392) ; Number of samples: 264)
+         - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [0]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [1]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [2]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [3]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [4]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [5]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [6]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [7]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [8]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [9]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [10]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+      [11]   - ParquetUncompressedPageSize: (Avg: 1.75 KB (1790) ; Min: 158.00 B (158) ; Max: 78.27 KB (80152) ; Number of samples: 40174)
+         - AverageHdfsReadThreadConcurrency: mean=0.08 min=0.00 p50=0.12 p75=0.25 p90=0.38 p95=0.50 max=1.25
+           [0.25, 0.00, 0.00, 0.12, 0.25, 0.38, 0.50, 0.12,
+            0.12, 1.25, 0.12, 0.00]
+         - BytesRead: mean=27.44 MB (28775477) min=25.82 MB (27069397) p50=27.19 MB (28506579) p75=27.63 MB (28973371) p90=27.94 MB (29299868) p95=28.19 MB (29556941) max=30.47 MB (31949790)
+           [26.94 MB, 28.19 MB, 25.82 MB, 27.29 MB, 30.47 MB, 27.63 MB, 27.25 MB, 27.94 MB,
+            26.55 MB, 27.06 MB, 27.19 MB, 26.99 MB]
+         - BytesReadDataNodeCache: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - BytesReadLocal: mean=27.44 MB (28775477) min=25.82 MB (27069397) p50=27.19 MB (28506579) p75=27.63 MB (28973371) p90=27.94 MB (29299868) p95=28.19 MB (29556941) max=30.47 MB (31949790)
+           [26.94 MB, 28.19 MB, 25.82 MB, 27.29 MB, 30.47 MB, 27.63 MB, 27.25 MB, 27.94 MB,
+            26.55 MB, 27.06 MB, 27.19 MB, 26.99 MB]
+         - BytesReadRemoteUnexpected: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - BytesReadShortCircuit: mean=27.44 MB (28775477) min=25.82 MB (27069397) p50=27.19 MB (28506579) p75=27.63 MB (28973371) p90=27.94 MB (29299868) p95=28.19 MB (29556941) max=30.47 MB (31949790)
+           [26.94 MB, 28.19 MB, 25.82 MB, 27.29 MB, 30.47 MB, 27.63 MB, 27.25 MB, 27.94 MB,
+            26.55 MB, 27.06 MB, 27.19 MB, 26.99 MB]
+         - CachedFileHandlesHitCount: mean=3.25K (3247) min=3.11K (3109) p50=3.24K (3243) p75=3.29K (3290) p90=3.30K (3301) p95=3.33K (3335) max=3.38K (3380)
+           [3.33K, 3.27K, 3.11K, 3.29K, 3.11K, 3.24K, 3.29K, 3.38K,
+            3.24K, 3.21K, 3.19K, 3.30K]
+         - CachedFileHandlesMissCount: mean=248 (248) min=210 (210) p50=249 (249) p75=256 (256) p90=260 (260) p95=273 (273) max=276 (276)
+           [230, 273, 249, 229, 245, 210, 256, 254,
+            276, 260, 255, 241]
+         - CollectionItemsRead: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DataCacheHitBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - DataCacheHitCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DataCacheMissBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - DataCacheMissCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DataCachePartialHitCount: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - DecompressionTime: mean=33.930ms min=26.619ms p50=32.974ms p75=36.712ms p90=36.760ms p95=38.780ms max=45.003ms
+           [29.119ms, 27.794ms, 45.003ms, 32.974ms, 36.226ms, 36.760ms, 31.271ms, 36.712ms,
+            31.389ms, 26.619ms, 38.780ms, 34.519ms]
+         - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+         - MaterializeTupleTime: mean=766.270ms min=680.111ms p50=756.640ms p75=781.256ms p90=784.667ms p95=808.772ms max=1s015ms
+           [707.609ms, 808.772ms, 770.471ms, 784.667ms, 1s015ms, 756.640ms, 779.859ms, 781.256ms,
+            725.353ms, 683.432ms, 701.315ms, 680.111ms]
+         - MaxCompressedTextFileLength: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+         - NumColumns: mean=22 (22) min=22 (22) p50=22 (22) p75=22 (22) p90=22 (22) p95=22 (22) max=22 (22)
+         - NumDictFilteredRowGroups: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumDisksAccessed: mean=1 (1) min=1 (1) p50=1 (1) p75=1 (1) p90=1 (1) p95=1 (1) max=1 (1)
+         - NumPages: mean=3.35K (3347) min=3.21K (3212) p50=3.37K (3366) p75=3.39K (3388) p90=3.39K (3388) p95=3.41K (3410) max=3.48K (3476)
+           [3.41K, 3.39K, 3.21K, 3.37K, 3.26K, 3.30K, 3.39K, 3.48K,
+            3.37K, 3.32K, 3.30K, 3.39K]
+         - NumRowGroups: mean=152 (152) min=146 (146) p50=153 (153) p75=154 (154) p90=154 (154) p95=155 (155) max=158 (158)
+           [155, 154, 146, 153, 146, 150, 154, 158,
+            153, 151, 150, 154]
+         - NumRowGroupsWithPageIndex: mean=152 (152) min=146 (146) p50=153 (153) p75=154 (154) p90=154 (154) p95=155 (155) max=158 (158)
+           [155, 154, 146, 153, 146, 150, 154, 158,
+            153, 151, 150, 154]
+         - NumScannersWithNoReads: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumStatsFilteredPages: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - NumStatsFilteredRowGroups: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - PeakMemoryUsage: mean=8.73 MB (9153580) min=8.40 MB (8806722) p50=8.41 MB (8815814) p75=8.41 MB (8818703) p90=8.43 MB (8838814) p95=8.44 MB (8845930) max=12.24 MB (12831882)
+           [8.40 MB, 8.40 MB, 8.40 MB, 8.44 MB, 12.24 MB, 8.41 MB, 8.41 MB, 8.41 MB,
+            8.41 MB, 8.41 MB, 8.43 MB, 8.41 MB]
+         - PerReadThreadRawHdfsThroughput: mean=60.06 MB/sec min=43.95 MB/sec p50=58.57 MB/sec p75=64.52 MB/sec p90=68.23 MB/sec p95=68.30 MB/sec max=71.10 MB/sec
+           [71.10 MB/sec, 63.26 MB/sec, 56.09 MB/sec, 68.23 MB/sec, 68.30 MB/sec, 64.52 MB/sec, 57.76 MB/sec, 61.95 MB/sec,
+            52.49 MB/sec, 43.95 MB/sec, 58.57 MB/sec, 54.51 MB/sec]
+         - RemoteScanRanges: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+         - RowsRead: mean=240.03K (240033) min=219.12K (219119) p50=231.63K (231635) p75=236.44K (236439) p90=238.92K (238923) p95=240.70K (240699) max=341.39K (341391)
+           [225.37K, 240.70K, 219.12K, 232.73K, 341.39K, 238.92K, 231.85K, 236.44K,
+            222.88K, 230.75K, 231.63K, 228.62K]
+         - RowsReturned: mean=240.03K (240033) min=219.12K (219119) p50=231.63K (231635) p75=236.44K (236439) p90=238.92K (238923) p95=240.70K (240699) max=341.39K (341391)
+           [225.37K, 240.70K, 219.12K, 232.73K, 341.39K, 238.92K, 231.85K, 236.44K,
+            222.88K, 230.75K, 231.63K, 228.62K]
+         - RowsReturnedRate: mean=62.20 K/sec min=56.80 K/sec p50=59.91 K/sec p75=60.72 K/sec p90=60.84 K/sec p95=63.10 K/sec max=88.55 K/sec
+           [58.31 K/sec, 63.10 K/sec, 56.80 K/sec, 60.84 K/sec, 88.55 K/sec, 60.72 K/sec, 59.03 K/sec, 60.38 K/sec,
+            58.36 K/sec, 59.91 K/sec, 60.61 K/sec, 59.75 K/sec]
+         - ScanRangesComplete: mean=152 (152) min=146 (146) p50=153 (153) p75=154 (154) p90=154 (154) p95=155 (155) max=158 (158)
+           [155, 154, 146, 153, 146, 150, 154, 158,
+            153, 151, 150, 154]
+         - ScannerIoWaitTime: mean=397.650ms min=310.306ms p50=381.693ms p75=437.853ms p90=443.675ms p95=479.458ms max=528.168ms
+           [310.306ms, 399.145ms, 381.693ms, 326.915ms, 335.759ms, 365.625ms, 383.600ms, 379.604ms,
+            528.168ms, 479.458ms, 443.675ms, 437.853ms]
+         - TotalRawHdfsOpenFileTime: mean=529.984ms min=392.213ms p50=513.349ms p75=601.827ms p90=630.281ms p95=648.082ms max=663.815ms
+           [513.349ms, 524.571ms, 555.457ms, 424.299ms, 404.380ms, 392.213ms, 492.958ms, 601.827ms,
+            630.281ms, 663.815ms, 648.082ms, 508.575ms]
+         - TotalRawHdfsReadTime: mean=463.558ms min=378.840ms p50=451.071ms p75=471.841ms p90=495.051ms p95=505.882ms max=615.711ms
+           [378.840ms, 445.601ms, 460.278ms, 399.940ms, 446.087ms, 428.262ms, 471.841ms, 451.071ms,
+            505.882ms, 615.711ms, 464.132ms, 495.051ms]
+         - TotalReadThroughput: mean=5.69 MB/sec min=5.47 MB/sec p50=5.64 MB/sec p75=5.71 MB/sec p90=5.82 MB/sec p95=6.00 MB/sec max=6.13 MB/sec
+           [5.71 MB/sec, 6.00 MB/sec, 5.48 MB/sec, 5.82 MB/sec, 6.13 MB/sec, 5.47 MB/sec, 5.48 MB/sec, 5.64 MB/sec,
+            5.60 MB/sec, 5.66 MB/sec, 5.66 MB/sec, 5.64 MB/sec]
+         - TotalTime: mean=3s859ms min=3s814ms p50=3s851ms p75=3s865ms p90=3s916ms p95=3s927ms max=3s934ms
+           [3s865ms, 3s814ms, 3s857ms, 3s824ms, 3s855ms, 3s934ms, 3s927ms, 3s916ms,
+            3s818ms, 3s851ms, 3s821ms, 3s826ms]
+        Buffer pool [12 instances]:
+           - AllocTime: mean=19.285ms min=12.140ms p50=15.500ms p75=25.145ms p90=25.167ms p95=27.190ms max=30.782ms
+             [30.782ms, 21.006ms, 12.140ms, 13.751ms, 13.950ms, 21.352ms, 15.500ms, 27.190ms,
+              13.261ms, 25.145ms, 25.167ms, 12.176ms]
+           - CompressionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - CumulativeAllocationBytes: mean=50.04 MB (52467029) min=46.96 MB (49242112) p50=49.57 MB (51978240) p75=49.88 MB (52305920) p90=51.06 MB (53542912) p95=51.15 MB (53633024) max=54.95 MB (57622528)
+             [49.76 MB, 51.15 MB, 46.96 MB, 49.88 MB, 54.95 MB, 49.57 MB, 49.59 MB, 51.06 MB,
+              49.48 MB, 49.47 MB, 49.20 MB, 49.37 MB]
+           - CumulativeAllocations: mean=3.50K (3496) min=3.36K (3358) p50=3.52K (3519) p75=3.54K (3542) p90=3.54K (3542) p95=3.56K (3565) max=3.63K (3634)
+             [3.56K, 3.54K, 3.36K, 3.52K, 3.36K, 3.45K, 3.54K, 3.63K,
+              3.52K, 3.47K, 3.45K, 3.54K]
+           - EncryptionTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - InactiveTotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - PeakReservation: mean=8.03 MB (8415914) min=8.00 MB (8388608) p50=8.00 MB (8388608) p75=8.00 MB (8388608) p90=8.00 MB (8388608) p95=8.00 MB (8388608) max=8.31 MB (8716288)
+             [8.00 MB, 8.00 MB, 8.00 MB, 8.00 MB, 8.31 MB, 8.00 MB, 8.00 MB, 8.00 MB,
+              8.00 MB, 8.00 MB, 8.00 MB, 8.00 MB]
+           - PeakUnpinnedBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - PeakUsedReservation: mean=1.06 MB (1113429) min=376.00 KB (385024) p50=408.00 KB (417792) p75=424.00 KB (434176) p90=440.00 KB (450560) p95=440.00 KB (450560) max=8.31 MB (8716288)
+             [376.00 KB, 408.00 KB, 392.00 KB, 440.00 KB, 8.31 MB, 424.00 KB, 408.00 KB, 408.00 KB,
+              424.00 KB, 408.00 KB, 440.00 KB, 408.00 KB]
+           - ReadIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - ReadIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - ReadIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - SystemAllocTime: mean=1.586ms min=231.568us p50=392.115us p75=534.080us p90=939.715us p95=2.679ms max=12.072ms
+             [392.115us, 397.945us, 389.558us, 534.080us, 2.679ms, 312.846us, 231.568us, 12.072ms,
+              496.704us, 318.656us, 939.715us, 275.759us]
+           - TotalTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+           - WriteIoBytes: mean=0 min=0 p50=0 p75=0 p90=0 p95=0 max=0
+           - WriteIoOps: mean=0 (0) min=0 (0) p50=0 (0) p75=0 (0) p90=0 (0) p95=0 (0) max=0 (0)
+           - WriteIoWaitTime: mean=0.000ns min=0.000ns p50=0.000ns p75=0.000ns p90=0.000ns p95=0.000ns max=0.000ns
+Query (id=9f4b30ece90cd333:2acc7b4c00000000):
+  DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance.
+   - InactiveTotalTime: 0.000ns
+   - TotalTime: 0.000ns
+  Summary:
+    Session ID: b444e3ae8bbbf3cd:e2ab651ebb01dba6
+    Session Type: HIVESERVER2
+    HiveServer2 Protocol Version: V6
+    Start Time: 2021-02-09 08:52:55.708896000
+    End Time: 2021-02-09 08:53:19.071286000
+    Query Type: DDL
+    Query State: FINISHED
+    Impala Query State: FINISHED
+    Query Status: OK
+    Impala Version: impalad version 4.0.0-SNAPSHOT DEBUG (build 81d5377c27f1940235db332e43f1d0f073cf3d2f)
+    User: tarmstrong
+    Connected User: tarmstrong
+    Delegated User: 
+    Network Address: ::ffff:127.0.0.1:39586
+    Default Db: default
+    Sql Statement: compute stats tpcds_parquet.store_sales
+    Coordinator: tarmstrong-Precision-7540:27000
+    Query Options (set by configuration): TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST
+    Query Options (set by configuration and planner): MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v4.0.0-SNAPSHOT (81d5377) built on Tue 09 Feb 2021 08:39:03 AM PST
+    DDL Type: COMPUTE_STATS
+    Query Compilation: 6s305ms
+       - Metadata load started: 2.839ms (2.839ms)
+       - Metadata load finished. loaded-tables=1/1 load-requests=1 catalog-updates=5 storage-load-time=756ms: 6s169ms (6s166ms)
+       - Analysis finished: 6s267ms (97.828ms)
+       - Authorization finished (noop): 6s267ms (665.110us)
+       - Planning finished: 6s305ms (37.262ms)
+    Query Timeline: 23s362ms
+       - Query submitted: 49.736us (49.736us)
+       - Planning finished: 6s309ms (6s309ms)
+       - Child queries finished: 12s668ms (6s358ms)
+       - Metastore update finished: 23s157ms (10s488ms)
+       - Rows available: 23s157ms (62.458us)
+       - Unregister query: 23s362ms (205.148ms)
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Frontend:
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+  ImpalaServer:
+     - CatalogOpExecTimer: 10s366ms
+     - ClientFetchWaitTimer: 205.117ms
+     - InactiveTotalTime: 0.000ns
+     - NumRowsFetched: 0 (0)
+     - NumRowsFetchedFromCache: 0 (0)
+     - RowMaterializationRate: 0
+     - RowMaterializationTimer: 0.000ns
+     - TotalTime: 0.000ns
+  Child Queries:
+     - InactiveTotalTime: 0.000ns
+     - TotalTime: 0.000ns
+    Table Stats Query (id=874b65988023a32b:71d209e900000000):
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
+    Column Stats Query (id=504e9a5d292585e8:7c56749700000000):
+       - InactiveTotalTime: 0.000ns
+       - TotalTime: 0.000ns
diff --git a/tests/observability/test_profile_tool.py b/tests/observability/test_profile_tool.py
index 21eefcf..42ad87f 100644
--- a/tests/observability/test_profile_tool.py
+++ b/tests/observability/test_profile_tool.py
@@ -43,6 +43,17 @@ class TestProfileTool(BaseTestSuite):
         get_profile_path('impala_profile_log_tpcds_compute_stats'),
         get_profile_path('impala_profile_log_tpcds_compute_stats_extended.expected.txt'))
 
+  def test_text_output_profile_v2(self):
+    # Test text profiles with different verbosity levels.
+    self._compare_profile_tool_output(['--profile_verbosity=default'],
+        get_profile_path('impala_profile_log_tpcds_compute_stats_v2'),
+        get_profile_path(
+            'impala_profile_log_tpcds_compute_stats_v2_default.expected.txt'))
+    self._compare_profile_tool_output(['--profile_verbosity=extended'],
+        get_profile_path('impala_profile_log_tpcds_compute_stats_v2'),
+        get_profile_path(
+            'impala_profile_log_tpcds_compute_stats_v2_extended.expected.txt'))
+
   def test_json_output(self):
     # Test JSON profiles with different verbosity levels.
     self._compare_profile_tool_output(['--profile_format=json'],