Query (id=50467cb8e73eeac4:853461b400000000): DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance. Summary: Session ID: bd42ef426248d2df:ffaf2b545fb6c9a9 Session Type: BEESWAX Start Time: 2020-04-10 15:32:03.214759000 End Time: 2020-04-10 15:33:14.034779000 Query Type: QUERY Query State: FINISHED Impala Query State: FINISHED Query Status: OK Impala Version: impalad version 3.4.0-SNAPSHOT DEBUG (build 293dc2ec92d0cadf1d3803a22e66e762d0ff6cf1) User: tarmstrong Connected User: tarmstrong Delegated User: Network Address: ::ffff:127.0.0.1:47444 Default Db: tpcds_parquet Sql Statement: with ss as (select s_store_sk, sum(ss_ext_sales_price) as sales, sum(ss_net_profit) as profit from store_sales, date_dim, store where ss_sold_date_sk = d_date_sk and d_date between cast('2000-08-02' as timestamp) and (cast('2000-08-02' as timestamp) + interval 30 days) and ss_store_sk = s_store_sk group by s_store_sk) , sr as (select s_store_sk, sum(sr_return_amt) as sreturns, sum(sr_net_loss) as profit_loss from store_returns, date_dim, store where sr_returned_date_sk = d_date_sk and d_date between cast('2000-08-02' as timestamp) and (cast('2000-08-02' as timestamp) + interval 30 days) and sr_store_sk = s_store_sk group by s_store_sk), cs as (select cs_call_center_sk, sum(cs_ext_sales_price) as sales, sum(cs_net_profit) as profit from catalog_sales, date_dim where cs_sold_date_sk = d_date_sk and d_date between cast('2000-08-02' as timestamp) and (cast('2000-08-02' as timestamp) + interval 30 days) group by cs_call_center_sk ), cr as (select sum(cr_return_amount) as sreturns, sum(cr_net_loss) as profit_loss from catalog_returns, date_dim where cr_returned_date_sk = d_date_sk and d_date between cast('2000-08-02' as timestamp) and (cast('2000-08-02' as timestamp) + interval 30 days) ), ws as ( select wp_web_page_sk, sum(ws_ext_sales_price) as sales, sum(ws_net_profit) as profit from web_sales, date_dim, web_page where ws_sold_date_sk = d_date_sk and d_date between cast('2000-08-02' as timestamp) and (cast('2000-08-02' as timestamp) + interval 30 days) and ws_web_page_sk = wp_web_page_sk group by wp_web_page_sk), wr as (select wp_web_page_sk, sum(wr_return_amt) as sreturns, sum(wr_net_loss) as profit_loss from web_returns, date_dim, web_page where wr_returned_date_sk = d_date_sk and d_date between cast('2000-08-02' as timestamp) and (cast('2000-08-02' as timestamp) + interval 30 days) and wr_web_page_sk = wp_web_page_sk group by wp_web_page_sk), results as (select channel , id , sum(sales) as sales , sum(sreturns) as sreturns , sum(profit) as profit from (select 'store channel' as channel , ss.s_store_sk as id , sales , coalesce(sreturns, 0) as sreturns , (profit - coalesce(profit_loss,0)) as profit from ss left join sr on ss.s_store_sk = sr.s_store_sk union all select 'catalog channel' as channel , cs_call_center_sk as id , sales , sreturns , (profit - profit_loss) as profit from cs , cr union all select 'web channel' as channel , ws.wp_web_page_sk as id , sales , coalesce(sreturns, 0) sreturns , (profit - coalesce(profit_loss,0)) as profit from ws left join wr on ws.wp_web_page_sk = wr.wp_web_page_sk ) x group by channel, id ) select * from ( select channel, id, sales, sreturns, profit from results union select channel, NULL AS id, sum(sales) as sales, sum(sreturns) as sreturns, sum(profit) as profit from results group by channel union select NULL AS channel, NULL AS id, sum(sales) as sales, sum(sreturns) as sreturns, sum(profit) as profit from results ) foo order by channel, id limit 100 Coordinator: tarmstrong-Precision-7540:22000 Query Options (set by configuration): RUNTIME_FILTER_WAIT_TIME_MS=60000,MAX_NUM_RUNTIME_FILTERS=50,MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v3.4.0-SNAPSHOT (293dc2e) built on Fri Apr 10 15:06:57 PDT 2020 Query Options (set by configuration and planner): RUNTIME_FILTER_WAIT_TIME_MS=60000,MAX_NUM_RUNTIME_FILTERS=50,MT_DOP=4,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=Impala Shell v3.4.0-SNAPSHOT (293dc2e) built on Fri Apr 10 15:06:57 PDT 2020 Plan: ---------------- Max Per-Host Resource Reservation: Memory=638.89MB Threads=147 Per-Host Resource Estimates: Memory=2.46GB Analyzed query: WITH ss AS (SELECT s_store_sk, sum(ss_ext_sales_price) sales, sum(ss_net_profit) profit FROM tpcds_parquet.store_sales, tpcds_parquet.date_dim, tpcds_parquet.store WHERE ss_sold_date_sk = d_date_sk AND CAST(d_date AS TIMESTAMP) BETWEEN CAST('2000-08-02' AS TIMESTAMP) AND (CAST('2000-08-02' AS TIMESTAMP) + INTERVAL CAST(30 AS INT) days) AND ss_store_sk = s_store_sk GROUP BY s_store_sk),sr AS (SELECT s_store_sk, sum(sr_return_amt) sreturns, sum(sr_net_loss) profit_loss FROM tpcds_parquet.store_returns, tpcds_parquet.date_dim, tpcds_parquet.store WHERE sr_returned_date_sk = d_date_sk AND CAST(d_date AS TIMESTAMP) BETWEEN CAST('2000-08-02' AS TIMESTAMP) AND (CAST('2000-08-02' AS TIMESTAMP) + INTERVAL CAST(30 AS INT) days) AND sr_store_sk = s_store_sk GROUP BY s_store_sk),cs AS (SELECT cs_call_center_sk, sum(cs_ext_sales_price) sales, sum(cs_net_profit) profit FROM tpcds_parquet.catalog_sales, tpcds_parquet.date_dim WHERE cs_sold_date_sk = d_date_sk AND CAST(d_date AS TIMESTAMP) BETWEEN CAST('2000-08-02' AS TIMESTAMP) AND (CAST('2000-08-02' AS TIMESTAMP) + INTERVAL CAST(30 AS INT) days) GROUP BY cs_call_center_sk),cr AS (SELECT sum(cr_return_amount) sreturns, sum(cr_net_loss) profit_loss FROM tpcds_parquet.catalog_returns, tpcds_parquet.date_dim WHERE cr_returned_date_sk = d_date_sk AND CAST(d_date AS TIMESTAMP) BETWEEN CAST('2000-08-02' AS TIMESTAMP) AND (CAST('2000-08-02' AS TIMESTAMP) + INTERVAL CAST(30 AS INT) days)),ws AS (SELECT wp_web_page_sk, sum(ws_ext_sales_price) sales, sum(ws_net_profit) profit FROM tpcds_parquet.web_sales, tpcds_parquet.date_dim, tpcds_parquet.web_page WHERE ws_sold_date_sk = d_date_sk AND CAST(d_date AS TIMESTAMP) BETWEEN CAST('2000-08-02' AS TIMESTAMP) AND (CAST('2000-08-02' AS TIMESTAMP) + INTERVAL CAST(30 AS INT) days) AND ws_web_page_sk = wp_web_page_sk GROUP BY wp_web_page_sk),wr AS (SELECT wp_web_page_sk, sum(wr_return_amt) sreturns, sum(wr_net_loss) profit_loss FROM tpcds_parquet.web_returns, tpcds_parquet.date_dim, tpcds_parquet.web_page WHERE wr_returned_date_sk = d_date_sk AND CAST(d_date AS TIMESTAMP) BETWEEN CAST('2000-08-02' AS TIMESTAMP) AND (CAST('2000-08-02' AS TIMESTAMP) + INTERVAL CAST(30 AS INT) days) AND wr_web_page_sk = wp_web_page_sk GROUP BY wp_web_page_sk),results AS (SELECT channel, id, sum(sales) sales, sum(sreturns) sreturns, sum(profit) profit FROM (SELECT 'store channel' channel, ss.s_store_sk id, sales, coalesce(sreturns, CAST(0 AS DECIMAL(38,2))) sreturns, (profit - coalesce(profit_loss, CAST(0 AS DECIMAL(38,2)))) profit FROM ss LEFT OUTER JOIN sr ON ss.s_store_sk = sr.s_store_sk UNION ALL SELECT 'catalog channel' channel, cs_call_center_sk id, sales, sreturns, (profit - profit_loss) profit FROM cs, cr UNION ALL SELECT 'web channel' channel, ws.wp_web_page_sk id, sales, coalesce(sreturns, CAST(0 AS DECIMAL(38,2))) sreturns, (profit - coalesce(profit_loss, CAST(0 AS DECIMAL(38,2)))) profit FROM ws LEFT OUTER JOIN wr ON ws.wp_web_page_sk = wr.wp_web_page_sk) x GROUP BY channel, id) SELECT * FROM (SELECT channel, id, sales, sreturns, profit FROM results UNION SELECT channel, NULL id, sum(sales) sales, sum(sreturns) sreturns, sum(profit) profit FROM results GROUP BY channel UNION SELECT NULL channel, NULL id, sum(sales) sales, sum(sreturns) sreturns, sum(profit) profit FROM results) foo ORDER BY channel ASC, id ASC LIMIT CAST(100 AS TINYINT) F76:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | Per-Instance Resources: mem-estimate=67.05KB mem-reservation=0B thread-reservation=1 PLAN-ROOT SINK | output exprs: channel, id, sales, sreturns, profit | mem-estimate=0B mem-reservation=0B thread-reservation=0 | 198:MERGING-EXCHANGE [UNPARTITIONED] | order by: channel ASC, id ASC | limit: 100 | mem-estimate=67.05KB mem-reservation=0B thread-reservation=0 | tuple-ids=100 row-size=64B cardinality=82 | in pipelines: 115(GETNEXT) | F75:PLAN FRAGMENT [HASH(channel,id,sales,sreturns,profit)] hosts=3 instances=12 Per-Instance Resources: mem-estimate=10.07MB mem-reservation=1.94MB thread-reservation=1 115:TOP-N [LIMIT=100] | order by: channel ASC, id ASC | mem-estimate=5.12KB mem-reservation=0B thread-reservation=0 | tuple-ids=100 row-size=64B cardinality=82 | in pipelines: 115(GETNEXT), 197(OPEN) | 197:AGGREGATE [FINALIZE] | group by: channel, id, sales, sreturns, profit | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | tuple-ids=98 row-size=64B cardinality=82 | in pipelines: 197(GETNEXT), 140(OPEN), 167(OPEN), 194(OPEN) | 196:EXCHANGE [HASH(channel,id,sales,sreturns,profit)] | mem-estimate=67.05KB mem-reservation=0B thread-reservation=0 | tuple-ids=98 row-size=64B cardinality=82 | in pipelines: 140(GETNEXT), 167(GETNEXT), 194(GETNEXT) | F74:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 Per-Instance Resources: mem-estimate=20.06MB mem-reservation=3.94MB thread-reservation=1 114:AGGREGATE [STREAMING] | group by: channel, id, sales, sreturns, profit | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | tuple-ids=98 row-size=64B cardinality=82 | in pipelines: 140(GETNEXT), 167(GETNEXT), 194(GETNEXT) | 00:UNION | mem-estimate=0B mem-reservation=0B thread-reservation=0 | tuple-ids=98 row-size=64B cardinality=82 | in pipelines: 140(GETNEXT), 167(GETNEXT), 194(GETNEXT) | |--195:EXCHANGE [RANDOM] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=97 row-size=48B cardinality=1 | | in pipelines: 194(GETNEXT) | | | F73:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1 | 194:AGGREGATE [FINALIZE] | | output: sum:merge(sales), sum:merge(sreturns), sum:merge(profit) | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | tuple-ids=97 row-size=48B cardinality=1 | | in pipelines: 194(GETNEXT), 113(OPEN) | | | 193:EXCHANGE [UNPARTITIONED] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=97 row-size=48B cardinality=1 | | in pipelines: 113(GETNEXT) | | | F72:PLAN FRAGMENT [HASH(channel,id)] hosts=3 instances=12 | Per-Instance Resources: mem-estimate=20.00MB mem-reservation=1.94MB thread-reservation=1 | 113:AGGREGATE | | output: sum(sum(sales)), sum(sum(sreturns)), sum(sum(profit)) | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | tuple-ids=97 row-size=48B cardinality=1 | | in pipelines: 113(GETNEXT), 192(OPEN) | | | 192:AGGREGATE [FINALIZE] | | output: sum:merge(sales), sum:merge(sreturns), sum:merge(profit) | | group by: channel, id | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=95 row-size=64B cardinality=78 | | in pipelines: 192(GETNEXT), 171(OPEN), 178(OPEN), 186(OPEN) | | | 191:EXCHANGE [HASH(channel,id)] | | mem-estimate=63.78KB mem-reservation=0B thread-reservation=0 | | tuple-ids=95 row-size=64B cardinality=78 | | in pipelines: 171(GETNEXT), 178(GETNEXT), 186(GETNEXT) | | | F71:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | Per-Instance Resources: mem-estimate=20.02MB mem-reservation=3.94MB thread-reservation=1 | 112:AGGREGATE [STREAMING] | | output: sum(sales), sum(sreturns), sum(profit) | | group by: channel, id | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=95 row-size=64B cardinality=78 | | in pipelines: 171(GETNEXT), 178(GETNEXT), 186(GETNEXT) | | | 76:UNION | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | tuple-ids=93 row-size=64B cardinality=78 | | in pipelines: 171(GETNEXT), 178(GETNEXT), 186(GETNEXT) | | | |--111:HASH JOIN [LEFT OUTER JOIN, PARTITIONED] | | | hash-table-id=31 | | | hash predicates: wp_web_page_sk = wp_web_page_sk | | | fk/pk conjuncts: wp_web_page_sk = wp_web_page_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=86,91N row-size=72B cardinality=60 | | | in pipelines: 186(GETNEXT), 190(OPEN) | | | | | |--F108:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | | | | Per-Instance Resources: mem-estimate=11.94MB mem-reservation=3.88MB thread-reservation=1 | | | JOIN BUILD | | | | join-table-id=31 plan-id=32 cohort-id=09 | | | | build expressions: wp_web_page_sk | | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 190:AGGREGATE [FINALIZE] | | | | output: sum:merge(wr_return_amt), sum:merge(wr_net_loss) | | | | group by: wp_web_page_sk | | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=91 row-size=36B cardinality=60 | | | | in pipelines: 190(GETNEXT), 105(OPEN) | | | | | | | 189:EXCHANGE [HASH(wp_web_page_sk)] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=91 row-size=36B cardinality=60 | | | | in pipelines: 105(GETNEXT) | | | | | | | F67:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | | Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.00MB thread-reservation=1 | | | 110:AGGREGATE [STREAMING] | | | | output: sum(wr_return_amt), sum(wr_net_loss) | | | | group by: wp_web_page_sk | | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=91 row-size=36B cardinality=60 | | | | in pipelines: 105(GETNEXT) | | | | | | | 109:HASH JOIN [INNER JOIN, BROADCAST] | | | | hash-table-id=32 | | | | hash predicates: wr_web_page_sk = wp_web_page_sk | | | | fk/pk conjuncts: wr_web_page_sk = wp_web_page_sk | | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=88,89,90 row-size=46B cardinality=71.76K | | | | in pipelines: 105(GETNEXT), 107(OPEN) | | | | | | | |--F109:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | | JOIN BUILD | | | | | join-table-id=32 plan-id=33 cohort-id=12 | | | | | build expressions: wp_web_page_sk | | | | | runtime filters: RF056[bloom] <- wp_web_page_sk | | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | | | 188:EXCHANGE [BROADCAST] | | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | | tuple-ids=90 row-size=4B cardinality=60 | | | | | in pipelines: 107(GETNEXT) | | | | | | | | | F69:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=1 | | | | 107:SCAN HDFS [tpcds_parquet.web_page, RANDOM] | | | | HDFS partitions=1/1 files=1 size=5.56KB | | | | stored statistics: | | | | table: rows=60 size=5.56KB | | | | columns: all | | | | extrapolated-rows=disabled max-scan-range-rows=60 | | | | mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=0 | | | | tuple-ids=90 row-size=4B cardinality=60 | | | | in pipelines: 107(GETNEXT) | | | | | | | 108:HASH JOIN [INNER JOIN, BROADCAST] | | | | hash-table-id=33 | | | | hash predicates: wr_returned_date_sk = d_date_sk | | | | fk/pk conjuncts: wr_returned_date_sk = d_date_sk | | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=88,89 row-size=42B cardinality=71.76K | | | | in pipelines: 105(GETNEXT), 106(OPEN) | | | | | | | |--F110:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | | JOIN BUILD | | | | | join-table-id=33 plan-id=34 cohort-id=12 | | | | | build expressions: d_date_sk | | | | | runtime filters: RF058[bloom] <- d_date_sk | | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | | | 187:EXCHANGE [BROADCAST] | | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | | tuple-ids=89 row-size=26B cardinality=7.30K | | | | | in pipelines: 106(GETNEXT) | | | | | | | | | F68:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | | 106:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | | HDFS partitions=1/1 files=1 size=2.15MB | | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | stored statistics: | | | | table: rows=73.05K size=2.15MB | | | | columns: all | | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | | tuple-ids=89 row-size=26B cardinality=7.30K | | | | in pipelines: 106(GETNEXT) | | | | | | | 105:SCAN HDFS [tpcds_parquet.web_returns, RANDOM] | | | HDFS partitions=1/1 files=1 size=5.66MB | | | runtime filters: RF056[bloom] -> wr_web_page_sk, RF058[bloom] -> wr_returned_date_sk | | | stored statistics: | | | table: rows=71.76K size=5.66MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=71.76K | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=88 row-size=16B cardinality=71.76K | | | in pipelines: 105(GETNEXT) | | | | | 186:AGGREGATE [FINALIZE] | | | output: sum:merge(ws_ext_sales_price), sum:merge(ws_net_profit) | | | group by: wp_web_page_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=86 row-size=36B cardinality=60 | | | in pipelines: 186(GETNEXT), 99(OPEN) | | | | | 185:EXCHANGE [HASH(wp_web_page_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=86 row-size=36B cardinality=60 | | | in pipelines: 99(GETNEXT) | | | | | F63:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | Per-Instance Resources: mem-estimate=42.00MB mem-reservation=10.00MB thread-reservation=1 | | 104:AGGREGATE [STREAMING] | | | output: sum(ws_ext_sales_price), sum(ws_net_profit) | | | group by: wp_web_page_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=86 row-size=36B cardinality=60 | | | in pipelines: 99(GETNEXT) | | | | | 103:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=37 | | | hash predicates: ws_web_page_sk = wp_web_page_sk | | | fk/pk conjuncts: ws_web_page_sk = wp_web_page_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=83,84,85 row-size=46B cardinality=719.38K | | | in pipelines: 99(GETNEXT), 101(OPEN) | | | | | |--F114:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=37 plan-id=38 cohort-id=09 | | | | build expressions: wp_web_page_sk | | | | runtime filters: RF052[bloom] <- wp_web_page_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 184:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=85 row-size=4B cardinality=60 | | | | in pipelines: 101(GETNEXT) | | | | | | | F65:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=1 | | | 101:SCAN HDFS [tpcds_parquet.web_page, RANDOM] | | | HDFS partitions=1/1 files=1 size=5.56KB | | | stored statistics: | | | table: rows=60 size=5.56KB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=60 | | | mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=0 | | | tuple-ids=85 row-size=4B cardinality=60 | | | in pipelines: 101(GETNEXT) | | | | | 102:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=38 | | | hash predicates: ws_sold_date_sk = d_date_sk | | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=83,84 row-size=42B cardinality=719.38K | | | in pipelines: 99(GETNEXT), 100(OPEN) | | | | | |--F115:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=38 plan-id=39 cohort-id=09 | | | | build expressions: d_date_sk | | | | runtime filters: RF054[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 183:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=84 row-size=26B cardinality=7.30K | | | | in pipelines: 100(GETNEXT) | | | | | | | F64:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 100:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=84 row-size=26B cardinality=7.30K | | | in pipelines: 100(GETNEXT) | | | | | 99:SCAN HDFS [tpcds_parquet.web_sales, RANDOM] | | HDFS partitions=1/1 files=2 size=45.09MB | | runtime filters: RF052[bloom] -> ws_web_page_sk, RF054[bloom] -> ws_sold_date_sk | | stored statistics: | | table: rows=719.38K size=45.09MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=644.77K | | mem-estimate=32.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=83 row-size=16B cardinality=719.38K | | in pipelines: 99(GETNEXT) | | | |--98:NESTED LOOP JOIN [CROSS JOIN, BROADCAST] | | | join table id: 29 | | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | | tuple-ids=77,81 row-size=68B cardinality=6 | | | in pipelines: 178(GETNEXT), 181(OPEN) | | | | | |--F106:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | | Per-Instance Resources: mem-estimate=16.03KB mem-reservation=0B thread-reservation=1 | | | JOIN BUILD | | | | join-table-id=29 plan-id=30 cohort-id=09 | | | | mem-estimate=32B mem-reservation=0B thread-reservation=0 | | | | | | | 182:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=81 row-size=32B cardinality=1 | | | | in pipelines: 181(GETNEXT) | | | | | | | F62:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1 | | | 181:AGGREGATE [FINALIZE] | | | | output: sum:merge(cr_return_amount), sum:merge(cr_net_loss) | | | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | | | tuple-ids=81 row-size=32B cardinality=1 | | | | in pipelines: 181(GETNEXT), 97(OPEN) | | | | | | | 180:EXCHANGE [UNPARTITIONED] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=81 row-size=32B cardinality=1 | | | | in pipelines: 97(GETNEXT) | | | | | | | F60:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB | | | Per-Instance Resources: mem-estimate=34.00MB mem-reservation=2.00MB thread-reservation=1 | | | 97:AGGREGATE | | | | output: sum(cr_return_amount), sum(cr_net_loss) | | | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | | | tuple-ids=81 row-size=32B cardinality=1 | | | | in pipelines: 97(GETNEXT), 94(OPEN) | | | | | | | 96:HASH JOIN [INNER JOIN, BROADCAST] | | | | hash-table-id=30 | | | | hash predicates: cr_returned_date_sk = d_date_sk | | | | fk/pk conjuncts: cr_returned_date_sk = d_date_sk | | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=79,80 row-size=38B cardinality=144.07K | | | | in pipelines: 94(GETNEXT), 95(OPEN) | | | | | | | |--F107:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | | JOIN BUILD | | | | | join-table-id=30 plan-id=31 cohort-id=11 | | | | | build expressions: d_date_sk | | | | | runtime filters: RF050[bloom] <- d_date_sk | | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | | | 179:EXCHANGE [BROADCAST] | | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | | tuple-ids=80 row-size=26B cardinality=7.30K | | | | | in pipelines: 95(GETNEXT) | | | | | | | | | F61:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | | 95:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | | HDFS partitions=1/1 files=1 size=2.15MB | | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | stored statistics: | | | | table: rows=73.05K size=2.15MB | | | | columns: all | | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | | tuple-ids=80 row-size=26B cardinality=7.30K | | | | in pipelines: 95(GETNEXT) | | | | | | | 94:SCAN HDFS [tpcds_parquet.catalog_returns, RANDOM] | | | HDFS partitions=1/1 files=1 size=10.62MB | | | runtime filters: RF050[bloom] -> cr_returned_date_sk | | | stored statistics: | | | table: rows=144.07K size=10.62MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=144.07K | | | mem-estimate=24.00MB mem-reservation=2.00MB thread-reservation=0 | | | tuple-ids=79 row-size=12B cardinality=144.07K | | | in pipelines: 94(GETNEXT) | | | | | 178:AGGREGATE [FINALIZE] | | | output: sum:merge(cs_ext_sales_price), sum:merge(cs_net_profit) | | | group by: cs_call_center_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=77 row-size=36B cardinality=6 | | | in pipelines: 178(GETNEXT), 90(OPEN) | | | | | 177:EXCHANGE [HASH(cs_call_center_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=77 row-size=36B cardinality=6 | | | in pipelines: 90(GETNEXT) | | | | | F57:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB | | Per-Instance Resources: mem-estimate=58.00MB mem-reservation=10.00MB thread-reservation=1 | | 93:AGGREGATE [STREAMING] | | | output: sum(cs_ext_sales_price), sum(cs_net_profit) | | | group by: cs_call_center_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=77 row-size=36B cardinality=6 | | | in pipelines: 90(GETNEXT) | | | | | 92:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=36 | | | hash predicates: cs_sold_date_sk = d_date_sk | | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=75,76 row-size=42B cardinality=1.44M | | | in pipelines: 90(GETNEXT), 91(OPEN) | | | | | |--F113:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=36 plan-id=37 cohort-id=09 | | | | build expressions: d_date_sk | | | | runtime filters: RF048[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 176:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=76 row-size=26B cardinality=7.30K | | | | in pipelines: 91(GETNEXT) | | | | | | | F58:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 91:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=76 row-size=26B cardinality=7.30K | | | in pipelines: 91(GETNEXT) | | | | | 90:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | | HDFS partitions=1/1 files=3 size=96.62MB | | runtime filters: RF048[bloom] -> cs_sold_date_sk | | stored statistics: | | table: rows=1.44M size=96.62MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=650.14K | | mem-estimate=48.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=75 row-size=16B cardinality=1.44M | | in pipelines: 90(GETNEXT) | | | 89:HASH JOIN [LEFT OUTER JOIN, PARTITIONED] | | hash-table-id=26 | | hash predicates: s_store_sk = s_store_sk | | fk/pk conjuncts: s_store_sk = s_store_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=68,73N row-size=72B cardinality=12 | | in pipelines: 171(GETNEXT), 175(OPEN) | | | |--F103:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | | | Per-Instance Resources: mem-estimate=11.94MB mem-reservation=3.88MB thread-reservation=1 | | JOIN BUILD | | | join-table-id=26 plan-id=27 cohort-id=09 | | | build expressions: s_store_sk | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | 175:AGGREGATE [FINALIZE] | | | output: sum:merge(sr_return_amt), sum:merge(sr_net_loss) | | | group by: s_store_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=73 row-size=36B cardinality=12 | | | in pipelines: 175(GETNEXT), 83(OPEN) | | | | | 174:EXCHANGE [HASH(s_store_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=73 row-size=36B cardinality=12 | | | in pipelines: 83(GETNEXT) | | | | | F53:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | Per-Instance Resources: mem-estimate=34.00MB mem-reservation=6.00MB thread-reservation=1 | | 88:AGGREGATE [STREAMING] | | | output: sum(sr_return_amt), sum(sr_net_loss) | | | group by: s_store_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=73 row-size=36B cardinality=12 | | | in pipelines: 83(GETNEXT) | | | | | 87:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=27 | | | hash predicates: sr_store_sk = s_store_sk | | | fk/pk conjuncts: sr_store_sk = s_store_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=70,71,72 row-size=46B cardinality=287.51K | | | in pipelines: 83(GETNEXT), 85(OPEN) | | | | | |--F104:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=27 plan-id=28 cohort-id=10 | | | | build expressions: s_store_sk | | | | runtime filters: RF044[bloom] <- s_store_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 173:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=72 row-size=4B cardinality=12 | | | | in pipelines: 85(GETNEXT) | | | | | | | F55:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=1 | | | 85:SCAN HDFS [tpcds_parquet.store, RANDOM] | | | HDFS partitions=1/1 files=1 size=9.93KB | | | stored statistics: | | | table: rows=12 size=9.93KB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=12 | | | mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=0 | | | tuple-ids=72 row-size=4B cardinality=12 | | | in pipelines: 85(GETNEXT) | | | | | 86:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=28 | | | hash predicates: sr_returned_date_sk = d_date_sk | | | fk/pk conjuncts: sr_returned_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=70,71 row-size=42B cardinality=287.51K | | | in pipelines: 83(GETNEXT), 84(OPEN) | | | | | |--F105:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=28 plan-id=29 cohort-id=10 | | | | build expressions: d_date_sk | | | | runtime filters: RF046[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 172:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=71 row-size=26B cardinality=7.30K | | | | in pipelines: 84(GETNEXT) | | | | | | | F54:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 84:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=71 row-size=26B cardinality=7.30K | | | in pipelines: 84(GETNEXT) | | | | | 83:SCAN HDFS [tpcds_parquet.store_returns, RANDOM] | | HDFS partitions=1/1 files=1 size=15.43MB | | runtime filters: RF044[bloom] -> sr_store_sk, RF046[bloom] -> sr_returned_date_sk | | stored statistics: | | table: rows=287.51K size=15.43MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=287.51K | | mem-estimate=24.00MB mem-reservation=4.00MB thread-reservation=0 | | tuple-ids=70 row-size=16B cardinality=287.51K | | in pipelines: 83(GETNEXT) | | | 171:AGGREGATE [FINALIZE] | | output: sum:merge(ss_ext_sales_price), sum:merge(ss_net_profit) | | group by: s_store_sk | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=68 row-size=36B cardinality=12 | | in pipelines: 171(GETNEXT), 77(OPEN) | | | 170:EXCHANGE [HASH(s_store_sk)] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=68 row-size=36B cardinality=12 | | in pipelines: 77(GETNEXT) | | | F49:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | Per-Instance Resources: mem-estimate=26.00MB mem-reservation=4.00MB thread-reservation=1 | 82:AGGREGATE [STREAMING] | | output: sum(ss_ext_sales_price), sum(ss_net_profit) | | group by: s_store_sk | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=68 row-size=36B cardinality=12 | | in pipelines: 77(GETNEXT) | | | 81:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=34 | | hash predicates: ss_store_sk = s_store_sk | | fk/pk conjuncts: ss_store_sk = s_store_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=65,66,67 row-size=46B cardinality=2.88M | | in pipelines: 77(GETNEXT), 79(OPEN) | | | |--F111:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=34 plan-id=35 cohort-id=09 | | | build expressions: s_store_sk | | | runtime filters: RF040[bloom] <- s_store_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 169:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=67 row-size=4B cardinality=12 | | | in pipelines: 79(GETNEXT) | | | | | F51:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=1 | | 79:SCAN HDFS [tpcds_parquet.store, RANDOM] | | HDFS partitions=1/1 files=1 size=9.93KB | | stored statistics: | | table: rows=12 size=9.93KB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=12 | | mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=0 | | tuple-ids=67 row-size=4B cardinality=12 | | in pipelines: 79(GETNEXT) | | | 80:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=35 | | hash predicates: ss_sold_date_sk = d_date_sk | | fk/pk conjuncts: ss_sold_date_sk = d_date_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=65,66 row-size=42B cardinality=2.88M | | in pipelines: 77(GETNEXT), 78(OPEN) | | | |--F112:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=35 plan-id=36 cohort-id=09 | | | build expressions: d_date_sk | | | runtime filters: RF042[bloom] <- d_date_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 168:EXCHANGE [BROADCAST] | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=66 row-size=26B cardinality=7.30K | | | in pipelines: 78(GETNEXT) | | | | | F50:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | 78:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | tuple-ids=66 row-size=26B cardinality=7.30K | | in pipelines: 78(GETNEXT) | | | 77:SCAN HDFS [tpcds_parquet.store_sales, RANDOM] | HDFS partitions=1824/1824 files=1824 size=196.95MB | runtime filters: RF040[bloom] -> ss_store_sk, RF042[bloom] -> ss_sold_date_sk | 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=2.00MB thread-reservation=0 | tuple-ids=65 row-size=16B cardinality=2.88M | in pipelines: 77(GETNEXT) | |--167:AGGREGATE [FINALIZE] | | output: sum:merge(sales), sum:merge(sreturns), sum:merge(profit) | | group by: channel | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=64 row-size=60B cardinality=3 | | in pipelines: 167(GETNEXT), 165(OPEN) | | | 166:EXCHANGE [HASH(channel)] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=64 row-size=60B cardinality=3 | | in pipelines: 165(GETNEXT) | | | F47:PLAN FRAGMENT [HASH(channel,id)] hosts=3 instances=12 | Per-Instance Resources: mem-estimate=20.06MB mem-reservation=3.94MB thread-reservation=1 | 75:AGGREGATE [STREAMING] | | output: sum(sum(sales)), sum(sum(sreturns)), sum(sum(profit)) | | group by: channel | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=64 row-size=60B cardinality=3 | | in pipelines: 165(GETNEXT) | | | 165:AGGREGATE [FINALIZE] | | output: sum:merge(sales), sum:merge(sreturns), sum:merge(profit) | | group by: channel, id | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=62 row-size=64B cardinality=78 | | in pipelines: 165(GETNEXT), 144(OPEN), 151(OPEN), 159(OPEN) | | | 164:EXCHANGE [HASH(channel,id)] | | mem-estimate=63.78KB mem-reservation=0B thread-reservation=0 | | tuple-ids=62 row-size=64B cardinality=78 | | in pipelines: 144(GETNEXT), 151(GETNEXT), 159(GETNEXT) | | | F46:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | Per-Instance Resources: mem-estimate=20.02MB mem-reservation=3.94MB thread-reservation=1 | 74:AGGREGATE [STREAMING] | | output: sum(sales), sum(sreturns), sum(profit) | | group by: channel, id | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=62 row-size=64B cardinality=78 | | in pipelines: 144(GETNEXT), 151(GETNEXT), 159(GETNEXT) | | | 38:UNION | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | tuple-ids=60 row-size=64B cardinality=78 | | in pipelines: 144(GETNEXT), 151(GETNEXT), 159(GETNEXT) | | | |--73:HASH JOIN [LEFT OUTER JOIN, PARTITIONED] | | | hash-table-id=18 | | | hash predicates: wp_web_page_sk = wp_web_page_sk | | | fk/pk conjuncts: wp_web_page_sk = wp_web_page_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=53,58N row-size=72B cardinality=60 | | | in pipelines: 159(GETNEXT), 163(OPEN) | | | | | |--F95:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | | | | Per-Instance Resources: mem-estimate=11.94MB mem-reservation=3.88MB thread-reservation=1 | | | JOIN BUILD | | | | join-table-id=18 plan-id=19 cohort-id=05 | | | | build expressions: wp_web_page_sk | | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 163:AGGREGATE [FINALIZE] | | | | output: sum:merge(wr_return_amt), sum:merge(wr_net_loss) | | | | group by: wp_web_page_sk | | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=58 row-size=36B cardinality=60 | | | | in pipelines: 163(GETNEXT), 67(OPEN) | | | | | | | 162:EXCHANGE [HASH(wp_web_page_sk)] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=58 row-size=36B cardinality=60 | | | | in pipelines: 67(GETNEXT) | | | | | | | F42:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | | Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.00MB thread-reservation=1 | | | 72:AGGREGATE [STREAMING] | | | | output: sum(wr_return_amt), sum(wr_net_loss) | | | | group by: wp_web_page_sk | | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=58 row-size=36B cardinality=60 | | | | in pipelines: 67(GETNEXT) | | | | | | | 71:HASH JOIN [INNER JOIN, BROADCAST] | | | | hash-table-id=19 | | | | hash predicates: wr_web_page_sk = wp_web_page_sk | | | | fk/pk conjuncts: wr_web_page_sk = wp_web_page_sk | | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=55,56,57 row-size=46B cardinality=71.76K | | | | in pipelines: 67(GETNEXT), 69(OPEN) | | | | | | | |--F96:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | | JOIN BUILD | | | | | join-table-id=19 plan-id=20 cohort-id=08 | | | | | build expressions: wp_web_page_sk | | | | | runtime filters: RF036[bloom] <- wp_web_page_sk | | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | | | 161:EXCHANGE [BROADCAST] | | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | | tuple-ids=57 row-size=4B cardinality=60 | | | | | in pipelines: 69(GETNEXT) | | | | | | | | | F44:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=1 | | | | 69:SCAN HDFS [tpcds_parquet.web_page, RANDOM] | | | | HDFS partitions=1/1 files=1 size=5.56KB | | | | stored statistics: | | | | table: rows=60 size=5.56KB | | | | columns: all | | | | extrapolated-rows=disabled max-scan-range-rows=60 | | | | mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=0 | | | | tuple-ids=57 row-size=4B cardinality=60 | | | | in pipelines: 69(GETNEXT) | | | | | | | 70:HASH JOIN [INNER JOIN, BROADCAST] | | | | hash-table-id=20 | | | | hash predicates: wr_returned_date_sk = d_date_sk | | | | fk/pk conjuncts: wr_returned_date_sk = d_date_sk | | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=55,56 row-size=42B cardinality=71.76K | | | | in pipelines: 67(GETNEXT), 68(OPEN) | | | | | | | |--F97:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | | JOIN BUILD | | | | | join-table-id=20 plan-id=21 cohort-id=08 | | | | | build expressions: d_date_sk | | | | | runtime filters: RF038[bloom] <- d_date_sk | | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | | | 160:EXCHANGE [BROADCAST] | | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | | tuple-ids=56 row-size=26B cardinality=7.30K | | | | | in pipelines: 68(GETNEXT) | | | | | | | | | F43:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | | 68:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | | HDFS partitions=1/1 files=1 size=2.15MB | | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | stored statistics: | | | | table: rows=73.05K size=2.15MB | | | | columns: all | | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | | tuple-ids=56 row-size=26B cardinality=7.30K | | | | in pipelines: 68(GETNEXT) | | | | | | | 67:SCAN HDFS [tpcds_parquet.web_returns, RANDOM] | | | HDFS partitions=1/1 files=1 size=5.66MB | | | runtime filters: RF036[bloom] -> wr_web_page_sk, RF038[bloom] -> wr_returned_date_sk | | | stored statistics: | | | table: rows=71.76K size=5.66MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=71.76K | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=55 row-size=16B cardinality=71.76K | | | in pipelines: 67(GETNEXT) | | | | | 159:AGGREGATE [FINALIZE] | | | output: sum:merge(ws_ext_sales_price), sum:merge(ws_net_profit) | | | group by: wp_web_page_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=53 row-size=36B cardinality=60 | | | in pipelines: 159(GETNEXT), 61(OPEN) | | | | | 158:EXCHANGE [HASH(wp_web_page_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=53 row-size=36B cardinality=60 | | | in pipelines: 61(GETNEXT) | | | | | F38:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | Per-Instance Resources: mem-estimate=42.00MB mem-reservation=10.00MB thread-reservation=1 | | 66:AGGREGATE [STREAMING] | | | output: sum(ws_ext_sales_price), sum(ws_net_profit) | | | group by: wp_web_page_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=53 row-size=36B cardinality=60 | | | in pipelines: 61(GETNEXT) | | | | | 65:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=24 | | | hash predicates: ws_web_page_sk = wp_web_page_sk | | | fk/pk conjuncts: ws_web_page_sk = wp_web_page_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=50,51,52 row-size=46B cardinality=719.38K | | | in pipelines: 61(GETNEXT), 63(OPEN) | | | | | |--F101:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=24 plan-id=25 cohort-id=05 | | | | build expressions: wp_web_page_sk | | | | runtime filters: RF032[bloom] <- wp_web_page_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 157:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=52 row-size=4B cardinality=60 | | | | in pipelines: 63(GETNEXT) | | | | | | | F40:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=1 | | | 63:SCAN HDFS [tpcds_parquet.web_page, RANDOM] | | | HDFS partitions=1/1 files=1 size=5.56KB | | | stored statistics: | | | table: rows=60 size=5.56KB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=60 | | | mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=0 | | | tuple-ids=52 row-size=4B cardinality=60 | | | in pipelines: 63(GETNEXT) | | | | | 64:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=25 | | | hash predicates: ws_sold_date_sk = d_date_sk | | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=50,51 row-size=42B cardinality=719.38K | | | in pipelines: 61(GETNEXT), 62(OPEN) | | | | | |--F102:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=25 plan-id=26 cohort-id=05 | | | | build expressions: d_date_sk | | | | runtime filters: RF034[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 156:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=51 row-size=26B cardinality=7.30K | | | | in pipelines: 62(GETNEXT) | | | | | | | F39:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 62:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=51 row-size=26B cardinality=7.30K | | | in pipelines: 62(GETNEXT) | | | | | 61:SCAN HDFS [tpcds_parquet.web_sales, RANDOM] | | HDFS partitions=1/1 files=2 size=45.09MB | | runtime filters: RF032[bloom] -> ws_web_page_sk, RF034[bloom] -> ws_sold_date_sk | | stored statistics: | | table: rows=719.38K size=45.09MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=644.77K | | mem-estimate=32.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=50 row-size=16B cardinality=719.38K | | in pipelines: 61(GETNEXT) | | | |--60:NESTED LOOP JOIN [CROSS JOIN, BROADCAST] | | | join table id: 16 | | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | | tuple-ids=44,48 row-size=68B cardinality=6 | | | in pipelines: 151(GETNEXT), 154(OPEN) | | | | | |--F93:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | | Per-Instance Resources: mem-estimate=16.03KB mem-reservation=0B thread-reservation=1 | | | JOIN BUILD | | | | join-table-id=16 plan-id=17 cohort-id=05 | | | | mem-estimate=32B mem-reservation=0B thread-reservation=0 | | | | | | | 155:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=48 row-size=32B cardinality=1 | | | | in pipelines: 154(GETNEXT) | | | | | | | F37:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1 | | | 154:AGGREGATE [FINALIZE] | | | | output: sum:merge(cr_return_amount), sum:merge(cr_net_loss) | | | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | | | tuple-ids=48 row-size=32B cardinality=1 | | | | in pipelines: 154(GETNEXT), 59(OPEN) | | | | | | | 153:EXCHANGE [UNPARTITIONED] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=48 row-size=32B cardinality=1 | | | | in pipelines: 59(GETNEXT) | | | | | | | F35:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB | | | Per-Instance Resources: mem-estimate=34.00MB mem-reservation=2.00MB thread-reservation=1 | | | 59:AGGREGATE | | | | output: sum(cr_return_amount), sum(cr_net_loss) | | | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | | | tuple-ids=48 row-size=32B cardinality=1 | | | | in pipelines: 59(GETNEXT), 56(OPEN) | | | | | | | 58:HASH JOIN [INNER JOIN, BROADCAST] | | | | hash-table-id=17 | | | | hash predicates: cr_returned_date_sk = d_date_sk | | | | fk/pk conjuncts: cr_returned_date_sk = d_date_sk | | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | | tuple-ids=46,47 row-size=38B cardinality=144.07K | | | | in pipelines: 56(GETNEXT), 57(OPEN) | | | | | | | |--F94:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | | JOIN BUILD | | | | | join-table-id=17 plan-id=18 cohort-id=07 | | | | | build expressions: d_date_sk | | | | | runtime filters: RF030[bloom] <- d_date_sk | | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | | | 152:EXCHANGE [BROADCAST] | | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | | tuple-ids=47 row-size=26B cardinality=7.30K | | | | | in pipelines: 57(GETNEXT) | | | | | | | | | F36:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | | 57:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | | HDFS partitions=1/1 files=1 size=2.15MB | | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | stored statistics: | | | | table: rows=73.05K size=2.15MB | | | | columns: all | | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | | tuple-ids=47 row-size=26B cardinality=7.30K | | | | in pipelines: 57(GETNEXT) | | | | | | | 56:SCAN HDFS [tpcds_parquet.catalog_returns, RANDOM] | | | HDFS partitions=1/1 files=1 size=10.62MB | | | runtime filters: RF030[bloom] -> cr_returned_date_sk | | | stored statistics: | | | table: rows=144.07K size=10.62MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=144.07K | | | mem-estimate=24.00MB mem-reservation=2.00MB thread-reservation=0 | | | tuple-ids=46 row-size=12B cardinality=144.07K | | | in pipelines: 56(GETNEXT) | | | | | 151:AGGREGATE [FINALIZE] | | | output: sum:merge(cs_ext_sales_price), sum:merge(cs_net_profit) | | | group by: cs_call_center_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=44 row-size=36B cardinality=6 | | | in pipelines: 151(GETNEXT), 52(OPEN) | | | | | 150:EXCHANGE [HASH(cs_call_center_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=44 row-size=36B cardinality=6 | | | in pipelines: 52(GETNEXT) | | | | | F32:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB | | Per-Instance Resources: mem-estimate=58.00MB mem-reservation=10.00MB thread-reservation=1 | | 55:AGGREGATE [STREAMING] | | | output: sum(cs_ext_sales_price), sum(cs_net_profit) | | | group by: cs_call_center_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=44 row-size=36B cardinality=6 | | | in pipelines: 52(GETNEXT) | | | | | 54:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=23 | | | hash predicates: cs_sold_date_sk = d_date_sk | | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=42,43 row-size=42B cardinality=1.44M | | | in pipelines: 52(GETNEXT), 53(OPEN) | | | | | |--F100:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=23 plan-id=24 cohort-id=05 | | | | build expressions: d_date_sk | | | | runtime filters: RF028[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 149:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=43 row-size=26B cardinality=7.30K | | | | in pipelines: 53(GETNEXT) | | | | | | | F33:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 53:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=43 row-size=26B cardinality=7.30K | | | in pipelines: 53(GETNEXT) | | | | | 52:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | | HDFS partitions=1/1 files=3 size=96.62MB | | runtime filters: RF028[bloom] -> cs_sold_date_sk | | stored statistics: | | table: rows=1.44M size=96.62MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=650.14K | | mem-estimate=48.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=42 row-size=16B cardinality=1.44M | | in pipelines: 52(GETNEXT) | | | 51:HASH JOIN [LEFT OUTER JOIN, PARTITIONED] | | hash-table-id=13 | | hash predicates: s_store_sk = s_store_sk | | fk/pk conjuncts: s_store_sk = s_store_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=35,40N row-size=72B cardinality=12 | | in pipelines: 144(GETNEXT), 148(OPEN) | | | |--F90:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | | | Per-Instance Resources: mem-estimate=11.94MB mem-reservation=3.88MB thread-reservation=1 | | JOIN BUILD | | | join-table-id=13 plan-id=14 cohort-id=05 | | | build expressions: s_store_sk | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | 148:AGGREGATE [FINALIZE] | | | output: sum:merge(sr_return_amt), sum:merge(sr_net_loss) | | | group by: s_store_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=40 row-size=36B cardinality=12 | | | in pipelines: 148(GETNEXT), 45(OPEN) | | | | | 147:EXCHANGE [HASH(s_store_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=40 row-size=36B cardinality=12 | | | in pipelines: 45(GETNEXT) | | | | | F28:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | Per-Instance Resources: mem-estimate=34.00MB mem-reservation=6.00MB thread-reservation=1 | | 50:AGGREGATE [STREAMING] | | | output: sum(sr_return_amt), sum(sr_net_loss) | | | group by: s_store_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=40 row-size=36B cardinality=12 | | | in pipelines: 45(GETNEXT) | | | | | 49:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=14 | | | hash predicates: sr_store_sk = s_store_sk | | | fk/pk conjuncts: sr_store_sk = s_store_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=37,38,39 row-size=46B cardinality=287.51K | | | in pipelines: 45(GETNEXT), 47(OPEN) | | | | | |--F91:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=14 plan-id=15 cohort-id=06 | | | | build expressions: s_store_sk | | | | runtime filters: RF024[bloom] <- s_store_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 146:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=39 row-size=4B cardinality=12 | | | | in pipelines: 47(GETNEXT) | | | | | | | F30:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=1 | | | 47:SCAN HDFS [tpcds_parquet.store, RANDOM] | | | HDFS partitions=1/1 files=1 size=9.93KB | | | stored statistics: | | | table: rows=12 size=9.93KB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=12 | | | mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=0 | | | tuple-ids=39 row-size=4B cardinality=12 | | | in pipelines: 47(GETNEXT) | | | | | 48:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=15 | | | hash predicates: sr_returned_date_sk = d_date_sk | | | fk/pk conjuncts: sr_returned_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=37,38 row-size=42B cardinality=287.51K | | | in pipelines: 45(GETNEXT), 46(OPEN) | | | | | |--F92:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=15 plan-id=16 cohort-id=06 | | | | build expressions: d_date_sk | | | | runtime filters: RF026[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 145:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=38 row-size=26B cardinality=7.30K | | | | in pipelines: 46(GETNEXT) | | | | | | | F29:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 46:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=38 row-size=26B cardinality=7.30K | | | in pipelines: 46(GETNEXT) | | | | | 45:SCAN HDFS [tpcds_parquet.store_returns, RANDOM] | | HDFS partitions=1/1 files=1 size=15.43MB | | runtime filters: RF024[bloom] -> sr_store_sk, RF026[bloom] -> sr_returned_date_sk | | stored statistics: | | table: rows=287.51K size=15.43MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=287.51K | | mem-estimate=24.00MB mem-reservation=4.00MB thread-reservation=0 | | tuple-ids=37 row-size=16B cardinality=287.51K | | in pipelines: 45(GETNEXT) | | | 144:AGGREGATE [FINALIZE] | | output: sum:merge(ss_ext_sales_price), sum:merge(ss_net_profit) | | group by: s_store_sk | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=35 row-size=36B cardinality=12 | | in pipelines: 144(GETNEXT), 39(OPEN) | | | 143:EXCHANGE [HASH(s_store_sk)] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=35 row-size=36B cardinality=12 | | in pipelines: 39(GETNEXT) | | | F24:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | Per-Instance Resources: mem-estimate=26.00MB mem-reservation=4.00MB thread-reservation=1 | 44:AGGREGATE [STREAMING] | | output: sum(ss_ext_sales_price), sum(ss_net_profit) | | group by: s_store_sk | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=35 row-size=36B cardinality=12 | | in pipelines: 39(GETNEXT) | | | 43:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=21 | | hash predicates: ss_store_sk = s_store_sk | | fk/pk conjuncts: ss_store_sk = s_store_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=32,33,34 row-size=46B cardinality=2.88M | | in pipelines: 39(GETNEXT), 41(OPEN) | | | |--F98:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=21 plan-id=22 cohort-id=05 | | | build expressions: s_store_sk | | | runtime filters: RF020[bloom] <- s_store_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 142:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=34 row-size=4B cardinality=12 | | | in pipelines: 41(GETNEXT) | | | | | F26:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=1 | | 41:SCAN HDFS [tpcds_parquet.store, RANDOM] | | HDFS partitions=1/1 files=1 size=9.93KB | | stored statistics: | | table: rows=12 size=9.93KB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=12 | | mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=0 | | tuple-ids=34 row-size=4B cardinality=12 | | in pipelines: 41(GETNEXT) | | | 42:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=22 | | hash predicates: ss_sold_date_sk = d_date_sk | | fk/pk conjuncts: ss_sold_date_sk = d_date_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=32,33 row-size=42B cardinality=2.88M | | in pipelines: 39(GETNEXT), 40(OPEN) | | | |--F99:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=22 plan-id=23 cohort-id=05 | | | build expressions: d_date_sk | | | runtime filters: RF022[bloom] <- d_date_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 141:EXCHANGE [BROADCAST] | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=33 row-size=26B cardinality=7.30K | | | in pipelines: 40(GETNEXT) | | | | | F25:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | 40:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | tuple-ids=33 row-size=26B cardinality=7.30K | | in pipelines: 40(GETNEXT) | | | 39:SCAN HDFS [tpcds_parquet.store_sales, RANDOM] | HDFS partitions=1824/1824 files=1824 size=196.95MB | runtime filters: RF020[bloom] -> ss_store_sk, RF022[bloom] -> ss_sold_date_sk | 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=2.00MB thread-reservation=0 | tuple-ids=32 row-size=16B cardinality=2.88M | in pipelines: 39(GETNEXT) | 140:AGGREGATE [FINALIZE] | output: sum:merge(sales), sum:merge(sreturns), sum:merge(profit) | group by: channel, id | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | tuple-ids=30 row-size=64B cardinality=78 | in pipelines: 140(GETNEXT), 119(OPEN), 126(OPEN), 134(OPEN) | 139:EXCHANGE [HASH(channel,id)] | mem-estimate=63.78KB mem-reservation=0B thread-reservation=0 | tuple-ids=30 row-size=64B cardinality=78 | in pipelines: 119(GETNEXT), 126(GETNEXT), 134(GETNEXT) | F22:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 Per-Instance Resources: mem-estimate=20.02MB mem-reservation=3.94MB thread-reservation=1 37:AGGREGATE [STREAMING] | output: sum(sales), sum(sreturns), sum(profit) | group by: channel, id | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | tuple-ids=30 row-size=64B cardinality=78 | in pipelines: 119(GETNEXT), 126(GETNEXT), 134(GETNEXT) | 01:UNION | mem-estimate=0B mem-reservation=0B thread-reservation=0 | tuple-ids=28 row-size=64B cardinality=78 | in pipelines: 119(GETNEXT), 126(GETNEXT), 134(GETNEXT) | |--36:HASH JOIN [LEFT OUTER JOIN, PARTITIONED] | | hash-table-id=05 | | hash predicates: wp_web_page_sk = wp_web_page_sk | | fk/pk conjuncts: wp_web_page_sk = wp_web_page_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=21,26N row-size=72B cardinality=60 | | in pipelines: 134(GETNEXT), 138(OPEN) | | | |--F82:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | | | Per-Instance Resources: mem-estimate=11.94MB mem-reservation=3.88MB thread-reservation=1 | | JOIN BUILD | | | join-table-id=05 plan-id=06 cohort-id=01 | | | build expressions: wp_web_page_sk | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | 138:AGGREGATE [FINALIZE] | | | output: sum:merge(wr_return_amt), sum:merge(wr_net_loss) | | | group by: wp_web_page_sk | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=26 row-size=36B cardinality=60 | | | in pipelines: 138(GETNEXT), 30(OPEN) | | | | | 137:EXCHANGE [HASH(wp_web_page_sk)] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=26 row-size=36B cardinality=60 | | | in pipelines: 30(GETNEXT) | | | | | F18:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | | Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.00MB thread-reservation=1 | | 35:AGGREGATE [STREAMING] | | | output: sum(wr_return_amt), sum(wr_net_loss) | | | group by: wp_web_page_sk | | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=26 row-size=36B cardinality=60 | | | in pipelines: 30(GETNEXT) | | | | | 34:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=06 | | | hash predicates: wr_web_page_sk = wp_web_page_sk | | | fk/pk conjuncts: wr_web_page_sk = wp_web_page_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=23,24,25 row-size=46B cardinality=71.76K | | | in pipelines: 30(GETNEXT), 32(OPEN) | | | | | |--F83:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=06 plan-id=07 cohort-id=04 | | | | build expressions: wp_web_page_sk | | | | runtime filters: RF016[bloom] <- wp_web_page_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 136:EXCHANGE [BROADCAST] | | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=25 row-size=4B cardinality=60 | | | | in pipelines: 32(GETNEXT) | | | | | | | F20:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=1 | | | 32:SCAN HDFS [tpcds_parquet.web_page, RANDOM] | | | HDFS partitions=1/1 files=1 size=5.56KB | | | stored statistics: | | | table: rows=60 size=5.56KB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=60 | | | mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=0 | | | tuple-ids=25 row-size=4B cardinality=60 | | | in pipelines: 32(GETNEXT) | | | | | 33:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=07 | | | hash predicates: wr_returned_date_sk = d_date_sk | | | fk/pk conjuncts: wr_returned_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=23,24 row-size=42B cardinality=71.76K | | | in pipelines: 30(GETNEXT), 31(OPEN) | | | | | |--F84:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=07 plan-id=08 cohort-id=04 | | | | build expressions: d_date_sk | | | | runtime filters: RF018[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 135:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=24 row-size=26B cardinality=7.30K | | | | in pipelines: 31(GETNEXT) | | | | | | | F19:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 31:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=24 row-size=26B cardinality=7.30K | | | in pipelines: 31(GETNEXT) | | | | | 30:SCAN HDFS [tpcds_parquet.web_returns, RANDOM] | | HDFS partitions=1/1 files=1 size=5.66MB | | runtime filters: RF016[bloom] -> wr_web_page_sk, RF018[bloom] -> wr_returned_date_sk | | stored statistics: | | table: rows=71.76K size=5.66MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=71.76K | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | tuple-ids=23 row-size=16B cardinality=71.76K | | in pipelines: 30(GETNEXT) | | | 134:AGGREGATE [FINALIZE] | | output: sum:merge(ws_ext_sales_price), sum:merge(ws_net_profit) | | group by: wp_web_page_sk | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=21 row-size=36B cardinality=60 | | in pipelines: 134(GETNEXT), 24(OPEN) | | | 133:EXCHANGE [HASH(wp_web_page_sk)] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=21 row-size=36B cardinality=60 | | in pipelines: 24(GETNEXT) | | | F14:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | Per-Instance Resources: mem-estimate=42.00MB mem-reservation=10.00MB thread-reservation=1 | 29:AGGREGATE [STREAMING] | | output: sum(ws_ext_sales_price), sum(ws_net_profit) | | group by: wp_web_page_sk | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=21 row-size=36B cardinality=60 | | in pipelines: 24(GETNEXT) | | | 28:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=11 | | hash predicates: ws_web_page_sk = wp_web_page_sk | | fk/pk conjuncts: ws_web_page_sk = wp_web_page_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=18,19,20 row-size=46B cardinality=719.38K | | in pipelines: 24(GETNEXT), 26(OPEN) | | | |--F88:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=11 plan-id=12 cohort-id=01 | | | build expressions: wp_web_page_sk | | | runtime filters: RF012[bloom] <- wp_web_page_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 132:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=20 row-size=4B cardinality=60 | | | in pipelines: 26(GETNEXT) | | | | | F16:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=1 | | 26:SCAN HDFS [tpcds_parquet.web_page, RANDOM] | | HDFS partitions=1/1 files=1 size=5.56KB | | stored statistics: | | table: rows=60 size=5.56KB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=60 | | mem-estimate=16.00MB mem-reservation=8.00KB thread-reservation=0 | | tuple-ids=20 row-size=4B cardinality=60 | | in pipelines: 26(GETNEXT) | | | 27:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=12 | | hash predicates: ws_sold_date_sk = d_date_sk | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=18,19 row-size=42B cardinality=719.38K | | in pipelines: 24(GETNEXT), 25(OPEN) | | | |--F89:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=12 plan-id=13 cohort-id=01 | | | build expressions: d_date_sk | | | runtime filters: RF014[bloom] <- d_date_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 131:EXCHANGE [BROADCAST] | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=19 row-size=26B cardinality=7.30K | | | in pipelines: 25(GETNEXT) | | | | | F15:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | 25:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | tuple-ids=19 row-size=26B cardinality=7.30K | | in pipelines: 25(GETNEXT) | | | 24:SCAN HDFS [tpcds_parquet.web_sales, RANDOM] | HDFS partitions=1/1 files=2 size=45.09MB | runtime filters: RF012[bloom] -> ws_web_page_sk, RF014[bloom] -> ws_sold_date_sk | stored statistics: | table: rows=719.38K size=45.09MB | columns: all | extrapolated-rows=disabled max-scan-range-rows=644.77K | mem-estimate=32.00MB mem-reservation=8.00MB thread-reservation=0 | tuple-ids=18 row-size=16B cardinality=719.38K | in pipelines: 24(GETNEXT) | |--23:NESTED LOOP JOIN [CROSS JOIN, BROADCAST] | | join table id: 03 | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | tuple-ids=12,16 row-size=68B cardinality=6 | | in pipelines: 126(GETNEXT), 129(OPEN) | | | |--F80:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=16.03KB mem-reservation=0B thread-reservation=1 | | JOIN BUILD | | | join-table-id=03 plan-id=04 cohort-id=01 | | | mem-estimate=32B mem-reservation=0B thread-reservation=0 | | | | | 130:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=16 row-size=32B cardinality=1 | | | in pipelines: 129(GETNEXT) | | | | | F13:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1 | | 129:AGGREGATE [FINALIZE] | | | output: sum:merge(cr_return_amount), sum:merge(cr_net_loss) | | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | | tuple-ids=16 row-size=32B cardinality=1 | | | in pipelines: 129(GETNEXT), 22(OPEN) | | | | | 128:EXCHANGE [UNPARTITIONED] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=16 row-size=32B cardinality=1 | | | in pipelines: 22(GETNEXT) | | | | | F11:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB | | Per-Instance Resources: mem-estimate=34.00MB mem-reservation=2.00MB thread-reservation=1 | | 22:AGGREGATE | | | output: sum(cr_return_amount), sum(cr_net_loss) | | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0 | | | tuple-ids=16 row-size=32B cardinality=1 | | | in pipelines: 22(GETNEXT), 19(OPEN) | | | | | 21:HASH JOIN [INNER JOIN, BROADCAST] | | | hash-table-id=04 | | | hash predicates: cr_returned_date_sk = d_date_sk | | | fk/pk conjuncts: cr_returned_date_sk = d_date_sk | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | | tuple-ids=14,15 row-size=38B cardinality=144.07K | | | in pipelines: 19(GETNEXT), 20(OPEN) | | | | | |--F81:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | | JOIN BUILD | | | | join-table-id=04 plan-id=05 cohort-id=03 | | | | build expressions: d_date_sk | | | | runtime filters: RF010[bloom] <- d_date_sk | | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | | | 127:EXCHANGE [BROADCAST] | | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | | tuple-ids=15 row-size=26B cardinality=7.30K | | | | in pipelines: 20(GETNEXT) | | | | | | | F12:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | | 20:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | | HDFS partitions=1/1 files=1 size=2.15MB | | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | stored statistics: | | | table: rows=73.05K size=2.15MB | | | columns: all | | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | | tuple-ids=15 row-size=26B cardinality=7.30K | | | in pipelines: 20(GETNEXT) | | | | | 19:SCAN HDFS [tpcds_parquet.catalog_returns, RANDOM] | | HDFS partitions=1/1 files=1 size=10.62MB | | runtime filters: RF010[bloom] -> cr_returned_date_sk | | stored statistics: | | table: rows=144.07K size=10.62MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=144.07K | | mem-estimate=24.00MB mem-reservation=2.00MB thread-reservation=0 | | tuple-ids=14 row-size=12B cardinality=144.07K | | in pipelines: 19(GETNEXT) | | | 126:AGGREGATE [FINALIZE] | | output: sum:merge(cs_ext_sales_price), sum:merge(cs_net_profit) | | group by: cs_call_center_sk | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=12 row-size=36B cardinality=6 | | in pipelines: 126(GETNEXT), 15(OPEN) | | | 125:EXCHANGE [HASH(cs_call_center_sk)] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=12 row-size=36B cardinality=6 | | in pipelines: 15(GETNEXT) | | | F08:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB | Per-Instance Resources: mem-estimate=58.00MB mem-reservation=10.00MB thread-reservation=1 | 18:AGGREGATE [STREAMING] | | output: sum(cs_ext_sales_price), sum(cs_net_profit) | | group by: cs_call_center_sk | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=12 row-size=36B cardinality=6 | | in pipelines: 15(GETNEXT) | | | 17:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=10 | | hash predicates: cs_sold_date_sk = d_date_sk | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=10,11 row-size=42B cardinality=1.44M | | in pipelines: 15(GETNEXT), 16(OPEN) | | | |--F87:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=10 plan-id=11 cohort-id=01 | | | build expressions: d_date_sk | | | runtime filters: RF008[bloom] <- d_date_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 124:EXCHANGE [BROADCAST] | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=11 row-size=26B cardinality=7.30K | | | in pipelines: 16(GETNEXT) | | | | | F09:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | 16:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | tuple-ids=11 row-size=26B cardinality=7.30K | | in pipelines: 16(GETNEXT) | | | 15:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | HDFS partitions=1/1 files=3 size=96.62MB | runtime filters: RF008[bloom] -> cs_sold_date_sk | stored statistics: | table: rows=1.44M size=96.62MB | columns: all | extrapolated-rows=disabled max-scan-range-rows=650.14K | mem-estimate=48.00MB mem-reservation=8.00MB thread-reservation=0 | tuple-ids=10 row-size=16B cardinality=1.44M | in pipelines: 15(GETNEXT) | 14:HASH JOIN [LEFT OUTER JOIN, PARTITIONED] | hash-table-id=00 | hash predicates: s_store_sk = s_store_sk | fk/pk conjuncts: s_store_sk = s_store_sk | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | tuple-ids=3,8N row-size=72B cardinality=12 | in pipelines: 119(GETNEXT), 123(OPEN) | |--F77:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 | | Per-Instance Resources: mem-estimate=11.94MB mem-reservation=3.88MB thread-reservation=1 | JOIN BUILD | | join-table-id=00 plan-id=01 cohort-id=01 | | build expressions: s_store_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | 123:AGGREGATE [FINALIZE] | | output: sum:merge(sr_return_amt), sum:merge(sr_net_loss) | | group by: s_store_sk | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=8 row-size=36B cardinality=12 | | in pipelines: 123(GETNEXT), 08(OPEN) | | | 122:EXCHANGE [HASH(s_store_sk)] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=8 row-size=36B cardinality=12 | | in pipelines: 08(GETNEXT) | | | F04:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB | Per-Instance Resources: mem-estimate=34.00MB mem-reservation=6.00MB thread-reservation=1 | 13:AGGREGATE [STREAMING] | | output: sum(sr_return_amt), sum(sr_net_loss) | | group by: s_store_sk | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=8 row-size=36B cardinality=12 | | in pipelines: 08(GETNEXT) | | | 12:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=01 | | hash predicates: sr_store_sk = s_store_sk | | fk/pk conjuncts: sr_store_sk = s_store_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=5,6,7 row-size=46B cardinality=287.51K | | in pipelines: 08(GETNEXT), 10(OPEN) | | | |--F78:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=01 plan-id=02 cohort-id=02 | | | build expressions: s_store_sk | | | runtime filters: RF004[bloom] <- s_store_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 121:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=7 row-size=4B cardinality=12 | | | in pipelines: 10(GETNEXT) | | | | | F06:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=1 | | 10:SCAN HDFS [tpcds_parquet.store, RANDOM] | | HDFS partitions=1/1 files=1 size=9.93KB | | stored statistics: | | table: rows=12 size=9.93KB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=12 | | mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=0 | | tuple-ids=7 row-size=4B cardinality=12 | | in pipelines: 10(GETNEXT) | | | 11:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=02 | | hash predicates: sr_returned_date_sk = d_date_sk | | fk/pk conjuncts: sr_returned_date_sk = d_date_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | | tuple-ids=5,6 row-size=42B cardinality=287.51K | | in pipelines: 08(GETNEXT), 09(OPEN) | | | |--F79:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=02 plan-id=03 cohort-id=02 | | | build expressions: d_date_sk | | | runtime filters: RF006[bloom] <- d_date_sk | | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | | | 120:EXCHANGE [BROADCAST] | | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=6 row-size=26B cardinality=7.30K | | | in pipelines: 09(GETNEXT) | | | | | F05:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | | 09:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | | tuple-ids=6 row-size=26B cardinality=7.30K | | in pipelines: 09(GETNEXT) | | | 08:SCAN HDFS [tpcds_parquet.store_returns, RANDOM] | HDFS partitions=1/1 files=1 size=15.43MB | runtime filters: RF004[bloom] -> sr_store_sk, RF006[bloom] -> sr_returned_date_sk | stored statistics: | table: rows=287.51K size=15.43MB | columns: all | extrapolated-rows=disabled max-scan-range-rows=287.51K | mem-estimate=24.00MB mem-reservation=4.00MB thread-reservation=0 | tuple-ids=5 row-size=16B cardinality=287.51K | in pipelines: 08(GETNEXT) | 119:AGGREGATE [FINALIZE] | output: sum:merge(ss_ext_sales_price), sum:merge(ss_net_profit) | group by: s_store_sk | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | tuple-ids=3 row-size=36B cardinality=12 | in pipelines: 119(GETNEXT), 02(OPEN) | 118:EXCHANGE [HASH(s_store_sk)] | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | tuple-ids=3 row-size=36B cardinality=12 | in pipelines: 02(GETNEXT) | F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=12 Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB Per-Instance Resources: mem-estimate=26.00MB mem-reservation=4.00MB thread-reservation=1 07:AGGREGATE [STREAMING] | output: sum(ss_ext_sales_price), sum(ss_net_profit) | group by: s_store_sk | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0 | tuple-ids=3 row-size=36B cardinality=12 | in pipelines: 02(GETNEXT) | 06:HASH JOIN [INNER JOIN, BROADCAST] | hash-table-id=08 | hash predicates: ss_store_sk = s_store_sk | fk/pk conjuncts: ss_store_sk = s_store_sk | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | tuple-ids=0,1,2 row-size=46B cardinality=2.88M | in pipelines: 02(GETNEXT), 04(OPEN) | |--F85:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=8.77MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | JOIN BUILD | | join-table-id=08 plan-id=09 cohort-id=01 | | build expressions: s_store_sk | | runtime filters: RF000[bloom] <- s_store_sk | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | 117:EXCHANGE [BROADCAST] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=2 row-size=4B cardinality=12 | | in pipelines: 04(GETNEXT) | | | F02:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=1 | 04:SCAN HDFS [tpcds_parquet.store, RANDOM] | HDFS partitions=1/1 files=1 size=9.93KB | stored statistics: | table: rows=12 size=9.93KB | columns: all | extrapolated-rows=disabled max-scan-range-rows=12 | mem-estimate=16.00MB mem-reservation=16.00KB thread-reservation=0 | tuple-ids=2 row-size=4B cardinality=12 | in pipelines: 04(GETNEXT) | 05:HASH JOIN [INNER JOIN, BROADCAST] | hash-table-id=09 | hash predicates: ss_sold_date_sk = d_date_sk | fk/pk conjuncts: ss_sold_date_sk = d_date_sk | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | tuple-ids=0,1 row-size=42B cardinality=2.88M | in pipelines: 02(GETNEXT), 03(OPEN) | |--F86:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=8.96MB mem-reservation=8.75MB thread-reservation=1 runtime-filters-memory=1.00MB | JOIN BUILD | | join-table-id=09 plan-id=10 cohort-id=01 | | build expressions: d_date_sk | | runtime filters: RF002[bloom] <- d_date_sk | | mem-estimate=7.75MB mem-reservation=7.75MB spill-buffer=64.00KB thread-reservation=0 | | | 116:EXCHANGE [BROADCAST] | | mem-estimate=215.48KB mem-reservation=0B thread-reservation=0 | | tuple-ids=1 row-size=26B cardinality=7.30K | | in pipelines: 03(GETNEXT) | | | F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=1 | 03:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | HDFS partitions=1/1 files=1 size=2.15MB | predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | stored statistics: | table: rows=73.05K size=2.15MB | columns: all | extrapolated-rows=disabled max-scan-range-rows=73.05K | parquet statistics predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | parquet dictionary predicates: CAST(d_date AS TIMESTAMP) <= TIMESTAMP '2000-09-01 00:00:00', CAST(d_date AS TIMESTAMP) >= TIMESTAMP '2000-08-02 00:00:00' | mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0 | tuple-ids=1 row-size=26B cardinality=7.30K | in pipelines: 03(GETNEXT) | 02:SCAN HDFS [tpcds_parquet.store_sales, RANDOM] HDFS partitions=1824/1824 files=1824 size=196.95MB runtime filters: RF000[bloom] -> ss_store_sk, RF002[bloom] -> ss_sold_date_sk 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=2.00MB thread-reservation=0 tuple-ids=0 row-size=16B cardinality=2.88M in pipelines: 02(GETNEXT) ---------------- Estimated Per-Host Mem: 2640416989 Request Pool: default-pool Per Host Min Memory Reservation: tarmstrong-Precision-7540:22002(353.00 MB) tarmstrong-Precision-7540:22001(638.89 MB) tarmstrong-Precision-7540:22000(441.50 MB) Per Host Number of Fragment Instances: tarmstrong-Precision-7540:22002(79) tarmstrong-Precision-7540:22001(142) tarmstrong-Precision-7540:22000(93) Admission result: Admitted immediately Cluster Memory Admitted: 7.38 GB Executor Group: default ExecSummary: Operator #Hosts #Inst Avg Time Max Time #Rows Est. #Rows Peak Mem Est. Peak Mem Detail ------------------------------------------------------------------------------------------------------------------------------------------------------------- F76:ROOT 1 1 514.756us 514.756us 0 0 198:MERGING-EXCHANGE 1 1 164.572us 164.572us 44 82 192.00 KB 67.05 KB UNPARTITIONED F75:EXCHANGE SENDER 3 12 104.292us 119.905us 1.97 KB 0 115:TOP-N 3 12 188.151us 355.118us 44 82 12.00 KB 5.12 KB 197:AGGREGATE 3 12 2.272ms 2.655ms 44 82 2.02 MB 10.00 MB FINALIZE 196:EXCHANGE 3 12 52.744us 92.074us 44 82 64.00 KB 67.05 KB HASH(channel,id,sales,sreturns,profit) F74:EXCHANGE SENDER 3 12 333.342us 460.609us 51.62 KB 0 114:AGGREGATE 3 12 1.699ms 5.519ms 44 82 2.27 MB 10.00 MB STREAMING 00:UNION 3 12 1.533ms 13.958ms 44 82 8.00 KB 0 |--167:AGGREGATE 3 12 2.476ms 5.265ms 3 3 1.97 MB 10.00 MB FINALIZE | 166:EXCHANGE 3 12 29.726us 158.393us 18 3 96.00 KB 16.00 KB HASH(channel) | F47:EXCHANGE SENDER 3 12 321.999us 413.187us 33.12 KB 0 | 75:AGGREGATE 3 12 1.862ms 4.872ms 18 3 2.03 MB 10.00 MB STREAMING | 165:AGGREGATE 3 12 3.391ms 8.550ms 40 78 1.97 MB 10.00 MB FINALIZE | 164:EXCHANGE 3 12 56.544us 113.766us 40 78 48.00 KB 63.78 KB HASH(channel,id) | F46:EXCHANGE SENDER 3 12 490.236us 1.237ms 43.62 KB 0 | 74:AGGREGATE 3 12 1.257ms 1.905ms 40 78 2.22 MB 10.00 MB STREAMING | 38:UNION 3 12 509.774us 5.912ms 40 78 20.00 KB 0 | |--60:NESTED LOOP JOIN 3 12 305.867us 347.657us 4 6 16.00 KB 0 CROSS JOIN, BROADCAST | | |--F93:JOIN BUILD 3 3 35.103us 41.491us 20.00 KB 32.00 B | | | 155:EXCHANGE 3 3 37.997us 41.668us 1 1 16.00 KB 16.00 KB BROADCAST | | | F37:EXCHANGE SENDER 1 1 174.768us 174.768us 11.62 KB 0 | | | 154:AGGREGATE 1 1 326.636us 326.636us 1 1 16.00 KB 10.00 MB FINALIZE | | | 153:EXCHANGE 1 1 45.917us 45.917us 1 1 16.00 KB 16.00 KB UNPARTITIONED | | | F35:EXCHANGE SENDER 1 1 110.140us 110.140us 3.88 KB 0 | | | 59:AGGREGATE 1 1 2.709ms 2.709ms 1 1 175.00 KB 10.00 MB | | | 58:HASH JOIN 1 1 817.419ms 817.419ms 1.61K 144.07K 94.12 KB 0 INNER JOIN, BROADCAST | | | |--F94:JOIN BUILD 1 1 5.898ms 5.898ms 7.77 MB 7.75 MB | | | | 152:EXCHANGE 1 1 57.147us 57.147us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | | F36:EXCHANGE SENDER 1 1 4.633ms 4.633ms 7.52 KB 0 | | | | 57:SCAN HDFS 1 1 113.109ms 113.109ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | | 56:SCAN HDFS 1 1 389.676ms 389.676ms 1.61K 144.07K 2.78 MB 24.00 MB tpcds_parquet.catalog_returns | | 151:AGGREGATE 3 12 2.709ms 9.672ms 4 6 1.96 MB 10.00 MB FINALIZE | | 150:EXCHANGE 3 12 14.949us 24.309us 4 6 16.00 KB 16.00 KB HASH(cs_call_center_sk) | | F32:EXCHANGE SENDER 3 3 815.810us 1.726ms 57.44 KB 0 | | 55:AGGREGATE 3 3 3.595ms 7.930ms 4 6 10.03 MB 10.00 MB STREAMING | | 54:HASH JOIN 3 3 16.189ms 31.313ms 31.69K 1.44M 59.12 KB 0 INNER JOIN, BROADCAST | | |--F100:JOIN BUILD 3 3 4.267ms 8.996ms 7.77 MB 7.75 MB | | | 149:EXCHANGE 3 3 55.252us 60.794us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F33:EXCHANGE SENDER 1 1 3.598ms 3.598ms 22.57 KB 0 | | | 53:SCAN HDFS 1 1 112.494ms 112.494ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 52:SCAN HDFS 3 3 20s439ms 59s060ms 687.83K 1.44M 8.67 MB 48.00 MB tpcds_parquet.catalog_sales | |--73:HASH JOIN 3 12 750.018us 2.224ms 30 60 25.12 KB 0 LEFT OUTER JOIN, PARTITIONED | | |--F95:JOIN BUILD 3 12 2.157ms 8.782ms 1.95 MB 1.94 MB | | | 163:AGGREGATE 3 12 10.655ms 39.192ms 40 60 1.96 MB 10.00 MB FINALIZE | | | 162:EXCHANGE 3 12 35.146us 38.553us 40 60 16.00 KB 16.00 KB HASH(wp_web_page_sk) | | | F42:EXCHANGE SENDER 1 1 27.731ms 27.731ms 89.44 KB 0 | | | 72:AGGREGATE 1 1 16.047ms 16.047ms 40 60 2.10 MB 10.00 MB STREAMING | | | 71:HASH JOIN 1 1 10.752ms 10.752ms 1.04K 71.76K 99.12 KB 0 INNER JOIN, BROADCAST | | | |--F96:JOIN BUILD 1 1 22.205ms 22.205ms 7.77 MB 7.75 MB | | | | 161:EXCHANGE 1 1 72.897us 72.897us 60 60 16.00 KB 16.00 KB BROADCAST | | | | F44:EXCHANGE SENDER 1 1 176.068us 176.068us 25.59 KB 0 | | | | 69:SCAN HDFS 1 1 14.258ms 14.258ms 60 60 21.23 KB 16.00 MB tpcds_parquet.web_page | | | 70:HASH JOIN 1 1 690.961us 690.961us 1.04K 71.76K 53.12 KB 0 INNER JOIN, BROADCAST | | | |--F97:JOIN BUILD 1 1 5.636ms 5.636ms 7.77 MB 7.75 MB | | | | 160:EXCHANGE 1 1 58.889us 58.889us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | | F43:EXCHANGE SENDER 1 1 178.255us 178.255us 7.52 KB 0 | | | | 68:SCAN HDFS 1 1 128.427ms 128.427ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | | 67:SCAN HDFS 1 1 296.469ms 296.469ms 1.04K 71.76K 1.79 MB 16.00 MB tpcds_parquet.web_returns | | 159:AGGREGATE 3 12 2.540ms 6.238ms 30 60 1.96 MB 10.00 MB FINALIZE | | 158:EXCHANGE 3 12 35.405us 51.069us 60 60 32.00 KB 16.00 KB HASH(wp_web_page_sk) | | F38:EXCHANGE SENDER 2 2 465.595us 472.811us 85.44 KB 0 | | 66:AGGREGATE 2 2 3.056ms 4.495ms 60 60 3.05 MB 10.00 MB STREAMING | | 65:HASH JOIN 2 2 1.048ms 1.518ms 15.59K 719.38K 968.12 KB 0 INNER JOIN, BROADCAST | | |--F101:JOIN BUILD 2 2 3.004ms 3.256ms 7.77 MB 7.75 MB | | | 157:EXCHANGE 2 2 492.684us 902.003us 60 60 16.00 KB 16.00 KB BROADCAST | | | F40:EXCHANGE SENDER 1 1 522.342us 522.342us 51.19 KB 0 | | | 63:SCAN HDFS 1 1 1.851ms 1.851ms 60 60 21.23 KB 16.00 MB tpcds_parquet.web_page | | 64:HASH JOIN 2 2 13.843ms 24.830ms 15.60K 719.38K 42.12 KB 0 INNER JOIN, BROADCAST | | |--F102:JOIN BUILD 2 2 2.195ms 2.397ms 7.77 MB 7.75 MB | | | 156:EXCHANGE 2 2 55.663us 56.012us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F39:EXCHANGE SENDER 1 1 8.352ms 8.352ms 15.05 KB 0 | | | 62:SCAN HDFS 1 1 112.851ms 112.851ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 61:SCAN HDFS 2 2 58s183ms 58s298ms 719.38K 719.38K 9.29 MB 32.00 MB tpcds_parquet.web_sales | 51:HASH JOIN 3 12 518.643us 911.437us 6 12 25.12 KB 0 LEFT OUTER JOIN, PARTITIONED | |--F90:JOIN BUILD 3 12 995.114us 2.689ms 1.95 MB 1.94 MB | | 148:AGGREGATE 3 12 2.220ms 2.454ms 6 12 1.96 MB 10.00 MB FINALIZE | | 147:EXCHANGE 3 12 19.799us 26.672us 6 12 16.00 KB 16.00 KB HASH(s_store_sk) | | F28:EXCHANGE SENDER 1 1 382.099us 382.099us 61.44 KB 0 | | 50:AGGREGATE 1 1 1.456ms 1.456ms 6 12 3.66 MB 10.00 MB STREAMING | | 49:HASH JOIN 1 1 2.536ms 2.536ms 2.92K 287.51K 1.66 MB 0 INNER JOIN, BROADCAST | | |--F91:JOIN BUILD 1 1 1.569ms 1.569ms 7.77 MB 7.75 MB | | | 146:EXCHANGE 1 1 41.277us 41.277us 12 12 16.19 KB 16.00 KB BROADCAST | | | F30:EXCHANGE SENDER 1 1 151.301us 151.301us 25.59 KB 0 | | | 47:SCAN HDFS 1 1 5.122ms 5.122ms 12 12 29.05 KB 16.00 MB tpcds_parquet.store | | 48:HASH JOIN 1 1 14.266ms 14.266ms 2.96K 287.51K 42.12 KB 0 INNER JOIN, BROADCAST | | |--F92:JOIN BUILD 1 1 1.855ms 1.855ms 7.77 MB 7.75 MB | | | 145:EXCHANGE 1 1 57.267us 57.267us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F29:EXCHANGE SENDER 1 1 173.884us 173.884us 7.52 KB 0 | | | 46:SCAN HDFS 1 1 87.455ms 87.455ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 45:SCAN HDFS 1 1 58s924ms 58s924ms 286.93K 287.51K 5.24 MB 24.00 MB tpcds_parquet.store_returns | 144:AGGREGATE 3 12 2.277ms 3.029ms 6 12 1.96 MB 10.00 MB FINALIZE | 143:EXCHANGE 3 12 75.305us 170.982us 72 12 128.00 KB 16.00 KB HASH(s_store_sk) | F24:EXCHANGE SENDER 3 12 501.933us 1.509ms 61.44 KB 0 | 44:AGGREGATE 3 12 1.284ms 4.760ms 72 12 6.46 MB 10.00 MB STREAMING | 43:HASH JOIN 3 12 1.113ms 2.967ms 59.29K 2.88M 4.46 MB 0 INNER JOIN, BROADCAST | |--F98:JOIN BUILD 3 3 7.259ms 18.228ms 7.77 MB 7.75 MB | | 142:EXCHANGE 3 3 46.633us 53.088us 12 12 16.19 KB 16.00 KB BROADCAST | | F26:EXCHANGE SENDER 1 1 1.162ms 1.162ms 76.78 KB 0 | | 41:SCAN HDFS 1 1 2.053ms 2.053ms 12 12 29.05 KB 16.00 MB tpcds_parquet.store | 42:HASH JOIN 3 12 58.830ms 157.313ms 59.75K 2.88M 59.12 KB 0 INNER JOIN, BROADCAST | |--F99:JOIN BUILD 3 3 17.606ms 30.919ms 7.77 MB 7.75 MB | | 141:EXCHANGE 3 3 55.250us 58.070us 31 7.30K 16.52 KB 215.48 KB BROADCAST | | F25:EXCHANGE SENDER 1 1 36.602ms 36.602ms 22.57 KB 0 | | 40:SCAN HDFS 1 1 124.411ms 124.411ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | 39:SCAN HDFS 3 12 20s068ms 58s884ms 954.11K 2.88M 2.08 MB 16.00 MB tpcds_parquet.store_sales |--195:EXCHANGE 3 12 13.460us 19.026us 1 1 16.00 KB 16.00 KB RANDOM | F73:EXCHANGE SENDER 1 1 259.952us 259.952us 31.31 KB 0 | 194:AGGREGATE 1 1 324.846us 324.846us 1 1 16.00 KB 10.00 MB FINALIZE | 193:EXCHANGE 1 1 122.556us 122.556us 12 1 120.00 KB 16.00 KB UNPARTITIONED | F72:EXCHANGE SENDER 3 12 102.208us 129.934us 2.61 KB 0 | 113:AGGREGATE 3 12 187.467us 233.107us 12 1 16.00 KB 10.00 MB | 192:AGGREGATE 3 12 2.915ms 7.111ms 40 78 1.97 MB 10.00 MB FINALIZE | 191:EXCHANGE 3 12 56.508us 161.958us 40 78 48.00 KB 63.78 KB HASH(channel,id) | F71:EXCHANGE SENDER 3 12 372.426us 826.833us 43.62 KB 0 | 112:AGGREGATE 3 12 1.554ms 6.132ms 40 78 2.22 MB 10.00 MB STREAMING | 76:UNION 3 12 0.000ns 0.000ns 40 78 20.00 KB 0 | |--98:NESTED LOOP JOIN 3 12 1.213ms 8.932ms 4 6 16.00 KB 0 CROSS JOIN, BROADCAST | | |--F106:JOIN BUILD 3 3 33.830us 35.722us 20.00 KB 32.00 B | | | 182:EXCHANGE 3 3 36.150us 40.056us 1 1 16.00 KB 16.00 KB BROADCAST | | | F62:EXCHANGE SENDER 1 1 188.400us 188.400us 11.62 KB 0 | | | 181:AGGREGATE 1 1 342.460us 342.460us 1 1 16.00 KB 10.00 MB FINALIZE | | | 180:EXCHANGE 1 1 335.937us 335.937us 1 1 16.00 KB 16.00 KB UNPARTITIONED | | | F60:EXCHANGE SENDER 1 1 1.239ms 1.239ms 3.88 KB 0 | | | 97:AGGREGATE 1 1 71.706us 71.706us 1 1 175.00 KB 10.00 MB | | | 96:HASH JOIN 1 1 1s576ms 1s576ms 1.61K 144.07K 94.12 KB 0 INNER JOIN, BROADCAST | | | |--F107:JOIN BUILD 1 1 9.860ms 9.860ms 7.77 MB 7.75 MB | | | | 179:EXCHANGE 1 1 57.519us 57.519us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | | F61:EXCHANGE SENDER 1 1 14.658ms 14.658ms 7.52 KB 0 | | | | 95:SCAN HDFS 1 1 113.519ms 113.519ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | | 94:SCAN HDFS 1 1 416.232ms 416.232ms 1.61K 144.07K 2.78 MB 24.00 MB tpcds_parquet.catalog_returns | | 178:AGGREGATE 3 12 2.857ms 10.150ms 4 6 1.96 MB 10.00 MB FINALIZE | | 177:EXCHANGE 3 12 14.286us 21.865us 4 6 16.00 KB 16.00 KB HASH(cs_call_center_sk) | | F57:EXCHANGE SENDER 3 3 288.234us 346.478us 57.44 KB 0 | | 93:AGGREGATE 3 3 5.591ms 8.717ms 4 6 10.03 MB 10.00 MB STREAMING | | 92:HASH JOIN 3 3 83.301ms 215.660ms 31.69K 1.44M 42.12 KB 0 INNER JOIN, BROADCAST | | |--F113:JOIN BUILD 3 3 1.720ms 1.824ms 7.77 MB 7.75 MB | | | 176:EXCHANGE 3 3 54.702us 57.903us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F58:EXCHANGE SENDER 1 1 9.406ms 9.406ms 22.57 KB 0 | | | 91:SCAN HDFS 1 1 93.173ms 93.173ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 90:SCAN HDFS 3 3 58s803ms 59s129ms 1.44M 1.44M 8.67 MB 48.00 MB tpcds_parquet.catalog_sales | |--111:HASH JOIN 3 12 529.751us 618.586us 30 60 25.12 KB 0 LEFT OUTER JOIN, PARTITIONED | | |--F108:JOIN BUILD 3 12 981.983us 1.274ms 1.95 MB 1.94 MB | | | 190:AGGREGATE 3 12 4.771ms 9.895ms 40 60 1.96 MB 10.00 MB FINALIZE | | | 189:EXCHANGE 3 12 33.866us 52.186us 40 60 16.00 KB 16.00 KB HASH(wp_web_page_sk) | | | F67:EXCHANGE SENDER 1 1 17.046ms 17.046ms 89.44 KB 0 | | | 110:AGGREGATE 1 1 9.684ms 9.684ms 40 60 2.10 MB 10.00 MB STREAMING | | | 109:HASH JOIN 1 1 679.889ms 679.889ms 1.04K 71.76K 99.12 KB 0 INNER JOIN, BROADCAST | | | |--F109:JOIN BUILD 1 1 1.771ms 1.771ms 7.77 MB 7.75 MB | | | | 188:EXCHANGE 1 1 66.352us 66.352us 60 60 16.00 KB 16.00 KB BROADCAST | | | | F69:EXCHANGE SENDER 1 1 126.699us 126.699us 25.59 KB 0 | | | | 107:SCAN HDFS 1 1 351.887ms 351.887ms 60 60 21.23 KB 16.00 MB tpcds_parquet.web_page | | | 108:HASH JOIN 1 1 683.015us 683.015us 1.04K 71.76K 53.12 KB 0 INNER JOIN, BROADCAST | | | |--F110:JOIN BUILD 1 1 1.922ms 1.922ms 7.77 MB 7.75 MB | | | | 187:EXCHANGE 1 1 61.086us 61.086us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | | F68:EXCHANGE SENDER 1 1 21.613ms 21.613ms 7.52 KB 0 | | | | 106:SCAN HDFS 1 1 100.613ms 100.613ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | | 105:SCAN HDFS 1 1 361.491ms 361.491ms 1.04K 71.76K 1.79 MB 16.00 MB tpcds_parquet.web_returns | | 186:AGGREGATE 3 12 2.681ms 6.993ms 30 60 1.96 MB 10.00 MB FINALIZE | | 185:EXCHANGE 3 12 32.402us 40.720us 60 60 32.00 KB 16.00 KB HASH(wp_web_page_sk) | | F63:EXCHANGE SENDER 2 2 815.399us 962.883us 85.44 KB 0 | | 104:AGGREGATE 2 2 5.971ms 9.292ms 60 60 2.22 MB 10.00 MB STREAMING | | 103:HASH JOIN 2 2 1.343ms 1.953ms 15.59K 719.38K 140.12 KB 0 INNER JOIN, BROADCAST | | |--F114:JOIN BUILD 2 2 8.869ms 15.981ms 7.77 MB 7.75 MB | | | 184:EXCHANGE 2 2 74.080us 75.030us 60 60 16.57 KB 16.00 KB BROADCAST | | | F65:EXCHANGE SENDER 1 1 178.664us 178.664us 51.19 KB 0 | | | 101:SCAN HDFS 1 1 479.633ms 479.633ms 60 60 21.23 KB 16.00 MB tpcds_parquet.web_page | | 102:HASH JOIN 2 2 2.823ms 3.777ms 15.59K 719.38K 104.12 KB 0 INNER JOIN, BROADCAST | | |--F115:JOIN BUILD 2 2 4.939ms 7.840ms 7.77 MB 7.75 MB | | | 183:EXCHANGE 2 2 54.299us 54.618us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F64:EXCHANGE SENDER 1 1 10.713ms 10.713ms 15.05 KB 0 | | | 100:SCAN HDFS 1 1 95.160ms 95.160ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 99:SCAN HDFS 2 2 235.050ms 397.335ms 15.59K 719.38K 9.29 MB 32.00 MB tpcds_parquet.web_sales | 89:HASH JOIN 3 12 584.733us 1.486ms 6 12 25.12 KB 0 LEFT OUTER JOIN, PARTITIONED | |--F103:JOIN BUILD 3 12 931.453us 1.263ms 1.95 MB 1.94 MB | | 175:AGGREGATE 3 12 2.335ms 3.049ms 6 12 1.96 MB 10.00 MB FINALIZE | | 174:EXCHANGE 3 12 24.981us 47.202us 6 12 16.00 KB 16.00 KB HASH(s_store_sk) | | F53:EXCHANGE SENDER 1 1 10.514ms 10.514ms 61.44 KB 0 | | 88:AGGREGATE 1 1 0.000ns 0.000ns 6 12 2.17 MB 10.00 MB STREAMING | | 87:HASH JOIN 1 1 463.472ms 463.472ms 2.92K 287.51K 140.12 KB 0 INNER JOIN, BROADCAST | | |--F104:JOIN BUILD 1 1 72.680ms 72.680ms 7.77 MB 7.75 MB | | | 173:EXCHANGE 1 1 42.654us 42.654us 12 12 16.00 KB 16.00 KB BROADCAST | | | F55:EXCHANGE SENDER 1 1 119.289us 119.289us 25.59 KB 0 | | | 85:SCAN HDFS 1 1 95.726ms 95.726ms 12 12 29.05 KB 16.00 MB tpcds_parquet.store | | 86:HASH JOIN 1 1 24.632ms 24.632ms 2.92K 287.51K 70.12 KB 0 INNER JOIN, BROADCAST | | |--F105:JOIN BUILD 1 1 1.915ms 1.915ms 7.77 MB 7.75 MB | | | 172:EXCHANGE 1 1 58.776us 58.776us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F54:EXCHANGE SENDER 1 1 20.291ms 20.291ms 7.52 KB 0 | | | 84:SCAN HDFS 1 1 110.040ms 110.040ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 83:SCAN HDFS 1 1 843.925ms 843.925ms 2.92K 287.51K 5.24 MB 24.00 MB tpcds_parquet.store_returns | 171:AGGREGATE 3 12 2.686ms 3.288ms 6 12 1.96 MB 10.00 MB FINALIZE | 170:EXCHANGE 3 12 97.881us 229.679us 72 12 120.00 KB 16.00 KB HASH(s_store_sk) | F49:EXCHANGE SENDER 3 12 454.636us 884.716us 61.44 KB 0 | 82:AGGREGATE 3 12 1.150ms 5.053ms 72 12 5.57 MB 10.00 MB STREAMING | 81:HASH JOIN 3 12 1.743ms 3.516ms 59.29K 2.88M 3.57 MB 0 INNER JOIN, BROADCAST | |--F111:JOIN BUILD 3 3 1.567ms 1.839ms 7.77 MB 7.75 MB | | 169:EXCHANGE 3 3 56.011us 60.377us 12 12 16.00 KB 16.00 KB BROADCAST | | F51:EXCHANGE SENDER 1 1 223.029us 223.029us 76.78 KB 0 | | 79:SCAN HDFS 1 1 403.849ms 403.849ms 12 12 29.05 KB 16.00 MB tpcds_parquet.store | 80:HASH JOIN 3 12 21.269ms 37.003ms 60.67K 2.88M 46.12 KB 0 INNER JOIN, BROADCAST | |--F112:JOIN BUILD 3 3 7.144ms 11.271ms 7.77 MB 7.75 MB | | 168:EXCHANGE 3 3 50.940us 53.361us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | F50:EXCHANGE SENDER 1 1 5.377ms 5.377ms 22.57 KB 0 | | 78:SCAN HDFS 1 1 92.723ms 92.723ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | 77:SCAN HDFS 3 12 58s828ms 59s373ms 1.85M 2.88M 2.08 MB 16.00 MB tpcds_parquet.store_sales 140:AGGREGATE 3 12 2.733ms 3.496ms 40 78 1.97 MB 10.00 MB FINALIZE 139:EXCHANGE 3 12 57.404us 133.957us 40 78 48.00 KB 63.78 KB HASH(channel,id) F22:EXCHANGE SENDER 3 12 414.099us 857.130us 43.62 KB 0 37:AGGREGATE 3 12 1.787ms 7.133ms 40 78 2.22 MB 10.00 MB STREAMING 01:UNION 3 12 503.655us 3.307ms 40 78 20.00 KB 0 |--23:NESTED LOOP JOIN 3 12 702.155us 3.636ms 4 6 16.00 KB 0 CROSS JOIN, BROADCAST | |--F80:JOIN BUILD 3 3 32.591us 34.508us 20.00 KB 32.00 B | | 130:EXCHANGE 3 3 33.304us 34.688us 1 1 16.00 KB 16.00 KB BROADCAST | | F13:EXCHANGE SENDER 1 1 222.173us 222.173us 11.62 KB 0 | | 129:AGGREGATE 1 1 347.612us 347.612us 1 1 16.00 KB 10.00 MB FINALIZE | | 128:EXCHANGE 1 1 31.054us 31.054us 1 1 16.00 KB 16.00 KB UNPARTITIONED | | F11:EXCHANGE SENDER 1 1 559.375us 559.375us 3.88 KB 0 | | 22:AGGREGATE 1 1 1.710ms 1.710ms 1 1 175.00 KB 10.00 MB | | 21:HASH JOIN 1 1 13.534ms 13.534ms 1.61K 144.07K 94.12 KB 0 INNER JOIN, BROADCAST | | |--F81:JOIN BUILD 1 1 8.831ms 8.831ms 7.77 MB 7.75 MB | | | 127:EXCHANGE 1 1 69.231us 69.231us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F12:EXCHANGE SENDER 1 1 1.728ms 1.728ms 7.52 KB 0 | | | 20:SCAN HDFS 1 1 148.009ms 148.009ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 19:SCAN HDFS 1 1 249.428ms 249.428ms 1.61K 144.07K 2.78 MB 24.00 MB tpcds_parquet.catalog_returns | 126:AGGREGATE 3 12 2.333ms 4.909ms 4 6 1.96 MB 10.00 MB FINALIZE | 125:EXCHANGE 3 12 15.085us 27.099us 4 6 16.00 KB 16.00 KB HASH(cs_call_center_sk) | F08:EXCHANGE SENDER 3 3 821.937us 1.110ms 57.44 KB 0 | 18:AGGREGATE 3 3 1.196ms 1.685ms 4 6 2.09 MB 10.00 MB STREAMING | 17:HASH JOIN 3 3 1.492ms 3.112ms 31.69K 1.44M 59.12 KB 0 INNER JOIN, BROADCAST | |--F87:JOIN BUILD 3 3 12.043ms 32.207ms 7.77 MB 7.75 MB | | 124:EXCHANGE 3 3 62.035us 65.627us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | F09:EXCHANGE SENDER 1 1 256.591us 256.591us 22.57 KB 0 | | 16:SCAN HDFS 1 1 72.285ms 72.285ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | 15:SCAN HDFS 3 3 1s525ms 2s186ms 31.69K 1.44M 8.67 MB 48.00 MB tpcds_parquet.catalog_sales |--36:HASH JOIN 3 12 532.550us 792.167us 30 60 25.12 KB 0 LEFT OUTER JOIN, PARTITIONED | |--F82:JOIN BUILD 3 12 966.348us 1.050ms 1.95 MB 1.94 MB | | 138:AGGREGATE 3 12 2.702ms 4.299ms 40 60 1.96 MB 10.00 MB FINALIZE | | 137:EXCHANGE 3 12 29.787us 34.125us 40 60 16.00 KB 16.00 KB HASH(wp_web_page_sk) | | F18:EXCHANGE SENDER 1 1 610.243us 610.243us 89.44 KB 0 | | 35:AGGREGATE 1 1 2.273ms 2.273ms 40 60 2.10 MB 10.00 MB STREAMING | | 34:HASH JOIN 1 1 635.662us 635.662us 1.04K 71.76K 99.12 KB 0 INNER JOIN, BROADCAST | | |--F83:JOIN BUILD 1 1 1.750ms 1.750ms 7.77 MB 7.75 MB | | | 136:EXCHANGE 1 1 68.424us 68.424us 60 60 16.00 KB 16.00 KB BROADCAST | | | F20:EXCHANGE SENDER 1 1 287.130us 287.130us 25.59 KB 0 | | | 32:SCAN HDFS 1 1 8.891ms 8.891ms 60 60 21.23 KB 16.00 MB tpcds_parquet.web_page | | 33:HASH JOIN 1 1 691.488us 691.488us 1.04K 71.76K 53.12 KB 0 INNER JOIN, BROADCAST | | |--F84:JOIN BUILD 1 1 2.040ms 2.040ms 7.77 MB 7.75 MB | | | 135:EXCHANGE 1 1 61.469us 61.469us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | | F19:EXCHANGE SENDER 1 1 165.215us 165.215us 7.52 KB 0 | | | 31:SCAN HDFS 1 1 106.448ms 106.448ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | | 30:SCAN HDFS 1 1 58.955ms 58.955ms 1.04K 71.76K 1.79 MB 16.00 MB tpcds_parquet.web_returns | 134:AGGREGATE 3 12 1.997ms 2.999ms 30 60 1.96 MB 10.00 MB FINALIZE | 133:EXCHANGE 3 12 160.555us 1.464ms 60 60 32.00 KB 16.00 KB HASH(wp_web_page_sk) | F14:EXCHANGE SENDER 2 2 1.941ms 3.426ms 85.44 KB 0 | 29:AGGREGATE 2 2 16.868ms 27.511ms 60 60 2.22 MB 10.00 MB STREAMING | 28:HASH JOIN 2 2 2.765ms 4.787ms 15.59K 719.38K 140.12 KB 0 INNER JOIN, BROADCAST | |--F88:JOIN BUILD 2 2 3.192ms 4.434ms 7.77 MB 7.75 MB | | 132:EXCHANGE 2 2 71.741us 74.989us 60 60 16.00 KB 16.00 KB BROADCAST | | F16:EXCHANGE SENDER 1 1 6.928ms 6.928ms 51.19 KB 0 | | 26:SCAN HDFS 1 1 8.031ms 8.031ms 60 60 21.23 KB 16.00 MB tpcds_parquet.web_page | 27:HASH JOIN 2 2 1.283ms 1.776ms 15.59K 719.38K 104.12 KB 0 INNER JOIN, BROADCAST | |--F89:JOIN BUILD 2 2 2.074ms 2.243ms 7.77 MB 7.75 MB | | 131:EXCHANGE 2 2 62.119us 70.056us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | F15:EXCHANGE SENDER 1 1 5.310ms 5.310ms 15.05 KB 0 | | 25:SCAN HDFS 1 1 43.050ms 43.050ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | 24:SCAN HDFS 2 2 762.026ms 1s157ms 15.59K 719.38K 9.29 MB 32.00 MB tpcds_parquet.web_sales 14:HASH JOIN 3 12 6.605ms 63.450ms 6 12 25.12 KB 0 LEFT OUTER JOIN, PARTITIONED |--F77:JOIN BUILD 3 12 1.353ms 5.349ms 1.95 MB 1.94 MB | 123:AGGREGATE 3 12 4.113ms 12.584ms 6 12 1.96 MB 10.00 MB FINALIZE | 122:EXCHANGE 3 12 24.559us 41.425us 6 12 16.00 KB 16.00 KB HASH(s_store_sk) | F04:EXCHANGE SENDER 1 1 494.810us 494.810us 61.44 KB 0 | 13:AGGREGATE 1 1 60.241ms 60.241ms 6 12 2.17 MB 10.00 MB STREAMING | 12:HASH JOIN 1 1 745.236us 745.236us 2.92K 287.51K 140.12 KB 0 INNER JOIN, BROADCAST | |--F78:JOIN BUILD 1 1 10.651ms 10.651ms 7.77 MB 7.75 MB | | 121:EXCHANGE 1 1 44.420us 44.420us 12 12 16.00 KB 16.00 KB BROADCAST | | F06:EXCHANGE SENDER 1 1 265.929us 265.929us 25.59 KB 0 | | 10:SCAN HDFS 1 1 26.298ms 26.298ms 12 12 29.05 KB 16.00 MB tpcds_parquet.store | 11:HASH JOIN 1 1 911.505us 911.505us 2.92K 287.51K 70.12 KB 0 INNER JOIN, BROADCAST | |--F79:JOIN BUILD 1 1 1.936ms 1.936ms 7.77 MB 7.75 MB | | 120:EXCHANGE 1 1 61.289us 61.289us 31 7.30K 16.00 KB 215.48 KB BROADCAST | | F05:EXCHANGE SENDER 1 1 17.531ms 17.531ms 7.52 KB 0 | | 09:SCAN HDFS 1 1 206.378ms 206.378ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim | 08:SCAN HDFS 1 1 517.014ms 517.014ms 2.92K 287.51K 5.24 MB 24.00 MB tpcds_parquet.store_returns 119:AGGREGATE 3 12 8.283ms 65.408ms 6 12 1.96 MB 10.00 MB FINALIZE 118:EXCHANGE 3 12 71.720us 228.235us 72 12 192.00 KB 16.00 KB HASH(s_store_sk) F00:EXCHANGE SENDER 3 12 1.044ms 7.377ms 61.44 KB 0 07:AGGREGATE 3 12 1.608ms 6.968ms 72 12 2.09 MB 10.00 MB STREAMING 06:HASH JOIN 3 12 1.330ms 3.569ms 59.29K 2.88M 88.12 KB 0 INNER JOIN, BROADCAST |--F85:JOIN BUILD 3 3 9.715ms 25.805ms 7.77 MB 7.75 MB | 117:EXCHANGE 3 3 36.345us 38.898us 12 12 16.00 KB 16.00 KB BROADCAST | F02:EXCHANGE SENDER 1 1 219.140us 219.140us 76.78 KB 0 | 04:SCAN HDFS 1 1 18.124ms 18.124ms 12 12 29.05 KB 16.00 MB tpcds_parquet.store 05:HASH JOIN 3 12 34.855ms 94.457ms 59.29K 2.88M 59.12 KB 0 INNER JOIN, BROADCAST |--F86:JOIN BUILD 3 3 1.803ms 1.879ms 7.77 MB 7.75 MB | 116:EXCHANGE 3 3 62.683us 83.325us 31 7.30K 16.00 KB 215.48 KB BROADCAST | F01:EXCHANGE SENDER 1 1 21.524ms 21.524ms 22.57 KB 0 | 03:SCAN HDFS 1 1 46.331ms 46.331ms 31 7.30K 2.31 MB 16.00 MB tpcds_parquet.date_dim 02:SCAN HDFS 3 12 790.799ms 1s459ms 59.29K 2.88M 2.06 MB 16.00 MB tpcds_parquet.store_sales Errors: Query Compilation: 6s534ms - Metadata load started: 55.689ms (55.689ms) - Metadata load finished. loaded-tables=9/9 load-requests=1 catalog-updates=5 storage-load-time=1444ms: 5s881ms (5s826ms) - Analysis finished: 6s040ms (159.099ms) - Authorization finished (noop): 6s041ms (577.971us) - Value transfer graph computed: 6s065ms (23.626ms) - Single node plan created: 6s368ms (303.438ms) - Runtime filters computed: 6s388ms (19.576ms) - Distributed plan created: 6s389ms (1.456ms) - Parallel plans created: 6s392ms (2.378ms) - Planning finished: 6s534ms (142.320ms) Query Timeline: 1m10s - Query submitted: 34.849us (34.849us) - Planning finished: 6s589ms (6s589ms) - Submit for admission: 6s589ms (227.846us) - Completed admission: 6s633ms (43.774ms) - Ready to start on 3 backends: 6s639ms (6.483ms) - All 3 execution backends (314 fragment instances) started: 6s691ms (51.054ms) - Rows available: 1m9s (1m3s) - First row fetched: 1m10s (882.778ms) - Last row fetched: 1m10s (621.756us) - Released admission control resources: 1m10s (69.176ms) - Unregister query: 1m10s (86.641ms) - AdmissionControlTimeSinceLastUpdate: 93.000ms - ComputeScanRangeAssignmentTimer: 34.302ms Frontend: ImpalaServer: - ClientFetchWaitTimer: 885.997ms - NumRowsFetched: 44 (44) - NumRowsFetchedFromCache: 0 (0) - RowMaterializationRate: 287.00 /sec - RowMaterializationTimer: 153.208ms Execution Profile 50467cb8e73eeac4:853461b400000000:(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Number of filters: 30 Filter routing table: ID Src. Node Tgt. Node(s) Target type Partition filter Pending (Expected) First arrived Completed Enabled ------------------------------------------------------------------------------------------------------------------- 58 108 105 LOCAL false 0 (1) N/A N/A true 56 109 105 LOCAL false 0 (1) N/A N/A true 50 96 94 LOCAL false 0 (1) N/A N/A true 46 86 83 LOCAL false 0 (1) N/A N/A true 44 87 83 LOCAL false 0 (1) N/A N/A true 38 70 67 LOCAL false 0 (1) N/A N/A true 36 71 67 LOCAL false 0 (1) N/A N/A true 30 58 56 LOCAL false 0 (1) N/A N/A true 26 48 45 LOCAL false 0 (1) N/A N/A true 24 49 45 LOCAL false 0 (1) N/A N/A true 18 33 30 LOCAL false 0 (1) N/A N/A true 16 34 30 LOCAL false 0 (1) N/A N/A true 10 21 19 LOCAL false 0 (1) N/A N/A true 4 12 8 LOCAL false 0 (1) N/A N/A true 52 103 99 LOCAL false 0 (2) N/A N/A true 6 11 8 LOCAL false 0 (1) N/A N/A true 40 81 77 LOCAL false 0 (3) N/A N/A true 32 65 61 LOCAL false 0 (2) N/A N/A true 28 54 52 LOCAL false 0 (3) N/A N/A true 22 42 39 LOCAL true 0 (3) N/A N/A true 54 102 99 LOCAL false 0 (2) N/A N/A true 20 43 39 LOCAL false 0 (3) N/A N/A true 48 92 90 LOCAL false 0 (3) N/A N/A true 14 27 24 LOCAL false 0 (2) N/A N/A true 12 28 24 LOCAL false 0 (2) N/A N/A true 42 80 77 LOCAL true 0 (3) N/A N/A true 8 17 15 LOCAL false 0 (3) N/A N/A true 2 5 2 LOCAL true 0 (3) N/A N/A true 34 64 61 LOCAL false 0 (2) N/A N/A true 0 6 2 LOCAL false 0 (3) N/A N/A true Backend startup latencies: Count: 3, min / max: 8ms / 14ms, 25th %-ile: 8ms, 50th %-ile: 10ms, 75th %-ile: 10ms, 90th %-ile: 14ms, 95th %-ile: 14ms, 99.9th %-ile: 14ms Slowest backend to start up: tarmstrong-Precision-7540:22000 Final filter table: ID Src. Node Tgt. Node(s) Target type Partition filter Pending (Expected) First arrived Completed Enabled ------------------------------------------------------------------------------------------------------------------- 58 108 105 LOCAL false 0 (1) N/A N/A true 56 109 105 LOCAL false 0 (1) N/A N/A true 50 96 94 LOCAL false 0 (1) N/A N/A true 46 86 83 LOCAL false 0 (1) N/A N/A true 44 87 83 LOCAL false 0 (1) N/A N/A true 38 70 67 LOCAL false 0 (1) N/A N/A true 36 71 67 LOCAL false 0 (1) N/A N/A true 30 58 56 LOCAL false 0 (1) N/A N/A true 26 48 45 LOCAL false 0 (1) N/A N/A true 24 49 45 LOCAL false 0 (1) N/A N/A true 18 33 30 LOCAL false 0 (1) N/A N/A true 16 34 30 LOCAL false 0 (1) N/A N/A true 10 21 19 LOCAL false 0 (1) N/A N/A true 4 12 8 LOCAL false 0 (1) N/A N/A true 52 103 99 LOCAL false 0 (2) N/A N/A true 6 11 8 LOCAL false 0 (1) N/A N/A true 40 81 77 LOCAL false 0 (3) N/A N/A true 32 65 61 LOCAL false 0 (2) N/A N/A true 28 54 52 LOCAL false 0 (3) N/A N/A true 22 42 39 LOCAL true 0 (3) N/A N/A true 54 102 99 LOCAL false 0 (2) N/A N/A true 20 43 39 LOCAL false 0 (3) N/A N/A true 48 92 90 LOCAL false 0 (3) N/A N/A true 14 27 24 LOCAL false 0 (2) N/A N/A true 12 28 24 LOCAL false 0 (2) N/A N/A true 42 80 77 LOCAL true 0 (3) N/A N/A true 8 17 15 LOCAL false 0 (3) N/A N/A true 2 5 2 LOCAL true 0 (3) N/A N/A true 34 64 61 LOCAL false 0 (2) N/A N/A true 0 6 2 LOCAL false 0 (3) N/A N/A true Per Node Peak Memory Usage: tarmstrong-Precision-7540:22002(392.51 MB) tarmstrong-Precision-7540:22001(703.91 MB) tarmstrong-Precision-7540:22000(485.38 MB) Per Node Bytes Read: tarmstrong-Precision-7540:22002(7.69 MB) tarmstrong-Precision-7540:22001(172.17 MB) tarmstrong-Precision-7540:22000(77.68 MB) Per Node User Time: tarmstrong-Precision-7540:22002(10s023ms) tarmstrong-Precision-7540:22001(26s125ms) tarmstrong-Precision-7540:22000(13s984ms) Per Node System Time: tarmstrong-Precision-7540:22002(86.761ms) tarmstrong-Precision-7540:22001(284.811ms) tarmstrong-Precision-7540:22000(154.167ms) - ExchangeScanRatio: 0.00 - FiltersReceived: 0 (0) - FinalizationTimer: 0.000ns - InnerNodeSelectivityRatio: 0.37 - NumBackends: 3 (3) - NumCompletedBackends: 3 (3) - NumFragmentInstances: 314 (314) - NumFragments: 99 (99) - TotalBytesRead: 257.54 MB (270052940) - TotalBytesSent: 45.12 KB (46207) - TotalCpuTime: 50s659ms - TotalInnerBytesSent: 12.27 KB (12563) - TotalScanBytesSent: 32.86 KB (33644) Per Node Profiles: tarmstrong-Precision-7540:22002: Filter 42 arrival: 52ms Filter 28 arrival: 1s639ms Filter 20 arrival: 1s940ms Filter 22 arrival: 2s073ms Filter 0 arrival: 2s607ms Filter 2 arrival: 3s272ms Filter 8 arrival: 3s330ms - AdmissionSlots: 4 (4) - BloomFilterBytes: 9.00 MB (9437184) - ScratchBytesRead: 0 - ScratchBytesWritten: 0 - ScratchFileUsedBytes: 0 - ScratchReads: 0 (0) - ScratchWrites: 0 (0) - TotalEncryptionTime: 0.000ns - TotalReadBlockTime: 0.000ns - UncompressedScratchBytesWritten: 0 Buffer pool: - AllocTime: 109.502us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 9.00 MB (9437184) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 18.00 MB (18874368) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 9.00 MB (9437184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 18.00 MB (18874368) - SystemAllocTime: 91.789us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F75: CodeGen:(Total: 1s591ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 112 (112) - CodegenTotalWallClockTime: 1s591ms - CodegenSysTime: 0.000ns - CodegenUserTime: 332.080ms - CodegenVoluntaryContextSwitches: 22 (22) - CompileTime: 151.110ms - IrGenerationTime: 44.930ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 103 (103) - NumInstructions: 3.05K (3049) - OptimizationTime: 1s342ms - PeakMemoryUsage: 1.49 MB (1561088) - PrepareTime: 49.066ms Fragment F74: CodeGen:(Total: 2s266ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 179 (179) - CodegenTotalWallClockTime: 2s266ms - CodegenSysTime: 3.760ms - CodegenUserTime: 515.110ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 212.675ms - IrGenerationTime: 53.399ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 125 (125) - NumInstructions: 4.08K (4077) - OptimizationTime: 1s950ms - PeakMemoryUsage: 1.99 MB (2087424) - PrepareTime: 47.886ms Fragment F22: CodeGen:(Total: 3s851ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 1.08K (1079) - CodegenTotalWallClockTime: 3s851ms - CodegenSysTime: 12.136ms - CodegenUserTime: 995.113ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 84.148ms - IrGenerationTime: 222.651ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 3s406ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 133.003ms Fragment F00: CodeGen:(Total: 1s878ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 333 (333) - CodegenTotalWallClockTime: 1s878ms - CodegenSysTime: 0.000ns - CodegenUserTime: 465.621ms - CodegenVoluntaryContextSwitches: 22 (22) - CompileTime: 146.465ms - IrGenerationTime: 47.450ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s618ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 62.066ms Fragment F08: CodeGen:(Total: 1s328ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 250 (250) - CodegenTotalWallClockTime: 1s328ms - CodegenSysTime: 0.000ns - CodegenUserTime: 287.419ms - CodegenVoluntaryContextSwitches: 2 (2) - CompileTime: 113.870ms - IrGenerationTime: 56.060ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 1s083ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 63.912ms Fragment F47: CodeGen:(Total: 1s065ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 104 (104) - CodegenTotalWallClockTime: 1s065ms - CodegenSysTime: 3.817ms - CodegenUserTime: 266.415ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 150.073ms - IrGenerationTime: 72.317ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 79 (79) - NumInstructions: 2.63K (2630) - OptimizationTime: 790.616ms - PeakMemoryUsage: 1.28 MB (1346560) - PrepareTime: 51.208ms Fragment F46: CodeGen:(Total: 3s874ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 552 (552) - CodegenTotalWallClockTime: 3s874ms - CodegenSysTime: 0.000ns - CodegenUserTime: 993.444ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 117.225ms - IrGenerationTime: 106.927ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 3s596ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 52.142ms Fragment F24: CodeGen:(Total: 1s684ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 194 (194) - CodegenTotalWallClockTime: 1s684ms - CodegenSysTime: 0.000ns - CodegenUserTime: 458.912ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 137.502ms - IrGenerationTime: 28.429ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s464ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 52.115ms Fragment F32: CodeGen:(Total: 1s229ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 98 (98) - CodegenTotalWallClockTime: 1s229ms - CodegenSysTime: 0.000ns - CodegenUserTime: 284.995ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 141.464ms - IrGenerationTime: 39.246ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 1s012ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 20.934ms Fragment F72: CodeGen:(Total: 881.754ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 124 (124) - CodegenTotalWallClockTime: 881.744ms - CodegenSysTime: 0.000ns - CodegenUserTime: 182.929ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 69.950ms - IrGenerationTime: 16.331ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 62 (62) - NumInstructions: 1.74K (1743) - OptimizationTime: 727.196ms - PeakMemoryUsage: 871.50 KB (892416) - PrepareTime: 66.930ms Fragment F71: CodeGen:(Total: 3s352ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 275 (275) - CodegenTotalWallClockTime: 3s352ms - CodegenSysTime: 3.839ms - CodegenUserTime: 978.986ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 86.679ms - IrGenerationTime: 164.320ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 3s007ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 92.416ms Fragment F49: CodeGen:(Total: 2s028ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 248 (248) - CodegenTotalWallClockTime: 2s028ms - CodegenSysTime: 0.000ns - CodegenUserTime: 466.123ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 126.057ms - IrGenerationTime: 94.669ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s697ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 108.607ms Fragment F57: CodeGen:(Total: 1s456ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 98 (98) - CodegenTotalWallClockTime: 1s456ms - CodegenSysTime: 0.000ns - CodegenUserTime: 292.955ms - CodegenVoluntaryContextSwitches: 4 (4) - CompileTime: 159.457ms - IrGenerationTime: 112.183ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 1s054ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 129.421ms Fragment F77: CodeGen:(Total: 1s175ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 98 (98) - CodegenTotalWallClockTime: 1s175ms - CodegenSysTime: 0.000ns - CodegenUserTime: 232.868ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 125.689ms - IrGenerationTime: 49.449ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 812.995ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 159.820ms Fragment F80: CodeGen:(Total: 112.309ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 9 (9) - CodegenTotalWallClockTime: 112.302ms - CodegenSysTime: 0.000ns - CodegenUserTime: 21.401ms - CodegenVoluntaryContextSwitches: 1 (1) - CompileTime: 0.000ns - IrGenerationTime: 3.267us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 112.297ms Fragment F82: CodeGen:(Total: 1s101ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 79 (79) - CodegenTotalWallClockTime: 1s101ms - CodegenSysTime: 0.000ns - CodegenUserTime: 232.465ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 152.954ms - IrGenerationTime: 55.208ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 826.300ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 49.934ms Fragment F85: CodeGen:(Total: 731.671ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 45 (45) - CodegenTotalWallClockTime: 731.656ms - CodegenSysTime: 0.000ns - CodegenUserTime: 158.427ms - CodegenVoluntaryContextSwitches: 2 (2) - CompileTime: 120.273ms - IrGenerationTime: 46.538ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 505.022ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 58.276ms Fragment F86: CodeGen:(Total: 810.270ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 49 (49) - CodegenTotalWallClockTime: 810.260ms - CodegenSysTime: 3.779ms - CodegenUserTime: 154.885ms - CodegenVoluntaryContextSwitches: 2 (2) - CompileTime: 73.750ms - IrGenerationTime: 75.900ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 536.937ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 122.511ms Fragment F87: CodeGen:(Total: 768.146ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 83 (83) - CodegenTotalWallClockTime: 768.135ms - CodegenSysTime: 3.913ms - CodegenUserTime: 152.531ms - CodegenVoluntaryContextSwitches: 4 (4) - CompileTime: 37.633ms - IrGenerationTime: 7.962ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 540.772ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 136.410ms Fragment F90: CodeGen:(Total: 1s035ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 62 (62) - CodegenTotalWallClockTime: 1s035ms - CodegenSysTime: 0.000ns - CodegenUserTime: 231.058ms - CodegenVoluntaryContextSwitches: 8 (8) - CompileTime: 19.973ms - IrGenerationTime: 84.104ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 876.708ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 52.891ms Fragment F93: CodeGen:(Total: 92.238ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 9 (9) - CodegenTotalWallClockTime: 92.231ms - CodegenSysTime: 3.262ms - CodegenUserTime: 15.831ms - CodegenVoluntaryContextSwitches: 0 (0) - CompileTime: 0.000ns - IrGenerationTime: 2.986us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 92.226ms Fragment F95: CodeGen:(Total: 694.521ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 93 (93) - CodegenTotalWallClockTime: 694.512ms - CodegenSysTime: 3.482ms - CodegenUserTime: 226.186ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 34.132ms - IrGenerationTime: 31.962ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 606.400ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 20.626ms Fragment F98: CodeGen:(Total: 807.460ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 66 (66) - CodegenTotalWallClockTime: 807.450ms - CodegenSysTime: 3.946ms - CodegenUserTime: 149.877ms - CodegenVoluntaryContextSwitches: 3 (3) - CompileTime: 57.185ms - IrGenerationTime: 85.124ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 566.869ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 97.061ms Fragment F99: CodeGen:(Total: 305.553ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 450 (450) - CodegenTotalWallClockTime: 305.542ms - CodegenSysTime: 0.000ns - CodegenUserTime: 157.007ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 15.458ms - IrGenerationTime: 9.392ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 255.601ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 23.242ms Fragment F100: CodeGen:(Total: 330.692ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 263 (263) - CodegenTotalWallClockTime: 330.683ms - CodegenSysTime: 3.986ms - CodegenUserTime: 151.173ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 17.736ms - IrGenerationTime: 8.819ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 281.621ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 21.280ms Fragment F103: CodeGen:(Total: 614.996ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 153 (153) - CodegenTotalWallClockTime: 614.987ms - CodegenSysTime: 3.939ms - CodegenUserTime: 224.517ms - CodegenVoluntaryContextSwitches: 4 (4) - CompileTime: 114.208ms - IrGenerationTime: 12.324ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 466.695ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 20.427ms Fragment F106: CodeGen:(Total: 21.495ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 5 (5) - CodegenTotalWallClockTime: 21.489ms - CodegenSysTime: 0.000ns - CodegenUserTime: 20.268ms - CodegenVoluntaryContextSwitches: 3 (3) - CompileTime: 0.000ns - IrGenerationTime: 3.104us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 21.484ms Fragment F108: CodeGen:(Total: 579.639ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 86 (86) - CodegenTotalWallClockTime: 579.630ms - CodegenSysTime: 7.709ms - CodegenUserTime: 219.545ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 61.402ms - IrGenerationTime: 12.193ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 483.594ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 21.135ms Fragment F111: CodeGen:(Total: 294.244ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 79 (79) - CodegenTotalWallClockTime: 294.234ms - CodegenSysTime: 0.000ns - CodegenUserTime: 151.445ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 21.668ms - IrGenerationTime: 8.439ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 242.146ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 20.758ms Fragment F112: CodeGen:(Total: 308.455ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 92 (92) - CodegenTotalWallClockTime: 308.445ms - CodegenSysTime: 7.220ms - CodegenUserTime: 137.140ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 53.806ms - IrGenerationTime: 7.073ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 232.485ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 13.822ms Fragment F113: CodeGen:(Total: 339.492ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 81 (81) - CodegenTotalWallClockTime: 339.483ms - CodegenSysTime: 0.000ns - CodegenUserTime: 152.749ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 15.531ms - IrGenerationTime: 8.370ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 290.951ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 23.365ms tarmstrong-Precision-7540:22001: Filter 56 arrival: 725ms Filter 58 arrival: 865ms Filter 44 arrival: 792ms Filter 50 arrival: 1s049ms Filter 52 arrival: 37ms Filter 46 arrival: 1s184ms Filter 36 arrival: 908ms Filter 38 arrival: 942ms Filter 4 arrival: 818ms Filter 30 arrival: 1s096ms Filter 6 arrival: 1s115ms Filter 54 arrival: 1s302ms Filter 0 arrival: 1s281ms Filter 16 arrival: 761ms Filter 10 arrival: 1s035ms Filter 12 arrival: 1s365ms Filter 2 arrival: 1s518ms Filter 18 arrival: 969ms Filter 8 arrival: 1s454ms Filter 14 arrival: 1s535ms Filter 24 arrival: 736ms - AdmissionSlots: 4 (4) - BloomFilterBytes: 30.00 MB (31457280) - ScratchBytesRead: 0 - ScratchBytesWritten: 0 - ScratchFileUsedBytes: 0 - ScratchReads: 0 (0) - ScratchWrites: 0 (0) - TotalEncryptionTime: 0.000ns - TotalReadBlockTime: 0.000ns - UncompressedScratchBytesWritten: 0 Buffer pool: - AllocTime: 39.165ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 30.00 MB (31457280) - CumulativeAllocations: 30 (30) - EncryptionTime: 0.000ns - PeakReservation: 60.00 MB (62914560) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 30.00 MB (31457280) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 60.00 MB (62914560) - SystemAllocTime: 39.077ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F75: CodeGen:(Total: 1s447ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 107 (107) - CodegenTotalWallClockTime: 1s447ms - CodegenSysTime: 0.000ns - CodegenUserTime: 325.670ms - CodegenVoluntaryContextSwitches: 17 (17) - CompileTime: 71.756ms - IrGenerationTime: 60.492ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 103 (103) - NumInstructions: 3.05K (3049) - OptimizationTime: 1s211ms - PeakMemoryUsage: 1.49 MB (1561088) - PrepareTime: 101.395ms Fragment F74: CodeGen:(Total: 1s922ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 196 (196) - CodegenTotalWallClockTime: 1s922ms - CodegenSysTime: 0.000ns - CodegenUserTime: 527.503ms - CodegenVoluntaryContextSwitches: 29 (29) - CompileTime: 151.582ms - IrGenerationTime: 164.745ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 125 (125) - NumInstructions: 4.08K (4077) - OptimizationTime: 1s483ms - PeakMemoryUsage: 1.99 MB (2087424) - PrepareTime: 121.130ms Fragment F22: CodeGen:(Total: 2s312ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 382 (382) - CodegenTotalWallClockTime: 2s312ms - CodegenSysTime: 11.401ms - CodegenUserTime: 931.109ms - CodegenVoluntaryContextSwitches: 23 (23) - CompileTime: 79.112ms - IrGenerationTime: 183.225ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 1s950ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 91.888ms Fragment F00: CodeGen:(Total: 1s716ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 276 (276) - CodegenTotalWallClockTime: 1s716ms - CodegenSysTime: 3.961ms - CodegenUserTime: 462.385ms - CodegenVoluntaryContextSwitches: 27 (27) - CompileTime: 34.673ms - IrGenerationTime: 161.239ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s422ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 96.308ms Fragment F08: CodeGen:(Total: 1s175ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 314 (314) - CodegenTotalWallClockTime: 1s175ms - CodegenSysTime: 6.897ms - CodegenUserTime: 290.052ms - CodegenVoluntaryContextSwitches: 24 (24) - CompileTime: 122.344ms - IrGenerationTime: 88.676ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 857.860ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 104.847ms Fragment F14: CodeGen:(Total: 1s671ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 158 (158) - CodegenTotalWallClockTime: 1s671ms - CodegenSysTime: 0.000ns - CodegenUserTime: 462.100ms - CodegenVoluntaryContextSwitches: 23 (23) - CompileTime: 76.635ms - IrGenerationTime: 106.058ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s422ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 65.430ms Fragment F47: CodeGen:(Total: 1s064ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 154 (154) - CodegenTotalWallClockTime: 1s064ms - CodegenSysTime: 12.017ms - CodegenUserTime: 262.669ms - CodegenVoluntaryContextSwitches: 17 (17) - CompileTime: 70.507ms - IrGenerationTime: 81.192ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 79 (79) - NumInstructions: 2.63K (2630) - OptimizationTime: 836.204ms - PeakMemoryUsage: 1.28 MB (1346560) - PrepareTime: 69.174ms Fragment F46: CodeGen:(Total: 2s148ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 308 (308) - CodegenTotalWallClockTime: 2s148ms - CodegenSysTime: 8.153ms - CodegenUserTime: 846.892ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 51.170ms - IrGenerationTime: 199.095ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 1s820ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 75.952ms Fragment F24: CodeGen:(Total: 1s653ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 424 (424) - CodegenTotalWallClockTime: 1s653ms - CodegenSysTime: 10.420ms - CodegenUserTime: 464.272ms - CodegenVoluntaryContextSwitches: 18 (18) - CompileTime: 37.791ms - IrGenerationTime: 103.960ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s407ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 102.972ms Fragment F32: CodeGen:(Total: 1s167ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 218 (218) - CodegenTotalWallClockTime: 1s167ms - CodegenSysTime: 4.570ms - CodegenUserTime: 289.658ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 50.429ms - IrGenerationTime: 55.993ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 947.897ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 110.824ms Fragment F38: CodeGen:(Total: 1s827ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 273 (273) - CodegenTotalWallClockTime: 1s827ms - CodegenSysTime: 0.000ns - CodegenUserTime: 468.215ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 97.616ms - IrGenerationTime: 119.487ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s498ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 89.837ms Fragment F72: CodeGen:(Total: 804.444ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 94 (94) - CodegenTotalWallClockTime: 804.431ms - CodegenSysTime: 3.740ms - CodegenUserTime: 186.969ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 39.561ms - IrGenerationTime: 33.378ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 62 (62) - NumInstructions: 1.74K (1743) - OptimizationTime: 620.803ms - PeakMemoryUsage: 871.50 KB (892416) - PrepareTime: 71.227ms Fragment F71: CodeGen:(Total: 2s686ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 537 (537) - CodegenTotalWallClockTime: 2s686ms - CodegenSysTime: 8.109ms - CodegenUserTime: 969.066ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 68.639ms - IrGenerationTime: 238.556ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 2s256ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 112.699ms Fragment F49: CodeGen:(Total: 1s996ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 108 (108) - CodegenTotalWallClockTime: 1s996ms - CodegenSysTime: 0.000ns - CodegenUserTime: 460.680ms - CodegenVoluntaryContextSwitches: 32 (32) - CompileTime: 92.668ms - IrGenerationTime: 93.428ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s718ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 90.373ms Fragment F57: CodeGen:(Total: 1s344ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 94 (94) - CodegenTotalWallClockTime: 1s344ms - CodegenSysTime: 0.000ns - CodegenUserTime: 292.866ms - CodegenVoluntaryContextSwitches: 29 (29) - CompileTime: 80.133ms - IrGenerationTime: 40.377ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 1s049ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 152.522ms Fragment F63: CodeGen:(Total: 2s372ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 504 (504) - CodegenTotalWallClockTime: 2s372ms - CodegenSysTime: 0.000ns - CodegenUserTime: 483.583ms - CodegenVoluntaryContextSwitches: 39 (39) - CompileTime: 129.461ms - IrGenerationTime: 74.821ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 2s012ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 147.220ms Fragment F77: CodeGen:(Total: 1s007ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 195 (195) - CodegenTotalWallClockTime: 1s007ms - CodegenSysTime: 6.841ms - CodegenUserTime: 228.016ms - CodegenVoluntaryContextSwitches: 41 (41) - CompileTime: 89.613ms - IrGenerationTime: 80.668ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 687.008ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 111.258ms Fragment F04: CodeGen:(Total: 1s959ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 100 (100) - CodegenTotalWallClockTime: 1s959ms - CodegenSysTime: 4.091ms - CodegenUserTime: 457.907ms - CodegenVoluntaryContextSwitches: 46 (46) - CompileTime: 164.245ms - IrGenerationTime: 65.094ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s618ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 109.594ms Fragment F78: CodeGen:(Total: 827.441ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 371 (371) - CodegenTotalWallClockTime: 827.428ms - CodegenSysTime: 0.000ns - CodegenUserTime: 167.105ms - CodegenVoluntaryContextSwitches: 23 (23) - CompileTime: 66.526ms - IrGenerationTime: 73.845ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 573.616ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 111.940ms Fragment F06: CodeGen:(Total: 199.229ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 4 (4) - CodegenTotalWallClockTime: 199.219ms - CodegenSysTime: 0.000ns - CodegenUserTime: 35.370ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 2.007ms - IrGenerationTime: 737.775us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 36.667ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 158.488ms Fragment F79: CodeGen:(Total: 775.106ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 154 (154) - CodegenTotalWallClockTime: 775.093ms - CodegenSysTime: 0.000ns - CodegenUserTime: 159.465ms - CodegenVoluntaryContextSwitches: 23 (23) - CompileTime: 53.488ms - IrGenerationTime: 54.409ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 538.111ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 116.105ms Fragment F05: CodeGen:(Total: 965.368ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 141 (141) - CodegenTotalWallClockTime: 965.356ms - CodegenSysTime: 0.000ns - CodegenUserTime: 193.271ms - CodegenVoluntaryContextSwitches: 26 (26) - CompileTime: 112.317ms - IrGenerationTime: 27.322ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 673.873ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 134.466ms Fragment F80: CodeGen:(Total: 70.285ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 4 (4) - CodegenTotalWallClockTime: 70.277ms - CodegenSysTime: 0.000ns - CodegenUserTime: 18.877ms - CodegenVoluntaryContextSwitches: 3 (3) - CompileTime: 0.000ns - IrGenerationTime: 3.665us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 70.271ms Fragment F11: CodeGen:(Total: 933.535ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 46 (46) - CodegenTotalWallClockTime: 933.525ms - CodegenSysTime: 0.000ns - CodegenUserTime: 206.190ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 55.544ms - IrGenerationTime: 30.512ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 63 (63) - NumInstructions: 2.22K (2220) - OptimizationTime: 750.238ms - PeakMemoryUsage: 1.08 MB (1136640) - PrepareTime: 86.385ms Fragment F81: CodeGen:(Total: 761.091ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 124 (124) - CodegenTotalWallClockTime: 761.080ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.842ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 57.112ms - IrGenerationTime: 30.813ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 579.745ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 92.079ms Fragment F12: CodeGen:(Total: 819.045ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 37 (37) - CodegenTotalWallClockTime: 819.033ms - CodegenSysTime: 0.000ns - CodegenUserTime: 182.956ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 64.564ms - IrGenerationTime: 42.003ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 648.423ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 62.811ms Fragment F82: CodeGen:(Total: 818.885ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 77 (77) - CodegenTotalWallClockTime: 818.872ms - CodegenSysTime: 0.000ns - CodegenUserTime: 230.422ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 59.528ms - IrGenerationTime: 41.358ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 652.546ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 64.100ms Fragment F18: CodeGen:(Total: 1s547ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 337 (337) - CodegenTotalWallClockTime: 1s547ms - CodegenSysTime: 4.122ms - CodegenUserTime: 465.469ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 33.540ms - IrGenerationTime: 96.558ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s326ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 64.870ms Fragment F83: CodeGen:(Total: 747.310ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 59 (59) - CodegenTotalWallClockTime: 747.301ms - CodegenSysTime: 0.000ns - CodegenUserTime: 156.060ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 65.621ms - IrGenerationTime: 44.889ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 563.925ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 71.480ms Fragment F20: CodeGen:(Total: 154.716ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 8 (8) - CodegenTotalWallClockTime: 154.705ms - CodegenSysTime: 0.000ns - CodegenUserTime: 35.935ms - CodegenVoluntaryContextSwitches: 1 (1) - CompileTime: 2.007ms - IrGenerationTime: 705.594us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 55.153ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 78.055ms Fragment F84: CodeGen:(Total: 813.087ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 170 (170) - CodegenTotalWallClockTime: 813.077ms - CodegenSysTime: 0.000ns - CodegenUserTime: 157.623ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 60.341ms - IrGenerationTime: 45.359ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 603.554ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 98.334ms Fragment F19: CodeGen:(Total: 810.827ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 40 (40) - CodegenTotalWallClockTime: 810.815ms - CodegenSysTime: 0.000ns - CodegenUserTime: 183.562ms - CodegenVoluntaryContextSwitches: 12 (12) - CompileTime: 27.662ms - IrGenerationTime: 12.902ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 644.565ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 107.932ms Fragment F85: CodeGen:(Total: 659.666ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 27 (27) - CodegenTotalWallClockTime: 659.655ms - CodegenSysTime: 0.000ns - CodegenUserTime: 149.411ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 75.143ms - IrGenerationTime: 39.358ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 480.831ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 62.840ms Fragment F02: CodeGen:(Total: 205.822ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 7 (7) - CodegenTotalWallClockTime: 205.814ms - CodegenSysTime: 0.000ns - CodegenUserTime: 37.244ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 38.060ms - IrGenerationTime: 649.949us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 38.923ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 127.038ms Fragment F86: CodeGen:(Total: 676.218ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 45 (45) - CodegenTotalWallClockTime: 676.209ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.307ms - CodegenVoluntaryContextSwitches: 8 (8) - CompileTime: 48.136ms - IrGenerationTime: 39.225ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 494.291ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 93.167ms Fragment F01: CodeGen:(Total: 775.418ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 145 (145) - CodegenTotalWallClockTime: 775.406ms - CodegenSysTime: 4.058ms - CodegenUserTime: 190.571ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 45.639ms - IrGenerationTime: 30.918ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 603.239ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 94.156ms Fragment F87: CodeGen:(Total: 706.851ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 38 (38) - CodegenTotalWallClockTime: 706.841ms - CodegenSysTime: 4.322ms - CodegenUserTime: 146.960ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 43.502ms - IrGenerationTime: 67.001ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 498.210ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 95.612ms Fragment F09: CodeGen:(Total: 747.069ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 38 (38) - CodegenTotalWallClockTime: 747.058ms - CodegenSysTime: 0.000ns - CodegenUserTime: 186.560ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 61.337ms - IrGenerationTime: 21.847ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 561.140ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 84.827ms Fragment F88: CodeGen:(Total: 707.695ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 90 (90) - CodegenTotalWallClockTime: 707.682ms - CodegenSysTime: 0.000ns - CodegenUserTime: 158.291ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 77.220ms - IrGenerationTime: 27.620ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 471.797ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 118.396ms Fragment F16: CodeGen:(Total: 155.089ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 5 (5) - CodegenTotalWallClockTime: 155.082ms - CodegenSysTime: 0.000ns - CodegenUserTime: 32.881ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 2.112ms - IrGenerationTime: 601.546us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 51.772ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 99.078ms Fragment F89: CodeGen:(Total: 642.967ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 57 (57) - CodegenTotalWallClockTime: 642.956ms - CodegenSysTime: 0.000ns - CodegenUserTime: 157.002ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 44.489ms - IrGenerationTime: 31.681ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 469.628ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 95.653ms Fragment F15: CodeGen:(Total: 765.875ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 57 (57) - CodegenTotalWallClockTime: 765.864ms - CodegenSysTime: 0.000ns - CodegenUserTime: 188.256ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 67.202ms - IrGenerationTime: 42.791ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 559.172ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 95.299ms Fragment F90: CodeGen:(Total: 935.458ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 251 (251) - CodegenTotalWallClockTime: 935.446ms - CodegenSysTime: 4.010ms - CodegenUserTime: 240.450ms - CodegenVoluntaryContextSwitches: 16 (16) - CompileTime: 69.327ms - IrGenerationTime: 57.214ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 737.065ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 70.370ms Fragment F28: CodeGen:(Total: 1s192ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 256 (256) - CodegenTotalWallClockTime: 1s192ms - CodegenSysTime: 0.000ns - CodegenUserTime: 470.980ms - CodegenVoluntaryContextSwitches: 2 (2) - CompileTime: 33.890ms - IrGenerationTime: 90.866ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 961.881ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 99.420ms Fragment F91: CodeGen:(Total: 692.956ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 156 (156) - CodegenTotalWallClockTime: 692.947ms - CodegenSysTime: 3.704ms - CodegenUserTime: 158.706ms - CodegenVoluntaryContextSwitches: 0 (0) - CompileTime: 55.019ms - IrGenerationTime: 26.049ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 509.074ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 101.027ms Fragment F30: CodeGen:(Total: 153.164ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 21 (21) - CodegenTotalWallClockTime: 153.157ms - CodegenSysTime: 0.000ns - CodegenUserTime: 37.811ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 14.703ms - IrGenerationTime: 703.536us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 51.247ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 85.225ms Fragment F92: CodeGen:(Total: 742.490ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 83 (83) - CodegenTotalWallClockTime: 742.479ms - CodegenSysTime: 0.000ns - CodegenUserTime: 157.514ms - CodegenVoluntaryContextSwitches: 25 (25) - CompileTime: 40.766ms - IrGenerationTime: 26.834ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 518.930ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 145.962ms Fragment F29: CodeGen:(Total: 956.459ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 143 (143) - CodegenTotalWallClockTime: 956.450ms - CodegenSysTime: 9.953ms - CodegenUserTime: 181.119ms - CodegenVoluntaryContextSwitches: 24 (24) - CompileTime: 57.787ms - IrGenerationTime: 36.233ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 706.719ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 154.553ms Fragment F93: CodeGen:(Total: 153.030ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 16 (16) - CodegenTotalWallClockTime: 153.024ms - CodegenSysTime: 0.000ns - CodegenUserTime: 19.723ms - CodegenVoluntaryContextSwitches: 12 (12) - CompileTime: 0.000ns - IrGenerationTime: 3.732us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 153.017ms Fragment F35: CodeGen:(Total: 1s066ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 163 (163) - CodegenTotalWallClockTime: 1s066ms - CodegenSysTime: 4.620ms - CodegenUserTime: 217.089ms - CodegenVoluntaryContextSwitches: 33 (33) - CompileTime: 71.644ms - IrGenerationTime: 80.545ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 63 (63) - NumInstructions: 2.22K (2220) - OptimizationTime: 719.172ms - PeakMemoryUsage: 1.08 MB (1136640) - PrepareTime: 182.623ms Fragment F94: CodeGen:(Total: 849.582ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 109 (109) - CodegenTotalWallClockTime: 849.569ms - CodegenSysTime: 0.000ns - CodegenUserTime: 159.326ms - CodegenVoluntaryContextSwitches: 28 (28) - CompileTime: 49.664ms - IrGenerationTime: 24.063ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 588.538ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 183.471ms Fragment F36: CodeGen:(Total: 1s020ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 92 (92) - CodegenTotalWallClockTime: 1s020ms - CodegenSysTime: 0.000ns - CodegenUserTime: 191.897ms - CodegenVoluntaryContextSwitches: 21 (21) - CompileTime: 76.016ms - IrGenerationTime: 10.586ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 745.969ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 167.561ms Fragment F95: CodeGen:(Total: 1s388ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 129 (129) - CodegenTotalWallClockTime: 1s388ms - CodegenSysTime: 0.000ns - CodegenUserTime: 238.250ms - CodegenVoluntaryContextSwitches: 46 (46) - CompileTime: 93.656ms - IrGenerationTime: 73.162ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 1s040ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 145.443ms Fragment F42: CodeGen:(Total: 2s091ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 232 (232) - CodegenTotalWallClockTime: 2s091ms - CodegenSysTime: 0.000ns - CodegenUserTime: 467.191ms - CodegenVoluntaryContextSwitches: 52 (52) - CompileTime: 134.045ms - IrGenerationTime: 74.669ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s690ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 190.589ms Fragment F96: CodeGen:(Total: 905.154ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 102 (102) - CodegenTotalWallClockTime: 905.144ms - CodegenSysTime: 3.728ms - CodegenUserTime: 156.587ms - CodegenVoluntaryContextSwitches: 30 (30) - CompileTime: 52.369ms - IrGenerationTime: 46.018ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 652.412ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 149.614ms Fragment F44: CodeGen:(Total: 206.103ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 8 (8) - CodegenTotalWallClockTime: 206.093ms - CodegenSysTime: 0.000ns - CodegenUserTime: 37.835ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 53.744ms - IrGenerationTime: 721.040us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 41.692ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 108.630ms Fragment F97: CodeGen:(Total: 600.967ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 49 (49) - CodegenTotalWallClockTime: 600.957ms - CodegenSysTime: 0.000ns - CodegenUserTime: 156.342ms - CodegenVoluntaryContextSwitches: 25 (25) - CompileTime: 102.244ms - IrGenerationTime: 7.725ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 401.024ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 88.512ms Fragment F43: CodeGen:(Total: 932.212ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 190 (190) - CodegenTotalWallClockTime: 932.187ms - CodegenSysTime: 3.509ms - CodegenUserTime: 189.459ms - CodegenVoluntaryContextSwitches: 21 (21) - CompileTime: 70.691ms - IrGenerationTime: 14.822ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 697.866ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 147.172ms Fragment F98: CodeGen:(Total: 967.461ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 184 (184) - CodegenTotalWallClockTime: 967.451ms - CodegenSysTime: 0.000ns - CodegenUserTime: 160.898ms - CodegenVoluntaryContextSwitches: 43 (43) - CompileTime: 69.350ms - IrGenerationTime: 39.547ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 695.024ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 108.161ms Fragment F26: CodeGen:(Total: 215.168ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 20 (20) - CodegenTotalWallClockTime: 215.158ms - CodegenSysTime: 0.000ns - CodegenUserTime: 38.755ms - CodegenVoluntaryContextSwitches: 12 (12) - CompileTime: 19.760ms - IrGenerationTime: 688.959us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 46.481ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 120.637ms Fragment F99: CodeGen:(Total: 934.688ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 189 (189) - CodegenTotalWallClockTime: 934.679ms - CodegenSysTime: 4.410ms - CodegenUserTime: 154.097ms - CodegenVoluntaryContextSwitches: 38 (38) - CompileTime: 68.817ms - IrGenerationTime: 36.790ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 692.113ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 135.779ms Fragment F25: CodeGen:(Total: 1s120ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 107 (107) - CodegenTotalWallClockTime: 1s120ms - CodegenSysTime: 0.000ns - CodegenUserTime: 193.194ms - CodegenVoluntaryContextSwitches: 43 (43) - CompileTime: 100.996ms - IrGenerationTime: 75.236ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 864.902ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 73.539ms Fragment F100: CodeGen:(Total: 935.808ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 49 (49) - CodegenTotalWallClockTime: 935.797ms - CodegenSysTime: 11.197ms - CodegenUserTime: 148.641ms - CodegenVoluntaryContextSwitches: 51 (51) - CompileTime: 106.062ms - IrGenerationTime: 78.062ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 632.995ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 116.999ms Fragment F33: CodeGen:(Total: 970.213ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 58 (58) - CodegenTotalWallClockTime: 970.204ms - CodegenSysTime: 0.000ns - CodegenUserTime: 190.708ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 122.438ms - IrGenerationTime: 29.210ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 737.351ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 79.837ms Fragment F101: CodeGen:(Total: 861.821ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 129 (129) - CodegenTotalWallClockTime: 861.810ms - CodegenSysTime: 0.000ns - CodegenUserTime: 159.596ms - CodegenVoluntaryContextSwitches: 52 (52) - CompileTime: 81.254ms - IrGenerationTime: 15.278ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 669.295ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 94.697ms Fragment F40: CodeGen:(Total: 172.896ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 11 (11) - CodegenTotalWallClockTime: 172.887ms - CodegenSysTime: 0.000ns - CodegenUserTime: 38.048ms - CodegenVoluntaryContextSwitches: 18 (18) - CompileTime: 47.812ms - IrGenerationTime: 753.263us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 40.009ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 83.229ms Fragment F102: CodeGen:(Total: 896.284ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 196 (196) - CodegenTotalWallClockTime: 896.272ms - CodegenSysTime: 0.000ns - CodegenUserTime: 162.743ms - CodegenVoluntaryContextSwitches: 48 (48) - CompileTime: 59.637ms - IrGenerationTime: 42.010ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 704.592ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 88.708ms Fragment F39: CodeGen:(Total: 1s047ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 109 (109) - CodegenTotalWallClockTime: 1s047ms - CodegenSysTime: 3.927ms - CodegenUserTime: 188.277ms - CodegenVoluntaryContextSwitches: 34 (34) - CompileTime: 125.881ms - IrGenerationTime: 62.065ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 791.589ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 59.061ms Fragment F103: CodeGen:(Total: 1s136ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 157 (157) - CodegenTotalWallClockTime: 1s136ms - CodegenSysTime: 8.663ms - CodegenUserTime: 225.141ms - CodegenVoluntaryContextSwitches: 29 (29) - CompileTime: 113.639ms - IrGenerationTime: 50.019ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 921.087ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 50.320ms Fragment F53: CodeGen:(Total: 2s098ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 193 (193) - CodegenTotalWallClockTime: 2s098ms - CodegenSysTime: 0.000ns - CodegenUserTime: 464.131ms - CodegenVoluntaryContextSwitches: 65 (65) - CompileTime: 172.438ms - IrGenerationTime: 108.263ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s725ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 86.610ms Fragment F104: CodeGen:(Total: 740.966ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 47 (47) - CodegenTotalWallClockTime: 740.955ms - CodegenSysTime: 12.753ms - CodegenUserTime: 144.307ms - CodegenVoluntaryContextSwitches: 34 (34) - CompileTime: 27.234ms - IrGenerationTime: 25.707ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 568.336ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 94.311ms Fragment F55: CodeGen:(Total: 149.341ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 15 (15) - CodegenTotalWallClockTime: 149.334ms - CodegenSysTime: 0.000ns - CodegenUserTime: 35.879ms - CodegenVoluntaryContextSwitches: 8 (8) - CompileTime: 2.145ms - IrGenerationTime: 742.007us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 16.871ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 106.000ms Fragment F105: CodeGen:(Total: 925.379ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 103 (103) - CodegenTotalWallClockTime: 925.370ms - CodegenSysTime: 8.999ms - CodegenUserTime: 148.391ms - CodegenVoluntaryContextSwitches: 37 (37) - CompileTime: 153.195ms - IrGenerationTime: 38.976ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 641.747ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 82.364ms Fragment F54: CodeGen:(Total: 1s125ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 168 (168) - CodegenTotalWallClockTime: 1s125ms - CodegenSysTime: 6.887ms - CodegenUserTime: 185.672ms - CodegenVoluntaryContextSwitches: 24 (24) - CompileTime: 111.024ms - IrGenerationTime: 54.775ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 857.384ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 93.600ms Fragment F106: CodeGen:(Total: 139.159ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 10 (10) - CodegenTotalWallClockTime: 139.150ms - CodegenSysTime: 0.000ns - CodegenUserTime: 18.670ms - CodegenVoluntaryContextSwitches: 12 (12) - CompileTime: 0.000ns - IrGenerationTime: 3.731us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 139.145ms Fragment F60: CodeGen:(Total: 1s108ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 211 (211) - CodegenTotalWallClockTime: 1s108ms - CodegenSysTime: 10.394ms - CodegenUserTime: 207.841ms - CodegenVoluntaryContextSwitches: 26 (26) - CompileTime: 105.395ms - IrGenerationTime: 71.999ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 63 (63) - NumInstructions: 2.22K (2220) - OptimizationTime: 870.673ms - PeakMemoryUsage: 1.08 MB (1136640) - PrepareTime: 58.814ms Fragment F107: CodeGen:(Total: 615.268ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 98 (98) - CodegenTotalWallClockTime: 615.256ms - CodegenSysTime: 4.184ms - CodegenUserTime: 150.083ms - CodegenVoluntaryContextSwitches: 32 (32) - CompileTime: 50.683ms - IrGenerationTime: 32.009ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 440.013ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 82.968ms Fragment F61: CodeGen:(Total: 946.920ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 67 (67) - CodegenTotalWallClockTime: 946.909ms - CodegenSysTime: 0.000ns - CodegenUserTime: 188.374ms - CodegenVoluntaryContextSwitches: 26 (26) - CompileTime: 155.658ms - IrGenerationTime: 37.650ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 694.763ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 57.420ms Fragment F108: CodeGen:(Total: 1s178ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 169 (169) - CodegenTotalWallClockTime: 1s178ms - CodegenSysTime: 0.000ns - CodegenUserTime: 238.870ms - CodegenVoluntaryContextSwitches: 26 (26) - CompileTime: 147.361ms - IrGenerationTime: 30.703ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 906.835ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 86.864ms Fragment F67: CodeGen:(Total: 2s124ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 435 (435) - CodegenTotalWallClockTime: 2s124ms - CodegenSysTime: 0.000ns - CodegenUserTime: 470.704ms - CodegenVoluntaryContextSwitches: 32 (32) - CompileTime: 143.307ms - IrGenerationTime: 49.485ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s870ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 60.221ms Fragment F109: CodeGen:(Total: 739.753ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 155 (155) - CodegenTotalWallClockTime: 739.742ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.401ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 86.711ms - IrGenerationTime: 20.848ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 568.749ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 62.067ms Fragment F69: CodeGen:(Total: 108.215ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 21 (21) - CodegenTotalWallClockTime: 108.205ms - CodegenSysTime: 0.000ns - CodegenUserTime: 34.876ms - CodegenVoluntaryContextSwitches: 0 (0) - CompileTime: 2.142ms - IrGenerationTime: 650.189us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 31.443ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 72.808ms Fragment F110: CodeGen:(Total: 544.064ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 40 (40) - CodegenTotalWallClockTime: 544.049ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.878ms - CodegenVoluntaryContextSwitches: 22 (22) - CompileTime: 79.197ms - IrGenerationTime: 17.056ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 393.548ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 52.881ms Fragment F68: CodeGen:(Total: 789.379ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 54 (54) - CodegenTotalWallClockTime: 789.368ms - CodegenSysTime: 0.000ns - CodegenUserTime: 188.444ms - CodegenVoluntaryContextSwitches: 8 (8) - CompileTime: 115.219ms - IrGenerationTime: 25.845ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 608.154ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 39.023ms Fragment F111: CodeGen:(Total: 446.331ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 24 (24) - CodegenTotalWallClockTime: 446.320ms - CodegenSysTime: 0.000ns - CodegenUserTime: 151.087ms - CodegenVoluntaryContextSwitches: 6 (6) - CompileTime: 69.334ms - IrGenerationTime: 12.004ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 317.024ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 46.786ms Fragment F51: CodeGen:(Total: 116.477ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 38 (38) - CodegenTotalWallClockTime: 116.467ms - CodegenSysTime: 3.292ms - CodegenUserTime: 32.922ms - CodegenVoluntaryContextSwitches: 3 (3) - CompileTime: 2.149ms - IrGenerationTime: 924.354us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 29.662ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 82.591ms Fragment F112: CodeGen:(Total: 513.596ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 64 (64) - CodegenTotalWallClockTime: 513.584ms - CodegenSysTime: 0.000ns - CodegenUserTime: 152.022ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 58.854ms - IrGenerationTime: 6.965ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 411.667ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 34.738ms Fragment F50: CodeGen:(Total: 696.782ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 118 (118) - CodegenTotalWallClockTime: 696.771ms - CodegenSysTime: 7.889ms - CodegenUserTime: 181.148ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 113.976ms - IrGenerationTime: 12.419ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 517.516ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 51.385ms Fragment F113: CodeGen:(Total: 370.574ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 18 (18) - CodegenTotalWallClockTime: 370.565ms - CodegenSysTime: 4.100ms - CodegenUserTime: 143.288ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 37.585ms - IrGenerationTime: 7.608ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 304.920ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 19.176ms Fragment F58: CodeGen:(Total: 553.194ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 34 (34) - CodegenTotalWallClockTime: 553.184ms - CodegenSysTime: 0.000ns - CodegenUserTime: 185.755ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 78.312ms - IrGenerationTime: 5.851ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 447.592ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 20.235ms Fragment F114: CodeGen:(Total: 304.354ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 47 (47) - CodegenTotalWallClockTime: 304.344ms - CodegenSysTime: 0.000ns - CodegenUserTime: 148.630ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 42.056ms - IrGenerationTime: 12.539ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 228.835ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 19.570ms Fragment F65: CodeGen:(Total: 64.827ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 0 (0) - CodegenTotalWallClockTime: 64.818ms - CodegenSysTime: 0.000ns - CodegenUserTime: 36.424ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 31.817ms - IrGenerationTime: 645.278us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 6 (6) - NumInstructions: 105 (105) - OptimizationTime: 10.966ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 20.185ms Fragment F115: CodeGen:(Total: 420.157ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 108 (108) - CodegenTotalWallClockTime: 420.150ms - CodegenSysTime: 0.000ns - CodegenUserTime: 147.208ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 51.588ms - IrGenerationTime: 8.288ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 340.641ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 18.509ms Fragment F64: CodeGen:(Total: 875.028ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 115 (115) - CodegenTotalWallClockTime: 875.019ms - CodegenSysTime: 0.000ns - CodegenUserTime: 192.649ms - CodegenVoluntaryContextSwitches: 20 (20) - CompileTime: 101.173ms - IrGenerationTime: 18.198ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 71 (71) - NumInstructions: 1.88K (1876) - OptimizationTime: 628.553ms - PeakMemoryUsage: 938.00 KB (960512) - PrepareTime: 125.830ms tarmstrong-Precision-7540:22000: Filter 28 arrival: 10ms Filter 52 arrival: 46ms Filter 20 arrival: 2s061ms Filter 54 arrival: 536ms Filter 22 arrival: 2s205ms Filter 0 arrival: 1s947ms Filter 12 arrival: 2s204ms Filter 2 arrival: 2s612ms Filter 8 arrival: 2s688ms Filter 14 arrival: 2s910ms - AdmissionSlots: 4 (4) - BloomFilterBytes: 15.00 MB (15728640) - ScratchBytesRead: 0 - ScratchBytesWritten: 0 - ScratchFileUsedBytes: 0 - ScratchReads: 0 (0) - ScratchWrites: 0 (0) - TotalEncryptionTime: 0.000ns - TotalReadBlockTime: 0.000ns - UncompressedScratchBytesWritten: 0 Buffer pool: - AllocTime: 10.100ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 15.00 MB (15728640) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 30.00 MB (31457280) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 15.00 MB (15728640) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 30.00 MB (31457280) - SystemAllocTime: 10.064ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F76: CodeGen:(Total: 359.557ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 11 (11) - CodegenTotalWallClockTime: 359.547ms - CodegenSysTime: 3.558ms - CodegenUserTime: 67.544ms - CodegenVoluntaryContextSwitches: 3 (3) - CompileTime: 40.731ms - IrGenerationTime: 1.506ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 25 (25) - NumInstructions: 814 (814) - OptimizationTime: 192.889ms - PeakMemoryUsage: 407.00 KB (416768) - PrepareTime: 84.924ms Fragment F75: CodeGen:(Total: 1s473ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 494 (494) - CodegenTotalWallClockTime: 1s473ms - CodegenSysTime: 0.000ns - CodegenUserTime: 336.736ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 77.605ms - IrGenerationTime: 45.870ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 103 (103) - NumInstructions: 3.05K (3049) - OptimizationTime: 1s259ms - PeakMemoryUsage: 1.49 MB (1561088) - PrepareTime: 89.264ms Fragment F74: CodeGen:(Total: 2s386ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 270 (270) - CodegenTotalWallClockTime: 2s386ms - CodegenSysTime: 3.897ms - CodegenUserTime: 510.483ms - CodegenVoluntaryContextSwitches: 22 (22) - CompileTime: 151.297ms - IrGenerationTime: 93.186ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 125 (125) - NumInstructions: 4.08K (4077) - OptimizationTime: 1s998ms - PeakMemoryUsage: 1.99 MB (2087424) - PrepareTime: 126.652ms Fragment F22: CodeGen:(Total: 2s929ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 976 (976) - CodegenTotalWallClockTime: 2s929ms - CodegenSysTime: 0.000ns - CodegenUserTime: 1s002ms - CodegenVoluntaryContextSwitches: 21 (21) - CompileTime: 96.442ms - IrGenerationTime: 219.435ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 2s514ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 97.282ms Fragment F00: CodeGen:(Total: 1s989ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 160 (160) - CodegenTotalWallClockTime: 1s989ms - CodegenSysTime: 0.000ns - CodegenUserTime: 461.879ms - CodegenVoluntaryContextSwitches: 26 (26) - CompileTime: 93.761ms - IrGenerationTime: 98.857ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s664ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 131.250ms Fragment F08: CodeGen:(Total: 1s559ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 208 (208) - CodegenTotalWallClockTime: 1s558ms - CodegenSysTime: 15.014ms - CodegenUserTime: 281.194ms - CodegenVoluntaryContextSwitches: 25 (25) - CompileTime: 78.332ms - IrGenerationTime: 95.914ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 1s221ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 159.486ms Fragment F14: CodeGen:(Total: 1s819ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 96 (96) - CodegenTotalWallClockTime: 1s819ms - CodegenSysTime: 0.000ns - CodegenUserTime: 457.757ms - CodegenVoluntaryContextSwitches: 25 (25) - CompileTime: 132.816ms - IrGenerationTime: 21.436ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s641ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 21.738ms Fragment F47: CodeGen:(Total: 1s478ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 218 (218) - CodegenTotalWallClockTime: 1s478ms - CodegenSysTime: 0.000ns - CodegenUserTime: 281.342ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 124.990ms - IrGenerationTime: 63.334ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 79 (79) - NumInstructions: 2.63K (2630) - OptimizationTime: 1s163ms - PeakMemoryUsage: 1.28 MB (1346560) - PrepareTime: 125.739ms Fragment F46: CodeGen:(Total: 3s527ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 581 (581) - CodegenTotalWallClockTime: 3s527ms - CodegenSysTime: 3.928ms - CodegenUserTime: 970.280ms - CodegenVoluntaryContextSwitches: 21 (21) - CompileTime: 62.964ms - IrGenerationTime: 329.253ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 3s055ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 77.336ms Fragment F24: CodeGen:(Total: 2s327ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 400 (400) - CodegenTotalWallClockTime: 2s327ms - CodegenSysTime: 0.000ns - CodegenUserTime: 472.055ms - CodegenVoluntaryContextSwitches: 30 (30) - CompileTime: 137.972ms - IrGenerationTime: 167.723ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s898ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 109.591ms Fragment F32: CodeGen:(Total: 1s392ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 404 (404) - CodegenTotalWallClockTime: 1s392ms - CodegenSysTime: 8.220ms - CodegenUserTime: 291.765ms - CodegenVoluntaryContextSwitches: 19 (19) - CompileTime: 129.628ms - IrGenerationTime: 69.757ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 1s078ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 113.294ms Fragment F38: CodeGen:(Total: 1s947ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 196 (196) - CodegenTotalWallClockTime: 1s947ms - CodegenSysTime: 0.000ns - CodegenUserTime: 463.700ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 124.761ms - IrGenerationTime: 136.960ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s567ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 116.728ms Fragment F73: CodeGen:(Total: 77.762ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 4 (4) - CodegenTotalWallClockTime: 77.754ms - CodegenSysTime: 7.566ms - CodegenUserTime: 11.282ms - CodegenVoluntaryContextSwitches: 1 (1) - CompileTime: 0.000ns - IrGenerationTime: 203.011us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 77.552ms Fragment F72: CodeGen:(Total: 802.056ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 62 (62) - CodegenTotalWallClockTime: 802.044ms - CodegenSysTime: 0.000ns - CodegenUserTime: 186.448ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 49.984ms - IrGenerationTime: 44.834ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 62 (62) - NumInstructions: 1.74K (1743) - OptimizationTime: 594.350ms - PeakMemoryUsage: 871.50 KB (892416) - PrepareTime: 102.044ms Fragment F71: CodeGen:(Total: 2s512ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 660 (660) - CodegenTotalWallClockTime: 2s512ms - CodegenSysTime: 3.918ms - CodegenUserTime: 931.134ms - CodegenVoluntaryContextSwitches: 21 (21) - CompileTime: 51.260ms - IrGenerationTime: 225.959ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 212 (212) - NumInstructions: 9.77K (9766) - OptimizationTime: 2s126ms - PeakMemoryUsage: 4.77 MB (5000192) - PrepareTime: 106.887ms Fragment F49: CodeGen:(Total: 1s777ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 126 (126) - CodegenTotalWallClockTime: 1s777ms - CodegenSysTime: 7.905ms - CodegenUserTime: 449.180ms - CodegenVoluntaryContextSwitches: 20 (20) - CompileTime: 71.838ms - IrGenerationTime: 127.936ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s485ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 72.038ms Fragment F57: CodeGen:(Total: 1s078ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 80 (80) - CodegenTotalWallClockTime: 1s078ms - CodegenSysTime: 0.000ns - CodegenUserTime: 282.804ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 64.639ms - IrGenerationTime: 76.930ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 84 (84) - NumInstructions: 3.09K (3088) - OptimizationTime: 835.982ms - PeakMemoryUsage: 1.51 MB (1581056) - PrepareTime: 99.654ms Fragment F63: CodeGen:(Total: 1s643ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 139 (139) - CodegenTotalWallClockTime: 1s643ms - CodegenSysTime: 0.000ns - CodegenUserTime: 464.478ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 61.980ms - IrGenerationTime: 79.589ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 99 (99) - NumInstructions: 4.42K (4424) - OptimizationTime: 1s418ms - PeakMemoryUsage: 2.16 MB (2265088) - PrepareTime: 81.411ms Fragment F77: CodeGen:(Total: 888.245ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 49 (49) - CodegenTotalWallClockTime: 888.234ms - CodegenSysTime: 0.000ns - CodegenUserTime: 228.743ms - CodegenVoluntaryContextSwitches: 4 (4) - CompileTime: 76.719ms - IrGenerationTime: 66.116ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 638.873ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 105.137ms Fragment F80: CodeGen:(Total: 104.986ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 13 (13) - CodegenTotalWallClockTime: 104.979ms - CodegenSysTime: 0.000ns - CodegenUserTime: 19.870ms - CodegenVoluntaryContextSwitches: 1 (1) - CompileTime: 0.000ns - IrGenerationTime: 3.412us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 104.973ms Fragment F13: CodeGen:(Total: 103.069ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 11 (11) - CodegenTotalWallClockTime: 103.061ms - CodegenSysTime: 3.710ms - CodegenUserTime: 18.550ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 0.000ns - IrGenerationTime: 167.341us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 102.894ms Fragment F82: CodeGen:(Total: 1s252ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 53 (53) - CodegenTotalWallClockTime: 1s252ms - CodegenSysTime: 0.000ns - CodegenUserTime: 229.322ms - CodegenVoluntaryContextSwitches: 32 (32) - CompileTime: 146.649ms - IrGenerationTime: 42.830ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 943.544ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 87.211ms Fragment F85: CodeGen:(Total: 907.038ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 97 (97) - CodegenTotalWallClockTime: 907.027ms - CodegenSysTime: 0.000ns - CodegenUserTime: 153.353ms - CodegenVoluntaryContextSwitches: 15 (15) - CompileTime: 61.483ms - IrGenerationTime: 30.227ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 690.947ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 98.176ms Fragment F86: CodeGen:(Total: 729.738ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 157 (157) - CodegenTotalWallClockTime: 729.727ms - CodegenSysTime: 3.660ms - CodegenUserTime: 153.609ms - CodegenVoluntaryContextSwitches: 2 (2) - CompileTime: 65.396ms - IrGenerationTime: 65.516ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 527.939ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 63.440ms Fragment F87: CodeGen:(Total: 732.686ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 70 (70) - CodegenTotalWallClockTime: 732.674ms - CodegenSysTime: 0.000ns - CodegenUserTime: 154.151ms - CodegenVoluntaryContextSwitches: 24 (24) - CompileTime: 109.056ms - IrGenerationTime: 29.541ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 524.022ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 68.869ms Fragment F88: CodeGen:(Total: 793.816ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 44 (44) - CodegenTotalWallClockTime: 793.806ms - CodegenSysTime: 0.000ns - CodegenUserTime: 152.553ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 80.284ms - IrGenerationTime: 36.774ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 569.832ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 105.636ms Fragment F89: CodeGen:(Total: 676.306ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 34 (34) - CodegenTotalWallClockTime: 676.296ms - CodegenSysTime: 0.000ns - CodegenUserTime: 154.766ms - CodegenVoluntaryContextSwitches: 16 (16) - CompileTime: 150.601ms - IrGenerationTime: 23.712ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 448.986ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 51.832ms Fragment F90: CodeGen:(Total: 1s162ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 151 (151) - CodegenTotalWallClockTime: 1s162ms - CodegenSysTime: 0.000ns - CodegenUserTime: 227.161ms - CodegenVoluntaryContextSwitches: 20 (20) - CompileTime: 103.428ms - IrGenerationTime: 32.987ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 929.489ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 91.739ms Fragment F93: CodeGen:(Total: 176.527ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 6 (6) - CodegenTotalWallClockTime: 176.521ms - CodegenSysTime: 0.000ns - CodegenUserTime: 21.824ms - CodegenVoluntaryContextSwitches: 14 (14) - CompileTime: 0.000ns - IrGenerationTime: 3.358us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 176.516ms Fragment F37: CodeGen:(Total: 172.373ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 13 (13) - CodegenTotalWallClockTime: 172.365ms - CodegenSysTime: 0.000ns - CodegenUserTime: 22.036ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 0.000ns - IrGenerationTime: 9.840ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 162.521ms Fragment F95: CodeGen:(Total: 1s329ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 430 (430) - CodegenTotalWallClockTime: 1s329ms - CodegenSysTime: 0.000ns - CodegenUserTime: 242.519ms - CodegenVoluntaryContextSwitches: 13 (13) - CompileTime: 131.283ms - IrGenerationTime: 54.341ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 1s063ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 78.896ms Fragment F98: CodeGen:(Total: 609.998ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 46 (46) - CodegenTotalWallClockTime: 609.986ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.774ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 44.238ms - IrGenerationTime: 16.401ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 476.711ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 71.428ms Fragment F99: CodeGen:(Total: 589.476ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 44 (44) - CodegenTotalWallClockTime: 589.463ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.925ms - CodegenVoluntaryContextSwitches: 22 (22) - CompileTime: 48.357ms - IrGenerationTime: 33.790ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 382.547ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 117.577ms Fragment F100: CodeGen:(Total: 586.093ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 84 (84) - CodegenTotalWallClockTime: 586.082ms - CodegenSysTime: 0.000ns - CodegenUserTime: 154.878ms - CodegenVoluntaryContextSwitches: 8 (8) - CompileTime: 84.907ms - IrGenerationTime: 43.046ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 414.460ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 42.412ms Fragment F101: CodeGen:(Total: 616.781ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 83 (83) - CodegenTotalWallClockTime: 616.772ms - CodegenSysTime: 4.660ms - CodegenUserTime: 148.740ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 81.759ms - IrGenerationTime: 25.139ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 433.422ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 75.233ms Fragment F102: CodeGen:(Total: 679.223ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 190 (190) - CodegenTotalWallClockTime: 679.213ms - CodegenSysTime: 0.000ns - CodegenUserTime: 154.529ms - CodegenVoluntaryContextSwitches: 5 (5) - CompileTime: 117.465ms - IrGenerationTime: 38.498ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 462.688ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 59.333ms Fragment F103: CodeGen:(Total: 1s027ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 100 (100) - CodegenTotalWallClockTime: 1s027ms - CodegenSysTime: 3.961ms - CodegenUserTime: 232.998ms - CodegenVoluntaryContextSwitches: 20 (20) - CompileTime: 109.417ms - IrGenerationTime: 62.580ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 759.825ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 87.158ms Fragment F106: CodeGen:(Total: 78.020ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 22 (22) - CodegenTotalWallClockTime: 78.011ms - CodegenSysTime: 0.000ns - CodegenUserTime: 20.072ms - CodegenVoluntaryContextSwitches: 3 (3) - CompileTime: 0.000ns - IrGenerationTime: 3.730us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 78.005ms Fragment F62: CodeGen:(Total: 58.538ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 6 (6) - CodegenTotalWallClockTime: 58.531ms - CodegenSysTime: 0.000ns - CodegenUserTime: 19.779ms - CodegenVoluntaryContextSwitches: 1 (1) - CompileTime: 0.000ns - IrGenerationTime: 146.738us - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 58.385ms Fragment F108: CodeGen:(Total: 1s035ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 111 (111) - CodegenTotalWallClockTime: 1s035ms - CodegenSysTime: 4.409ms - CodegenUserTime: 224.427ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 105.605ms - IrGenerationTime: 38.624ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 60 (60) - NumInstructions: 2.16K (2164) - OptimizationTime: 857.015ms - PeakMemoryUsage: 1.06 MB (1107968) - PrepareTime: 32.626ms Fragment F111: CodeGen:(Total: 586.269ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 50 (50) - CodegenTotalWallClockTime: 586.257ms - CodegenSysTime: 0.000ns - CodegenUserTime: 151.101ms - CodegenVoluntaryContextSwitches: 40 (40) - CompileTime: 102.325ms - IrGenerationTime: 34.872ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 393.152ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 54.552ms Fragment F112: CodeGen:(Total: 599.807ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 45 (45) - CodegenTotalWallClockTime: 599.798ms - CodegenSysTime: 0.000ns - CodegenUserTime: 150.590ms - CodegenVoluntaryContextSwitches: 30 (30) - CompileTime: 132.423ms - IrGenerationTime: 11.672ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 408.257ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 46.078ms Fragment F113: CodeGen:(Total: 600.188ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 45 (45) - CodegenTotalWallClockTime: 600.178ms - CodegenSysTime: 0.000ns - CodegenUserTime: 149.420ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 112.489ms - IrGenerationTime: 14.768ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 418.923ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 52.731ms Fragment F114: CodeGen:(Total: 759.773ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 52 (52) - CodegenTotalWallClockTime: 759.764ms - CodegenSysTime: 0.000ns - CodegenUserTime: 155.426ms - CodegenVoluntaryContextSwitches: 9 (9) - CompileTime: 54.771ms - IrGenerationTime: 12.512ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 554.474ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 112.026ms Fragment F115: CodeGen:(Total: 793.481ms, non-child: 0.000ns, % non-child: 0.00%) - CodegenInvoluntaryContextSwitches: 83 (83) - CodegenTotalWallClockTime: 793.469ms - CodegenSysTime: 4.762ms - CodegenUserTime: 151.682ms - CodegenVoluntaryContextSwitches: 12 (12) - CompileTime: 39.369ms - IrGenerationTime: 102.629ms - LoadTime: 0.000ns - ModuleBitcodeSize: 2.53 MB (2648316) - NumFunctions: 47 (47) - NumInstructions: 1.56K (1561) - OptimizationTime: 562.978ms - PeakMemoryUsage: 780.50 KB (799232) - PrepareTime: 86.906ms Averaged Fragment F76:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m4s max:1m4s mean: 1m4s stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 200.00 KB (204800) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 44 (44) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 11 (11) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.578ms - TotalThreadsUserTime: 67.929ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 882.958ms - ExecTreeExecTime: 160.145us - OpenTime: 1m1s - ExecTreeOpenTime: 1m1s - PrepareTime: 268.138us - ExecTreePrepareTime: 148.066us PLAN_ROOT_SINK:(Total: 882.555ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 0 - RowsSent: 44 (44) - RowsSentRate: 49.00 /sec EXCHANGE_NODE (id=198):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 0.000ns - MergeGetNext: 150.333us - MergeGetNextBatch: 98.054us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 44 (44) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 40.619us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 3.63 KB (3719) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - DeserializeRowBatchTime: 246.602us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 2.06 KB (2113) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Coordinator Fragment F76: Instance 50467cb8e73eeac4:853461b400000000 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.026 Fragment Instance Lifecycle Event Timeline: 1m4s - Prepare Finished: 1s579ms (1s579ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (162.363us) - First Batch Sent: 1m4s (882.551ms) - ExecInternal Finished: 1m4s (322.662us) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 104.00 KB - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 200.00 KB (204800) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 44 (44) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 11 (11) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.578ms - TotalThreadsUserTime: 67.929ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 882.958ms - ExecTreeExecTime: 160.145us - OpenTime: 1m1s - ExecTreeOpenTime: 1m1s - PrepareTime: 268.138us - ExecTreePrepareTime: 148.066us PLAN_ROOT_SINK:(Total: 882.555ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 0 - RowsSent: 44 (44) - RowsSentRate: 49.00 /sec EXCHANGE_NODE (id=198):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m4s - Open Started: 1s939ms (1s939ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (19.456us) - First Batch Returned: 1m3s (158.251us) - Last Batch Returned: 1m3s (354.000ns) - Closed: 1m4s (882.779ms) - ConvertRowBatchTime: 0.000ns - MergeGetNext: 150.333us - MergeGetNextBatch: 98.054us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 44 (44) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 40.619us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.82 KB - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 3.63 KB (3719) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -39384.000ns ; Min: -84337.000ns ; Max: -28454.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 246.602us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 2.06 KB (2113) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F75:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:416.712ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.06 MB (2164490) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 624.733us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 59 (59) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 85.772ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 697.080us - ExecTreeExecTime: 9.461us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 546.961us - ExecTreePrepareTime: 329.988us KrpcDataStreamSender (dst_id=198):(Total: 729.026us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.760us - TotalBytesSent: 176.00 B (176) - UncompressedRowBatchSize: 309.00 B (309) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - InsertBatchTime: 5.027us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 3 (3) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 50.313us - GetResultsTime: 95.049us - HTResizeTime: 1.816us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.864us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 464.00 KB (475136) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 464.00 KB (475136) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.33K (3328) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 8.817us - PeakMemoryUsage: 34.67 KB (35498) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 9.658us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 46.67 KB (47786) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 34.67 KB (35498) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.67 KB (35498) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1m - TotalBytesDequeued: 309.00 B (309) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - DeserializeRowBatchTime: 50.440us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 198.00 B (198) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F75: Instance 50467cb8e73eeac4:853461b400000085 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.108 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 535.098ms (535.098ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (15.568us) - First Batch Sent: 1m3s (30.024us) - ExecInternal Finished: 1m3s (790.383us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.06 MB (2161760) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 736.265us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 112 (112) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 334.096ms - TotalThreadsVoluntaryContextSwitches: 27 (27) Fragment Instance Lifecycle Timings: - ExecTime: 811.850us - ExecTreeExecTime: 13.390us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 599.482us - ExecTreePrepareTime: 350.569us KrpcDataStreamSender (dst_id=198):(Total: 856.170us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 311.96 KB/sec ; Min: 311.96 KB/sec ; Max: 311.96 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 439.716us ; Min: 369.168us ; Max: 510.264us ; Number of samples: 2) - RpcRecvrTime: (Avg: -47969.000ns ; Min: -62419.000ns ; Max: -33520.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 7.121us - TotalBytesSent: 163.00 B (163) - UncompressedRowBatchSize: 256.00 B (256) SORT_NODE (id=115):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (22.618us) - First Batch Returned: 1m3s (11.093us) - Last Batch Returned: 1m3s (511.000ns) - Closed: 1m3s (39.025us) - InsertBatchTime: 3.391us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 3 (3) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (6.078us) - First Batch Returned: 1m3s (38.790us) - Last Batch Returned: 1m3s (86.720us) - Closed: 1m3s (86.140us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 37.028us - GetResultsTime: 55.750us - HTResizeTime: 1.856us - LargestPartitionPercent: 66 (66) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.570us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (905.868us) - First Batch Returned: 1m3s (2.369ms) - Last Batch Returned: 1m3s (875.000ns) - Closed: 1m3s (99.894us) - ConvertRowBatchTime: 7.506us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 8.145us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 256.00 B (256) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -36350.000ns ; Min: -41627.000ns ; Max: -31427.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 44.365us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 166.00 B (166) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000086 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 564.598ms (564.598ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (11.286us) - First Batch Sent: 1m3s (34.506us) - ExecInternal Finished: 1m3s (708.348us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.05 MB (2145376) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 656.044us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.111ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 729.820us - ExecTreeExecTime: 8.670us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 625.104us - ExecTreePrepareTime: 373.477us KrpcDataStreamSender (dst_id=198):(Total: 771.635us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 155.90 KB/sec ; Min: 155.90 KB/sec ; Max: 155.90 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 393.869us ; Min: 344.511us ; Max: 443.227us ; Number of samples: 2) - RpcRecvrTime: (Avg: -53299.000ns ; Min: -56424.000ns ; Max: -50174.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.941us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) SORT_NODE (id=115):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (21.850us) - First Batch Returned: 1m3s (6.743us) - Last Batch Returned: 1m3s (340.000ns) - Closed: 1m3s (42.180us) - InsertBatchTime: 1.486us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (12.661us) - First Batch Returned: 1m3s (49.028us) - Last Batch Returned: 1m3s (36.356us) - Closed: 1m3s (61.909us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 18.860us - GetResultsTime: 34.117us - HTResizeTime: 1.188us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.481us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.315ms) - First Batch Returned: 1m3s (13.948us) - Last Batch Returned: 1m3s (409.000ns) - Closed: 1m3s (53.919us) - ConvertRowBatchTime: 3.588us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.862us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -244455.000ns ; Min: -244455.000ns ; Max: -244455.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 60.648us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 55.00 B (55) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000087 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 599.008ms (599.008ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (8.595us) - First Batch Sent: 1m3s (24.155us) - ExecInternal Finished: 1m3s (1.108ms) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.05 MB (2153568) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 1.054ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.612ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 1.112ms - ExecTreeExecTime: 7.054us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 496.475us - ExecTreePrepareTime: 288.531us KrpcDataStreamSender (dst_id=198):(Total: 1.154ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 133.86 KB/sec ; Min: 133.86 KB/sec ; Max: 133.86 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 604.840us ; Min: 465.559us ; Max: 744.121us ; Number of samples: 2) - RpcRecvrTime: (Avg: -63461.000ns ; Min: -73361.000ns ; Max: -53561.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.983us - TotalBytesSent: 102.00 B (102) - UncompressedRowBatchSize: 168.00 B (168) SORT_NODE (id=115):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (17.195us) - First Batch Returned: 1m3s (5.636us) - Last Batch Returned: 1m3s (244.000ns) - Closed: 1m3s (30.286us) - InsertBatchTime: 2.274us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 2 (2) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (5.434us) - First Batch Returned: 1m3s (27.087us) - Last Batch Returned: 1m3s (75.256us) - Closed: 1m3s (54.901us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 37.360us - GetResultsTime: 40.096us - HTResizeTime: 2.297us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.097us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.070ms) - First Batch Returned: 1m3s (2.350ms) - Last Batch Returned: 1m3s (733.000ns) - Closed: 1m3s (78.014us) - ConvertRowBatchTime: 6.784us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 6.227us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 168.00 B (168) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -61106.000ns ; Min: -77482.000ns ; Max: -44730.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 32.621us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 109.00 B (109) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000088 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.111 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 614.802ms (614.802ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (15.093us) - First Batch Sent: 1m3s (33.968us) - ExecInternal Finished: 1m3s (928.294us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.06 MB (2161760) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 8 (8) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 866.607us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.868ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 952.607us - ExecTreeExecTime: 12.531us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 682.393us - ExecTreePrepareTime: 400.703us KrpcDataStreamSender (dst_id=198):(Total: 982.619us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 659.45 KB/sec ; Min: 659.45 KB/sec ; Max: 659.45 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 507.739us ; Min: 452.744us ; Max: 562.734us ; Number of samples: 2) - RpcRecvrTime: (Avg: -57325.000ns ; Min: -62260.000ns ; Max: -52390.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 8 (8) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.008us - TotalBytesSent: 380.00 B (380) - UncompressedRowBatchSize: 682.00 B (682) SORT_NODE (id=115):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (22.333us) - First Batch Returned: 1m3s (10.653us) - Last Batch Returned: 1m3s (397.000ns) - Closed: 1m3s (52.044us) - InsertBatchTime: 9.287us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 8 (8) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (6.504us) - First Batch Returned: 1m3s (34.424us) - Last Batch Returned: 1m3s (400.036us) - Closed: 1m3s (99.406us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 8 (8) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 86.951us - GetResultsTime: 181.917us - HTResizeTime: 1.987us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 8 (8) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.555us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 704.00 KB (720896) - CumulativeAllocations: 11 (11) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 704.00 KB (720896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 7.17K (7168) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s126ms (2s126ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.119ms) - First Batch Returned: 1m3s (997.589us) - Last Batch Returned: 1m3s (2.290us) - Closed: 1m3s (123.123us) - ConvertRowBatchTime: 12.463us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 8 (8) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 9.333us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 682.00 B (682) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -920034.000ns ; Min: -2672381.000ns ; Max: -37017.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 44.279us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 438.00 B (438) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000081 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.031 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s441ms (1s441ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (12.024us) - First Batch Sent: 1m3s (32.016us) - ExecInternal Finished: 1m3s (831.082us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.06 MB (2161760) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 752.421us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 494 (494) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 339.540ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 830.711us - ExecTreeExecTime: 9.640us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 627.186us - ExecTreePrepareTime: 391.311us KrpcDataStreamSender (dst_id=198):(Total: 862.841us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 194.37 KB/sec ; Min: 194.37 KB/sec ; Max: 194.37 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 400.260us ; Min: 237.807us ; Max: 562.713us ; Number of samples: 2) - RpcRecvrTime: (Avg: -44710.000ns ; Min: -61601.000ns ; Max: -27820.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.425us - TotalBytesSent: 112.00 B (112) - UncompressedRowBatchSize: 172.00 B (172) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (22.434us) - First Batch Returned: 1m3s (7.604us) - Last Batch Returned: 1m3s (338.000ns) - Closed: 1m3s (40.820us) - InsertBatchTime: 3.414us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 2 (2) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (5.914us) - First Batch Returned: 1m3s (42.108us) - Last Batch Returned: 1m3s (88.169us) - Closed: 1m3s (77.661us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 40.095us - GetResultsTime: 55.494us - HTResizeTime: 2.268us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.577us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.112ms) - First Batch Returned: 1m3s (1.929ms) - Last Batch Returned: 1m3s (609.000ns) - Closed: 1m3s (205.250us) - ConvertRowBatchTime: 6.043us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 6.651us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 172.00 B (172) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -389229.000ns ; Min: -722450.000ns ; Max: -56008.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 35.026us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 112.00 B (112) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000082 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.026 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s449ms (1s449ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (14.994us) - First Batch Sent: 1m3s (31.991us) - ExecInternal Finished: 1m3s (591.338us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.08 MB (2178144) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 525.123us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.951ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 603.875us - ExecTreeExecTime: 12.156us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 463.867us - ExecTreePrepareTime: 271.428us KrpcDataStreamSender (dst_id=198):(Total: 626.421us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 561.78 KB/sec ; Min: 561.78 KB/sec ; Max: 561.78 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 371.789us ; Min: 277.702us ; Max: 465.876us ; Number of samples: 2) - RpcRecvrTime: (Avg: -69283.000ns ; Min: -105442.000ns ; Max: -33124.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.708us - TotalBytesSent: 268.00 B (268) - UncompressedRowBatchSize: 510.00 B (510) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (23.100us) - First Batch Returned: 1m3s (10.084us) - Last Batch Returned: 1m3s (377.000ns) - Closed: 1m3s (39.427us) - InsertBatchTime: 7.168us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 6 (6) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (7.067us) - First Batch Returned: 1m3s (38.101us) - Last Batch Returned: 1m3s (299.376us) - Closed: 1m3s (83.896us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 77.575us - GetResultsTime: 145.337us - HTResizeTime: 1.677us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 6 (6) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.639us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (996.662us) - First Batch Returned: 1m3s (2.210ms) - Last Batch Returned: 1m3s (648.000ns) - Closed: 1m3s (152.071us) - ConvertRowBatchTime: 14.130us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 6 (6) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 16.773us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 48.00 KB (49152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 48.00 KB (49152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 510.00 B (510) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -188759.000ns ; Min: -791794.000ns ; Max: -32902.000ns ; Number of samples: 5) - DeserializeRowBatchTime: 76.964us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 323.00 B (323) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000083 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s458ms (1s458ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (12.622us) - First Batch Sent: 1m3s (29.284us) - ExecInternal Finished: 1m3s (565.618us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.05 MB (2145376) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 497.506us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.008ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 576.500us - ExecTreeExecTime: 9.033us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 608.357us - ExecTreePrepareTime: 370.005us KrpcDataStreamSender (dst_id=198):(Total: 609.830us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 137.99 KB/sec ; Min: 137.99 KB/sec ; Max: 137.99 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 315.255us ; Min: 241.262us ; Max: 389.248us ; Number of samples: 2) - RpcRecvrTime: (Avg: -45026.000ns ; Min: -57371.000ns ; Max: -32681.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.520us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (24.133us) - First Batch Returned: 1m3s (6.441us) - Last Batch Returned: 1m3s (400.000ns) - Closed: 1m3s (37.707us) - InsertBatchTime: 1.718us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (7.179us) - First Batch Returned: 1m3s (38.127us) - Last Batch Returned: 1m3s (37.410us) - Closed: 1m3s (89.532us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 23.771us - GetResultsTime: 27.710us - HTResizeTime: 1.597us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.948us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.223ms) - First Batch Returned: 1m3s (870.085us) - Last Batch Returned: 1m3s (720.000ns) - Closed: 1m3s (61.783us) - ConvertRowBatchTime: 3.417us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.694us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -1173549.000ns ; Min: -1173549.000ns ; Max: -1173549.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 16.245us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 55.00 B (55) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000084 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s483ms (1s483ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (8.528us) - First Batch Sent: 1m3s (29.220us) - ExecInternal Finished: 1m3s (310.216us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.05 MB (2145376) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 253.607us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.850ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 321.885us - ExecTreeExecTime: 7.002us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 523.402us - ExecTreePrepareTime: 322.459us KrpcDataStreamSender (dst_id=198):(Total: 356.800us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 581.01 KB/sec ; Min: 581.01 KB/sec ; Max: 581.01 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 184.954us ; Min: 183.340us ; Max: 186.569us ; Number of samples: 2) - RpcRecvrTime: (Avg: -39393.000ns ; Min: -48205.000ns ; Max: -30582.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.461us - TotalBytesSent: 111.00 B (111) - UncompressedRowBatchSize: 170.00 B (170) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (18.123us) - First Batch Returned: 1m3s (5.606us) - Last Batch Returned: 1m3s (228.000ns) - Closed: 1m3s (35.250us) - InsertBatchTime: 2.953us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 2 (2) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (5.057us) - First Batch Returned: 1m3s (68.700us) - Last Batch Returned: 1m3s (77.294us) - Closed: 1m3s (55.446us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 36.307us - GetResultsTime: 81.846us - HTResizeTime: 1.628us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.923us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s914ms (2s914ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (988.731us) - First Batch Returned: 1m3s (3.692ms) - Last Batch Returned: 1m3s (890.000ns) - Closed: 1m3s (74.163us) - ConvertRowBatchTime: 4.712us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.723us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 170.00 B (170) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -32798.000ns ; Min: -32798.000ns ; Max: -32798.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.809us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 111.00 B (111) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000007d (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s691ms (1s691ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (15.051us) - First Batch Sent: 1m3s (28.565us) - ExecInternal Finished: 1m3s (506.028us) - MemoryUsage (1s000ms): 83.09 KB, 85.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.09 MB (2186336) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 7 (7) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 458.374us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 108 (108) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 329.543ms - TotalThreadsVoluntaryContextSwitches: 24 (24) Fragment Instance Lifecycle Timings: - ExecTime: 527.586us - ExecTreeExecTime: 9.885us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 442.774us - ExecTreePrepareTime: 291.507us KrpcDataStreamSender (dst_id=198):(Total: 539.429us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 764.69 KB/sec ; Min: 764.69 KB/sec ; Max: 764.69 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 325.764us ; Min: 251.807us ; Max: 399.722us ; Number of samples: 2) - RpcRecvrTime: (Avg: -73834.000ns ; Min: -88844.000ns ; Max: -58824.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 7 (7) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.772us - TotalBytesSent: 313.00 B (313) - UncompressedRowBatchSize: 583.00 B (583) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s154ms (3s154ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (22.796us) - First Batch Returned: 1m3s (8.224us) - Last Batch Returned: 1m3s (337.000ns) - Closed: 1m3s (36.876us) - InsertBatchTime: 14.651us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 7 (7) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s154ms (3s154ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (5.709us) - First Batch Returned: 1m3s (41.424us) - Last Batch Returned: 1m3s (486.327us) - Closed: 1m3s (232.036us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 7 (7) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 82.995us - GetResultsTime: 232.163us - HTResizeTime: 1.935us - LargestPartitionPercent: 28 (28) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 7 (7) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 16.018us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 640.00 KB (655360) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6.14K (6144) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s154ms (3s154ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.129ms) - First Batch Returned: 1m3s (2.643ms) - Last Batch Returned: 1m3s (589.000ns) - Closed: 1m3s (127.604us) - ConvertRowBatchTime: 15.861us - PeakMemoryUsage: 56.00 KB (57344) - RowsReturned: 7 (7) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 16.088us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 56.00 KB (57344) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 56.00 KB (57344) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 583.00 B (583) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -305661.000ns ; Min: -1184912.000ns ; Max: -38585.000ns ; Number of samples: 5) - DeserializeRowBatchTime: 78.798us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 361.00 B (361) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000007e (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s740ms (1s740ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (11.833us) - First Batch Sent: 1m3s (29.909us) - ExecInternal Finished: 1m3s (563.999us) - MemoryUsage (1s000ms): 83.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.09 MB (2194528) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 513.850us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.977ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 581.763us - ExecTreeExecTime: 9.333us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 436.418us - ExecTreePrepareTime: 252.267us KrpcDataStreamSender (dst_id=198):(Total: 605.896us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 764.09 KB/sec ; Min: 764.09 KB/sec ; Max: 764.09 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 325.593us ; Min: 308.664us ; Max: 342.523us ; Number of samples: 2) - RpcRecvrTime: (Avg: -56281.000ns ; Min: -63858.000ns ; Max: -48704.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.201us - TotalBytesSent: 268.00 B (268) - UncompressedRowBatchSize: 506.00 B (506) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (23.341us) - First Batch Returned: 1m3s (7.917us) - Last Batch Returned: 1m3s (232.000ns) - Closed: 1m3s (35.941us) - InsertBatchTime: 6.709us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 6 (6) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (6.175us) - First Batch Returned: 1m3s (45.214us) - Last Batch Returned: 1m3s (310.890us) - Closed: 1m3s (78.661us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 69.752us - GetResultsTime: 130.423us - HTResizeTime: 1.623us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 6 (6) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.277us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.051ms) - First Batch Returned: 1m3s (2.330ms) - Last Batch Returned: 1m3s (658.000ns) - Closed: 1m3s (117.125us) - ConvertRowBatchTime: 15.013us - PeakMemoryUsage: 64.00 KB (65536) - RowsReturned: 6 (6) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 19.801us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 96.00 KB (98304) - CumulativeAllocations: 12 (12) - EncryptionTime: 0.000ns - PeakReservation: 64.00 KB (65536) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 64.00 KB (65536) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 506.00 B (506) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -156618.000ns ; Min: -453900.000ns ; Max: -30276.000ns ; Number of samples: 6) - DeserializeRowBatchTime: 94.941us - TotalBatchesEnqueued: 6 (6) - TotalBatchesReceived: 6 (6) - TotalBytesReceived: 326.00 B (326) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000007f (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s758ms (1s758ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.979us) - First Batch Sent: 1m3s (32.883us) - ExecInternal Finished: 1m3s (704.929us) - MemoryUsage (1s000ms): 83.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.06 MB (2161760) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 641.951us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.883ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 716.529us - ExecTreeExecTime: 7.389us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 470.123us - ExecTreePrepareTime: 277.154us KrpcDataStreamSender (dst_id=198):(Total: 746.263us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 431.25 KB/sec ; Min: 431.25 KB/sec ; Max: 431.25 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 330.512us ; Min: 323.820us ; Max: 337.204us ; Number of samples: 2) - RpcRecvrTime: (Avg: -53328.000ns ; Min: -55398.000ns ; Max: -51258.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.440us - TotalBytesSent: 143.00 B (143) - UncompressedRowBatchSize: 252.00 B (252) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (19.048us) - First Batch Returned: 1m3s (5.971us) - Last Batch Returned: 1m3s (254.000ns) - Closed: 1m3s (40.052us) - InsertBatchTime: 3.081us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 3 (3) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (5.000us) - First Batch Returned: 1m3s (29.938us) - Last Batch Returned: 1m3s (165.987us) - Closed: 1m3s (65.597us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 46.251us - GetResultsTime: 70.030us - HTResizeTime: 2.055us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.546us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.086ms) - First Batch Returned: 1m3s (2.441ms) - Last Batch Returned: 1m3s (652.000ns) - Closed: 1m3s (98.851us) - ConvertRowBatchTime: 8.375us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 13.998us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -33781.000ns ; Min: -36732.000ns ; Max: -31274.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 52.922us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 164.00 B (164) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000080 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.125 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s778ms (1s778ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.432us) - First Batch Sent: 1m3s (22.588us) - ExecInternal Finished: 1m3s (606.157us) - MemoryUsage (1s000ms): 83.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB, 87.09 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.08 MB (2178144) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 540.226us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.833ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 599.624us - ExecTreeExecTime: 7.455us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 587.962us - ExecTreePrepareTime: 370.454us KrpcDataStreamSender (dst_id=198):(Total: 636.225us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 373.74 KB/sec ; Min: 373.74 KB/sec ; Max: 373.74 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 339.672us ; Min: 305.694us ; Max: 373.651us ; Number of samples: 2) - RpcRecvrTime: (Avg: -57190.000ns ; Min: -65313.000ns ; Max: -49068.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 1.97 KB (2016) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.544us - TotalBytesSent: 143.00 B (143) - UncompressedRowBatchSize: 252.00 B (252) SORT_NODE (id=115):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (17.932us) - First Batch Returned: 1m3s (6.153us) - Last Batch Returned: 1m3s (248.000ns) - Closed: 1m3s (29.413us) - InsertBatchTime: 4.199us - PeakMemoryUsage: 12.00 KB (12288) - RowsReturned: 3 (3) - RowsReturnedRate: 0 - TuplePoolReclamations: 0 (0) AGGREGATION_NODE (id=197):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (6.736us) - First Batch Returned: 1m3s (39.455us) - Last Batch Returned: 1m3s (195.645us) - Closed: 1m3s (91.558us) - PeakMemoryUsage: 2.02 MB (2114688) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 46.822us - GetResultsTime: 85.705us - HTResizeTime: 1.685us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.747us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=196):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s139ms (3s139ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.403ms) - First Batch Returned: 1m3s (1.273ms) - Last Batch Returned: 1m3s (654.000ns) - Closed: 1m3s (86.615us) - ConvertRowBatchTime: 7.915us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 9.611us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 48.00 KB (49152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 48.00 KB (49152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -418478.000ns ; Min: -856027.000ns ; Max: -193622.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 50.668us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 161.00 B (161) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F74:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:417.226ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.31 MB (4514453) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 59s805ms - TotalNetworkSendTime: 3.617ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 54 (54) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 976.250us - TotalThreadsUserTime: 135.762ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 58s941ms - ExecTreeExecTime: 58s937ms - OpenTime: 3s032ms - ExecTreeOpenTime: 874.297ms - PrepareTime: 4.020ms - ExecTreePrepareTime: 2.516ms KrpcDataStreamSender (dst_id=196):(Total: 3.950ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 35.29 KB (36138) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.363us - TotalBytesSent: 198.00 B (198) - UncompressedRowBatchSize: 309.00 B (309) AGGREGATION_NODE (id=114):(Total: 59s814ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 73.179us - HTResizeTime: 0.000ns - LargestPartitionPercent: 51 (51) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 49.666us Buffer pool: - AllocTime: 12.667us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 453.33 KB (464213) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 453.33 KB (464213) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.140us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.16K (3157) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s812ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 3 (3) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 11.116us - GetResultsTime: 6.411us - HTResizeTime: 1.576us - LargestPartitionPercent: 2 (2) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053930) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.631us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 272.00 KB (278528) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 272.00 KB (278528) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 256 (256) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s814ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 5.278us - PeakMemoryUsage: 13.33 KB (13653) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.998us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 20.00 KB (20480) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 13.33 KB (13653) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 13.33 KB (13653) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 123.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 58s814ms - TotalBytesDequeued: 122.00 B (122) - TotalGetBatchTime: 58s814ms - DataWaitTime: 58s814ms Enqueue: - DeserializeRowBatchTime: 19.927us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 77.00 B (77) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 119.649ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 2.478us - PeakMemoryUsage: 1.33 KB (1365) - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 198.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.33 KB (1365) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.33 KB (1365) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.33 KB (1365) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 119.628ms - TotalBytesDequeued: 4.00 B (4) - TotalGetBatchTime: 119.637ms - DataWaitTime: 119.635ms Enqueue: - DeserializeRowBatchTime: 1.070us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 3.00 B (3) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 874.106ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: - BuildTime: 61.206us - GetResultsTime: 85.731us - HTResizeTime: 2.548us - LargestPartitionPercent: 51 (51) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.480us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 458.67 KB (469674) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 458.67 KB (469674) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 925.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.24K (3242) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 871.372ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 9.853us - PeakMemoryUsage: 29.33 KB (30037) - RowsReturned: 3 (3) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 9.157us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 40.00 KB (40960) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 29.33 KB (30037) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 29.33 KB (30037) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.506us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 819.326ms - TotalBytesDequeued: 282.00 B (282) - TotalGetBatchTime: 871.334ms - DataWaitTime: 871.315ms Enqueue: - DeserializeRowBatchTime: 269.053us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 177.00 B (177) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F74: Instance 50467cb8e73eeac4:853461b400000079 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.115 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 465.772ms (465.772ms) - Open Finished: 4s251ms (3s785ms) - First Batch Produced: 1m3s (58s937ms) - First Batch Sent: 1m3s (2.427us) - ExecInternal Finished: 1m3s (3.059ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 152.00 KB, 152.00 KB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 2.671ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 180 (180) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.787ms - TotalThreadsUserTime: 522.565ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 58s940ms - ExecTreeExecTime: 58s937ms - OpenTime: 3s785ms - ExecTreeOpenTime: 1s518ms - PrepareTime: 1.133ms - ExecTreePrepareTime: 771.122us KrpcDataStreamSender (dst_id=196):(Total: 2.989ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 122.51 KB/sec ; Min: 39.06 KB/sec ; Max: 205.96 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 962.052us ; Min: 260.781us ; Max: 1.350ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -100176.000ns ; Min: -385024.000ns ; Max: -23855.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.614us - TotalBytesSent: 109.00 B (109) - UncompressedRowBatchSize: 168.00 B (168) AGGREGATION_NODE (id=114):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s251ms (1s518ms) - First Batch Requested: 4s251ms (23.512us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (110.401us) - Closed: 1m3s (52.129us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 57.981us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 34.341us Buffer pool: - AllocTime: 11.608us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.070us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s250ms (1s518ms) - First Batch Requested: 4s251ms (685.260us) - First Batch Returned: 1m3s (58s936ms) - Last Batch Returned: 1m3s (306.000ns) - Closed: 1m3s (45.854us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 2 (2) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s251ms (4s251ms) - Open Finished: 1m3s (58s817ms) - First Batch Requested: 1m3s (2.137us) - First Batch Returned: 1m3s (2.731us) - Last Batch Returned: 1m3s (227.000ns) - Closed: 1m3s (62.027us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.868us - GetResultsTime: 0.000ns - HTResizeTime: 995.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.924us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s251ms (4s251ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (874.364us) - First Batch Returned: 1m3s (5.788us) - Last Batch Returned: 1m3s (264.000ns) - Closed: 1m3s (49.286us) - ConvertRowBatchTime: 2.302us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s815ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 119.024ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (119.016ms) - First Batch Requested: 1m3s (3.453us) - First Batch Returned: 1m3s (5.511us) - Last Batch Returned: 1m3s (355.000ns) - Closed: 1m3s (35.155us) - ConvertRowBatchTime: 2.394us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 119.012ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 119.014ms - DataWaitTime: 119.012ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 1s518ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s251ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s250ms (1s518ms) - First Batch Requested: 4s251ms (697.176us) - First Batch Returned: 4s251ms (34.477us) - Last Batch Returned: 4s251ms (102.655us) - Closed: 4s251ms (75.589us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 33.795us - GetResultsTime: 49.751us - HTResizeTime: 1.223us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.292us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.649us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 1s516ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s249ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s248ms (1s516ms) - First Batch Requested: 4s249ms (1.339ms) - First Batch Returned: 4s249ms (15.271us) - Last Batch Returned: 4s249ms (449.000ns) - Closed: 4s249ms (71.435us) - ConvertRowBatchTime: 4.457us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 4.649us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.599us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s516ms - TotalBytesDequeued: 168.00 B (168) - TotalGetBatchTime: 1s516ms - DataWaitTime: 1s516ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -33691.000ns ; Min: -33691.000ns ; Max: -33691.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.851us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 104.00 B (104) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000007a (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.114 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 483.689ms (483.689ms) - Open Finished: 4s249ms (3s766ms) - First Batch Produced: 1m3s (58s938ms) - First Batch Sent: 1m3s (2.097us) - ExecInternal Finished: 1m3s (3.772ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 152.00 KB, 1.14 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 3.462ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 5.716ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 58s942ms - ExecTreeExecTime: 58s938ms - OpenTime: 3s766ms - ExecTreeOpenTime: 1s517ms - PrepareTime: 1.190ms - ExecTreePrepareTime: 724.942us KrpcDataStreamSender (dst_id=196):(Total: 3.763ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 71.93 KB/sec ; Min: 28.47 KB/sec ; Max: 150.75 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.263ms ; Min: 369.251us ; Max: 2.127ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -341590.000ns ; Min: -1315357.000ns ; Max: -22205.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.454us - TotalBytesSent: 165.00 B (165) - UncompressedRowBatchSize: 258.00 B (258) AGGREGATION_NODE (id=114):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s249ms (1s517ms) - First Batch Requested: 4s249ms (19.097us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (75.851us) - Closed: 1m3s (38.231us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 34.043us - HTResizeTime: 0.000ns - LargestPartitionPercent: 66 (66) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 32.141us Buffer pool: - AllocTime: 7.370us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.586us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s249ms (1s517ms) - First Batch Requested: 4s249ms (490.012us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (510.000ns) - Closed: 1m3s (92.545us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 3 (3) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s250ms (4s250ms) - Open Finished: 1m3s (58s817ms) - First Batch Requested: 1m3s (3.376us) - First Batch Returned: 1m3s (3.327us) - Last Batch Returned: 1m3s (404.000ns) - Closed: 1m3s (83.847us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.869us - GetResultsTime: 0.000ns - HTResizeTime: 1.301us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.265us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s250ms (4s250ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (1.241ms) - First Batch Returned: 1m3s (7.685us) - Last Batch Returned: 1m3s (434.000ns) - Closed: 1m3s (43.355us) - ConvertRowBatchTime: 2.964us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s815ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 120.036ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (120.028ms) - First Batch Requested: 1m3s (3.550us) - First Batch Returned: 1m3s (4.789us) - Last Batch Returned: 1m3s (315.000ns) - Closed: 1m3s (42.059us) - ConvertRowBatchTime: 2.070us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 120.023ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 120.025ms - DataWaitTime: 120.023ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 1s517ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s250ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s249ms (1s517ms) - First Batch Requested: 4s249ms (503.000us) - First Batch Returned: 4s249ms (31.037us) - Last Batch Returned: 4s250ms (118.137us) - Closed: 4s250ms (58.818us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 58.277us - GetResultsTime: 58.880us - HTResizeTime: 2.582us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.952us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.664us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 1s514ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s248ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s191ms (1s459ms) - First Batch Requested: 4s193ms (2.463ms) - First Batch Returned: 4s248ms (54.927ms) - Last Batch Returned: 4s248ms (1.537us) - Closed: 4s248ms (103.833us) - ConvertRowBatchTime: 8.122us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 11.286us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 48.00 KB (49152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 48.00 KB (49152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.878us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 258.00 B - FirstBatchWaitTime: 1s459ms - TotalBytesDequeued: 258.00 B (258) - TotalGetBatchTime: 1s514ms - DataWaitTime: 1s514ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 165.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -51256.000ns ; Min: -65024.000ns ; Max: -35080.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 2.725ms - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000007b (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.109 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 491.595ms (491.595ms) - Open Finished: 4s251ms (3s760ms) - First Batch Produced: 1m3s (58s936ms) - First Batch Sent: 1m3s (2.421us) - ExecInternal Finished: 1m3s (4.839ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 152.00 KB, 1.14 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 5 (5) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 4.387ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 7.447ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 58s940ms - ExecTreeExecTime: 58s936ms - OpenTime: 3s760ms - ExecTreeOpenTime: 1s519ms - PrepareTime: 1.123ms - ExecTreePrepareTime: 771.878us KrpcDataStreamSender (dst_id=196):(Total: 4.717ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 58.86 KB/sec ; Min: 35.55 KB/sec ; Max: 71.61 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 858.330us ; Min: 183.439us ; Max: 1.561ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -113516.000ns ; Min: -270070.000ns ; Max: -27788.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 5 (5) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.548us - TotalBytesSent: 273.00 B (273) - UncompressedRowBatchSize: 424.00 B (424) AGGREGATION_NODE (id=114):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s251ms (1s519ms) - First Batch Requested: 4s251ms (24.386us) - First Batch Returned: 1m3s (58s936ms) - Last Batch Returned: 1m3s (154.984us) - Closed: 1m3s (49.447us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 69.513us - HTResizeTime: 0.000ns - LargestPartitionPercent: 40 (40) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5 (5) - StreamingTime: 41.968us Buffer pool: - AllocTime: 15.085us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.842us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s251ms (1s519ms) - First Batch Requested: 4s251ms (716.138us) - First Batch Returned: 1m3s (58s935ms) - Last Batch Returned: 1m3s (331.000ns) - Closed: 1m3s (120.265us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 5 (5) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s252ms (4s252ms) - Open Finished: 1m3s (58s817ms) - First Batch Requested: 1m3s (2.989us) - First Batch Returned: 1m3s (5.054us) - Last Batch Returned: 1m3s (355.000ns) - Closed: 1m3s (86.238us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.645us - GetResultsTime: 0.000ns - HTResizeTime: 1.193us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.943us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s252ms (4s252ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (1.169ms) - First Batch Returned: 1m3s (6.327us) - Last Batch Returned: 1m3s (330.000ns) - Closed: 1m3s (38.388us) - ConvertRowBatchTime: 2.685us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s815ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 118.016ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (118.008ms) - First Batch Requested: 1m3s (2.562us) - First Batch Returned: 1m3s (5.095us) - Last Batch Returned: 1m3s (316.000ns) - Closed: 1m3s (30.352us) - ConvertRowBatchTime: 2.099us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 118.004ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 118.005ms - DataWaitTime: 118.004ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 1s519ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s252ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s251ms (1s519ms) - First Batch Requested: 4s252ms (733.067us) - First Batch Returned: 4s252ms (36.791us) - Last Batch Returned: 4s252ms (297.574us) - Closed: 4s252ms (75.944us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 5 (5) - RowsReturnedRate: 3.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 79.320us - GetResultsTime: 131.459us - HTResizeTime: 1.826us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 16.318us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.796us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 1s516ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s250ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s191ms (1s458ms) - First Batch Requested: 4s193ms (2.157ms) - First Batch Returned: 4s250ms (57.400ms) - Last Batch Returned: 4s250ms (697.000ns) - Closed: 4s250ms (123.478us) - ConvertRowBatchTime: 16.743us - PeakMemoryUsage: 40.00 KB (40960) - RowsReturned: 5 (5) - RowsReturnedRate: 3.00 /sec Buffer pool: - AllocTime: 13.891us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 64.00 KB (65536) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 40.00 KB (40960) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 40.00 KB (40960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.009us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 338.00 B - FirstBatchWaitTime: 1s458ms - TotalBytesDequeued: 424.00 B (424) - TotalGetBatchTime: 1s516ms - DataWaitTime: 1s516ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 211.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -88641.000ns ; Min: -245306.000ns ; Max: -31538.000ns ; Number of samples: 4) - DeserializeRowBatchTime: 69.422us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 264.00 B (264) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000007c (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.109 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 507.470ms (507.470ms) - Open Finished: 4s249ms (3s742ms) - First Batch Produced: 1m3s (58s938ms) - First Batch Sent: 1m3s (2.625us) - ExecInternal Finished: 1m3s (3.683ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 152.00 KB, 1.13 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.34 MB (4547456) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 3.273ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 7.095ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 58s941ms - ExecTreeExecTime: 58s938ms - OpenTime: 3s742ms - ExecTreeOpenTime: 1s517ms - PrepareTime: 1.009ms - ExecTreePrepareTime: 706.460us KrpcDataStreamSender (dst_id=196):(Total: 3.574ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 42.47 KB/sec ; Min: 33.90 KB/sec ; Max: 51.05 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 925.976us ; Min: 308.979us ; Max: 2.314ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -101244.000ns ; Min: -290179.000ns ; Max: -28375.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.594us - TotalBytesSent: 178.00 B (178) - UncompressedRowBatchSize: 262.00 B (262) AGGREGATION_NODE (id=114):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s249ms (1s517ms) - First Batch Requested: 4s249ms (17.765us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (146.836us) - Closed: 1m3s (58.199us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 67.815us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 45.526us Buffer pool: - AllocTime: 9.909us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 2s732ms (2s732ms) - Open Finished: 4s249ms (1s517ms) - First Batch Requested: 4s249ms (482.642us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (392.000ns) - Closed: 1m3s (151.059us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 3 (3) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s816ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s250ms (4s250ms) - Open Finished: 1m3s (58s816ms) - First Batch Requested: 1m3s (3.024us) - First Batch Returned: 1m3s (33.739us) - Last Batch Returned: 1m3s (31.528us) - Closed: 1m3s (79.452us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 42.118us - GetResultsTime: 26.451us - HTResizeTime: 3.569us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2057344) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.663us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s814ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s250ms (4s250ms) - Open Finished: 1m3s (58s812ms) - First Batch Requested: 1m3s (1.309ms) - First Batch Returned: 1m3s (2.132ms) - Last Batch Returned: 1m3s (602.000ns) - Closed: 1m3s (98.569us) - ConvertRowBatchTime: 8.379us - PeakMemoryUsage: 64.00 KB (65536) - RowsReturned: 4 (4) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 11.561us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 64.00 KB (65536) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 64.00 KB (65536) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 64.00 KB (65536) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.480us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s812ms - TotalBytesDequeued: 336.00 B (336) - TotalGetBatchTime: 58s814ms - DataWaitTime: 58s814ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -70915.000ns ; Min: -181640.000ns ; Max: -32371.000ns ; Number of samples: 4) - DeserializeRowBatchTime: 64.866us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 210.00 B (210) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 121.084ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (121.076ms) - First Batch Requested: 1m3s (3.641us) - First Batch Returned: 1m3s (4.852us) - Last Batch Returned: 1m3s (323.000ns) - Closed: 1m3s (38.704us) - ConvertRowBatchTime: 2.288us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 121.071ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 121.073ms - DataWaitTime: 121.071ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 1s517ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s250ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s249ms (1s517ms) - First Batch Requested: 4s249ms (496.344us) - First Batch Returned: 4s250ms (27.575us) - Last Batch Returned: 4s250ms (76.607us) - Closed: 4s250ms (64.593us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 45.693us - GetResultsTime: 40.256us - HTResizeTime: 2.914us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.117us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 1s514ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s248ms - Open Started: 2s732ms (2s732ms) - Open Finished: 4s191ms (1s459ms) - First Batch Requested: 4s193ms (1.925ms) - First Batch Returned: 4s248ms (55.553ms) - Last Batch Returned: 4s248ms (1.077us) - Closed: 4s248ms (89.103us) - ConvertRowBatchTime: 6.803us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 6.473us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 174.00 B - FirstBatchWaitTime: 1s459ms - TotalBytesDequeued: 174.00 B (174) - TotalGetBatchTime: 1s514ms - DataWaitTime: 1s514ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 111.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -795971.000ns ; Min: -1507332.000ns ; Max: -84610.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 34.613us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 111.00 B (111) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000075 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.029 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s194ms (1s194ms) - Open Finished: 4s207ms (3s012ms) - First Batch Produced: 1m3s (58s938ms) - First Batch Sent: 1m3s (2.604us) - ExecInternal Finished: 1m3s (5.294ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 1.13 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 59s558ms - TotalNetworkSendTime: 4.842ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 270 (270) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 3.912ms - TotalThreadsUserTime: 517.284ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Fragment Instance Lifecycle Timings: - ExecTime: 58s943ms - ExecTreeExecTime: 58s938ms - OpenTime: 3s012ms - ExecTreeOpenTime: 625.834ms - PrepareTime: 1.152ms - ExecTreePrepareTime: 793.243us KrpcDataStreamSender (dst_id=196):(Total: 5.174ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 68.92 KB/sec ; Min: 31.64 KB/sec ; Max: 94.83 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.089ms ; Min: 222.122us ; Max: 2.685ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -246588.000ns ; Min: -1208010.000ns ; Max: -28430.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.457us - TotalBytesSent: 197.00 B (197) - UncompressedRowBatchSize: 325.00 B (325) AGGREGATION_NODE (id=114):(Total: 59s564ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s581ms (3s581ms) - Open Finished: 4s207ms (625.831ms) - First Batch Requested: 4s207ms (25.242us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (181.125us) - Closed: 1m3s (52.440us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 86.766us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 49.704us Buffer pool: - AllocTime: 13.978us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s563ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s581ms (3s581ms) - Open Finished: 4s206ms (625.128ms) - First Batch Requested: 4s207ms (730.046us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (267.000ns) - Closed: 1m3s (281.724us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 4 (4) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s207ms (4s207ms) - Open Finished: 1m3s (58s816ms) - First Batch Requested: 1m3s (2.508us) - First Batch Returned: 1m3s (2.892us) - Last Batch Returned: 1m3s (260.000ns) - Closed: 1m3s (69.910us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.488us - GetResultsTime: 0.000ns - HTResizeTime: 1.230us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.725us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s207ms (4s207ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (1.259ms) - First Batch Returned: 1m3s (6.171us) - Last Batch Returned: 1m3s (364.000ns) - Closed: 1m3s (58.711us) - ConvertRowBatchTime: 2.519us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s815ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 120.054ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (119.950ms) - First Batch Requested: 1m3s (2.885us) - First Batch Returned: 1m3s (101.664us) - Last Batch Returned: 1m3s (411.000ns) - Closed: 1m3s (30.267us) - ConvertRowBatchTime: 3.081us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 8.00 /sec Buffer pool: - AllocTime: 2.385us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 119.945ms - TotalBytesDequeued: 57.00 B (57) - TotalGetBatchTime: 120.041ms - DataWaitTime: 120.035ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -27928.000ns ; Min: -27928.000ns ; Max: -27928.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 12.847us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 41.00 B (41) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 625.694ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s207ms - Open Started: 3s581ms (3s581ms) - Open Finished: 4s206ms (625.118ms) - First Batch Requested: 4s207ms (742.864us) - First Batch Returned: 4s207ms (37.369us) - Last Batch Returned: 4s207ms (275.286us) - Closed: 4s207ms (111.346us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 60.691us - GetResultsTime: 173.087us - HTResizeTime: 2.143us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.074us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 623.093ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s205ms - Open Started: 3s581ms (3s581ms) - Open Finished: 4s148ms (566.881ms) - First Batch Requested: 4s149ms (1.261ms) - First Batch Returned: 4s205ms (56.208ms) - Last Batch Returned: 4s205ms (737.000ns) - Closed: 4s205ms (119.006us) - ConvertRowBatchTime: 11.435us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 10.912us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 168.00 B - FirstBatchWaitTime: 566.876ms - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 623.051ms - DataWaitTime: 623.029ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 110.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -47407.000ns ; Min: -53386.000ns ; Max: -35651.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 54.854us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000076 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.027 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s231ms (1s231ms) - Open Finished: 4s207ms (2s975ms) - First Batch Produced: 1m3s (58s937ms) - First Batch Sent: 1m3s (2.727us) - ExecInternal Finished: 1m3s (4.994ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 1.13 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.37 MB (4580224) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 5 (5) - TotalNetworkReceiveTime: 59s557ms - TotalNetworkSendTime: 4.461ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.016ms - TotalThreadsUserTime: 2.852ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 58s942ms - ExecTreeExecTime: 58s938ms - OpenTime: 2s975ms - ExecTreeOpenTime: 625.960ms - PrepareTime: 1.205ms - ExecTreePrepareTime: 809.678us KrpcDataStreamSender (dst_id=196):(Total: 4.794ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 25.53 KB/sec ; Min: 20.30 KB/sec ; Max: 31.64 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 1.755ms ; Min: 264.842us ; Max: 5.677ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -258245.000ns ; Min: -2694532.000ns ; Max: -27723.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 5 (5) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.273us - TotalBytesSent: 283.00 B (283) - UncompressedRowBatchSize: 422.00 B (422) AGGREGATION_NODE (id=114):(Total: 59s564ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s581ms (3s581ms) - Open Finished: 4s207ms (625.957ms) - First Batch Requested: 4s207ms (28.255us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (251.213us) - Closed: 1m3s (60.558us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 129.449us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5 (5) - StreamingTime: 107.379us Buffer pool: - AllocTime: 20.546us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s563ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s581ms (3s581ms) - Open Finished: 4s206ms (625.214ms) - First Batch Requested: 4s207ms (773.043us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (332.000ns) - Closed: 1m3s (210.229us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 5 (5) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s207ms (4s207ms) - Open Finished: 1m3s (58s817ms) - First Batch Requested: 1m3s (2.573us) - First Batch Returned: 1m3s (34.705us) - Last Batch Returned: 1m3s (83.229us) - Closed: 1m3s (91.457us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 43.387us - GetResultsTime: 50.483us - HTResizeTime: 2.096us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2057344) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.458us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 14 (14) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s207ms (4s207ms) - Open Finished: 1m3s (58s809ms) - First Batch Requested: 1m3s (1.271ms) - First Batch Returned: 1m3s (6.298ms) - Last Batch Returned: 1m3s (468.000ns) - Closed: 1m3s (92.934us) - ConvertRowBatchTime: 30.339us - PeakMemoryUsage: 96.00 KB (98304) - RowsReturned: 14 (14) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 36.420us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 176.00 KB (180224) - CumulativeAllocations: 22 (22) - EncryptionTime: 0.000ns - PeakReservation: 96.00 KB (98304) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 96.00 KB (98304) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s809ms - TotalBytesDequeued: 1.10 KB (1128) - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -153051.000ns ; Min: -1016459.000ns ; Max: -29529.000ns ; Number of samples: 11) - DeserializeRowBatchTime: 174.264us - TotalBatchesEnqueued: 11 (11) - TotalBatchesReceived: 11 (11) - TotalBytesReceived: 722.00 B (722) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 119.337ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (119.329ms) - First Batch Requested: 1m3s (2.754us) - First Batch Returned: 1m3s (5.289us) - Last Batch Returned: 1m3s (502.000ns) - Closed: 1m3s (33.275us) - ConvertRowBatchTime: 2.599us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 119.324ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 119.326ms - DataWaitTime: 119.324ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 625.662ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s207ms - Open Started: 3s581ms (3s581ms) - Open Finished: 4s206ms (625.201ms) - First Batch Requested: 4s207ms (790.095us) - First Batch Returned: 4s207ms (38.449us) - Last Batch Returned: 4s207ms (112.897us) - Closed: 4s207ms (89.800us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 47.579us - GetResultsTime: 60.596us - HTResizeTime: 2.458us - LargestPartitionPercent: 66 (66) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.091us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 623.127ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s205ms - Open Started: 3s581ms (3s581ms) - Open Finished: 4s148ms (566.985ms) - First Batch Requested: 4s149ms (1.292ms) - First Batch Returned: 4s205ms (56.136ms) - Last Batch Returned: 4s205ms (836.000ns) - Closed: 4s205ms (96.627us) - ConvertRowBatchTime: 10.398us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 10.312us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 168.00 B - FirstBatchWaitTime: 566.978ms - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 623.081ms - DataWaitTime: 623.059ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 110.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -43108.000ns ; Min: -58652.000ns ; Max: -34435.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 53.360us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000077 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.032 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s251ms (1s251ms) - Open Finished: 4s209ms (2s957ms) - First Batch Produced: 1m3s (58s935ms) - First Batch Sent: 1m3s (2.882us) - ExecInternal Finished: 1m3s (3.208ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 1.13 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 59s558ms - TotalNetworkSendTime: 2.884ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 5.642ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 58s939ms - ExecTreeExecTime: 58s936ms - OpenTime: 2s957ms - ExecTreeOpenTime: 627.871ms - PrepareTime: 1.158ms - ExecTreePrepareTime: 794.184us KrpcDataStreamSender (dst_id=196):(Total: 3.176ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 70.15 KB/sec ; Min: 70.15 KB/sec ; Max: 70.15 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1.230ms ; Min: 188.745us ; Max: 2.201ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -183641.000ns ; Min: -852549.000ns ; Max: -29285.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.481us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=114):(Total: 59s564ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s581ms (3s581ms) - Open Finished: 4s209ms (627.866ms) - First Batch Requested: 4s209ms (23.810us) - First Batch Returned: 1m3s (58s935ms) - Last Batch Returned: 1m3s (60.603us) - Closed: 1m3s (56.030us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 24.188us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 17.561us Buffer pool: - AllocTime: 10.477us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.187us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s563ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s581ms (3s581ms) - Open Finished: 4s208ms (627.147ms) - First Batch Requested: 4s209ms (745.092us) - First Batch Returned: 1m3s (58s935ms) - Last Batch Returned: 1m3s (256.000ns) - Closed: 1m3s (91.963us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s209ms (4s209ms) - Open Finished: 1m3s (58s814ms) - First Batch Requested: 1m3s (3.641us) - First Batch Returned: 1m3s (4.703us) - Last Batch Returned: 1m3s (237.000ns) - Closed: 1m3s (62.603us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.948us - GetResultsTime: 0.000ns - HTResizeTime: 2.434us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.865us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s813ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s209ms (4s209ms) - Open Finished: 1m3s (58s813ms) - First Batch Requested: 1m3s (961.389us) - First Batch Returned: 1m3s (6.973us) - Last Batch Returned: 1m3s (330.000ns) - Closed: 1m3s (46.424us) - ConvertRowBatchTime: 2.892us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s813ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s813ms - DataWaitTime: 58s813ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 120.258ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (120.250ms) - First Batch Requested: 1m3s (3.163us) - First Batch Returned: 1m3s (5.180us) - Last Batch Returned: 1m3s (374.000ns) - Closed: 1m3s (33.308us) - ConvertRowBatchTime: 2.674us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 120.245ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 120.247ms - DataWaitTime: 120.245ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 627.487ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s209ms - Open Started: 3s581ms (3s581ms) - Open Finished: 4s208ms (627.138ms) - First Batch Requested: 4s209ms (761.419us) - First Batch Returned: 4s209ms (38.101us) - Last Batch Returned: 4s209ms (39.986us) - Closed: 4s209ms (76.769us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 29.143us - GetResultsTime: 31.132us - HTResizeTime: 1.646us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.939us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 625.064ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s207ms - Open Started: 3s581ms (3s581ms) - Open Finished: 4s149ms (567.827ms) - First Batch Requested: 4s150ms (1.282ms) - First Batch Returned: 4s207ms (57.232ms) - Last Batch Returned: 4s207ms (767.000ns) - Closed: 4s207ms (70.852us) - ConvertRowBatchTime: 3.657us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.319us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 757.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 84.00 B - FirstBatchWaitTime: 567.821ms - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 625.045ms - DataWaitTime: 625.037ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 55.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -60415.000ns ; Min: -60415.000ns ; Max: -60415.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.056us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 55.00 B (55) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000078 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.027 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s264ms (1s264ms) - Open Finished: 4s209ms (2s944ms) - First Batch Produced: 1m3s (58s936ms) - First Batch Sent: 1m3s (2.609us) - ExecInternal Finished: 1m3s (4.852ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 1.13 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 59s557ms - TotalNetworkSendTime: 4.549ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 7.269ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 58s940ms - ExecTreeExecTime: 58s936ms - OpenTime: 2s944ms - ExecTreeOpenTime: 626.761ms - PrepareTime: 1.181ms - ExecTreePrepareTime: 802.329us KrpcDataStreamSender (dst_id=196):(Total: 4.851ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 21.77 KB/sec ; Min: 21.77 KB/sec ; Max: 21.77 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1.472ms ; Min: 528.877us ; Max: 2.332ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -98559.000ns ; Min: -617582.000ns ; Max: -42279.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.281us - TotalBytesSent: 52.00 B (52) - UncompressedRowBatchSize: 88.00 B (88) AGGREGATION_NODE (id=114):(Total: 59s563ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s582ms (3s582ms) - Open Finished: 4s209ms (626.758ms) - First Batch Requested: 4s209ms (24.324us) - First Batch Returned: 1m3s (58s936ms) - Last Batch Returned: 1m3s (57.719us) - Closed: 1m3s (49.966us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 21.770us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 33.223us Buffer pool: - AllocTime: 9.609us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s562ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s582ms (3s582ms) - Open Finished: 4s208ms (626.084ms) - First Batch Requested: 4s209ms (700.968us) - First Batch Returned: 1m3s (58s935ms) - Last Batch Returned: 1m3s (406.000ns) - Closed: 1m3s (135.582us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s209ms (4s209ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (2.900us) - First Batch Returned: 1m3s (5.017us) - Last Batch Returned: 1m3s (291.000ns) - Closed: 1m3s (89.263us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.996us - GetResultsTime: 0.000ns - HTResizeTime: 1.309us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.530us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s813ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s209ms (4s209ms) - Open Finished: 1m3s (58s813ms) - First Batch Requested: 1m3s (1.288ms) - First Batch Returned: 1m3s (5.947us) - Last Batch Returned: 1m3s (400.000ns) - Closed: 1m3s (49.021us) - ConvertRowBatchTime: 2.170us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s813ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s813ms - DataWaitTime: 58s813ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 119.988ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (119.977ms) - First Batch Requested: 1m3s (2.959us) - First Batch Returned: 1m3s (7.059us) - Last Batch Returned: 1m3s (327.000ns) - Closed: 1m3s (43.515us) - ConvertRowBatchTime: 3.729us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 119.970ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 119.972ms - DataWaitTime: 119.970ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 626.412ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s209ms - Open Started: 3s582ms (3s582ms) - Open Finished: 4s208ms (626.071ms) - First Batch Requested: 4s209ms (717.167us) - First Batch Returned: 4s209ms (35.252us) - Last Batch Returned: 4s209ms (44.289us) - Closed: 4s209ms (84.054us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 32.814us - GetResultsTime: 28.765us - HTResizeTime: 2.393us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.560us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 623.957ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s207ms - Open Started: 3s582ms (3s582ms) - Open Finished: 4s151ms (569.404ms) - First Batch Requested: 4s153ms (1.310ms) - First Batch Returned: 4s207ms (54.548ms) - Last Batch Returned: 4s207ms (695.000ns) - Closed: 4s207ms (79.041us) - ConvertRowBatchTime: 3.128us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.316us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 88.00 B - FirstBatchWaitTime: 569.398ms - TotalBytesDequeued: 88.00 B (88) - TotalGetBatchTime: 623.939ms - DataWaitTime: 623.932ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 52.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -28976.000ns ; Min: -28976.000ns ; Max: -28976.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.871us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 52.00 B (52) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000071 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.120 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s818ms (1s818ms) - Open Finished: 4s217ms (2s399ms) - First Batch Produced: 1m3s (58s938ms) - First Batch Sent: 1m3s (3.656us) - ExecInternal Finished: 1m3s (2.777ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 2.22 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 59s410ms - TotalNetworkSendTime: 2.507ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 197 (197) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 533.364ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 58s941ms - ExecTreeExecTime: 58s938ms - OpenTime: 2s399ms - ExecTreeOpenTime: 477.404ms - PrepareTime: 1.169ms - ExecTreePrepareTime: 799.213us KrpcDataStreamSender (dst_id=196):(Total: 2.778ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 28.54 KB/sec ; Min: 28.54 KB/sec ; Max: 28.54 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 651.746us ; Min: 342.552us ; Max: 1.745ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -100178.000ns ; Min: -446877.000ns ; Max: -27512.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.446us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=114):(Total: 59s416ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (477.400ms) - First Batch Requested: 4s217ms (23.492us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (60.758us) - Closed: 1m3s (59.976us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 25.498us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 30.124us Buffer pool: - AllocTime: 9.303us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s415ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (476.716ms) - First Batch Requested: 4s217ms (707.808us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (386.000ns) - Closed: 1m3s (155.121us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s818ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s218ms (4s218ms) - Open Finished: 1m3s (58s818ms) - First Batch Requested: 1m3s (2.151us) - First Batch Returned: 1m3s (2.471us) - Last Batch Returned: 1m3s (245.000ns) - Closed: 1m3s (68.525us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.847us - GetResultsTime: 0.000ns - HTResizeTime: 886.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.756us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s218ms (4s218ms) - Open Finished: 1m3s (58s817ms) - First Batch Requested: 1m3s (1.041ms) - First Batch Returned: 1m3s (5.067us) - Last Batch Returned: 1m3s (269.000ns) - Closed: 1m3s (34.301us) - ConvertRowBatchTime: 2.024us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s817ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s817ms - DataWaitTime: 58s817ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 118.881ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (118.873ms) - First Batch Requested: 1m3s (3.077us) - First Batch Returned: 1m3s (5.272us) - Last Batch Returned: 1m3s (372.000ns) - Closed: 1m3s (33.385us) - ConvertRowBatchTime: 2.104us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 118.868ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 118.870ms - DataWaitTime: 118.868ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 477.074ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s218ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (476.692ms) - First Batch Requested: 4s217ms (724.181us) - First Batch Returned: 4s217ms (37.828us) - Last Batch Returned: 4s218ms (61.987us) - Closed: 4s218ms (101.816us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 33.366us - GetResultsTime: 29.208us - HTResizeTime: 1.937us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.396us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 474.523ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s216ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s157ms (417.233ms) - First Batch Requested: 4s159ms (1.335ms) - First Batch Returned: 4s216ms (57.286ms) - Last Batch Returned: 4s216ms (696.000ns) - Closed: 4s216ms (89.417us) - ConvertRowBatchTime: 3.810us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 5.793us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.222us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 84.00 B - FirstBatchWaitTime: 417.226ms - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 474.504ms - DataWaitTime: 474.495ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 51.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -119880.000ns ; Min: -119880.000ns ; Max: -119880.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 24.899us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 51.00 B (51) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000072 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.120 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s853ms (1s853ms) - Open Finished: 4s219ms (2s365ms) - First Batch Produced: 1m3s (58s936ms) - First Batch Sent: 1m3s (2.735us) - ExecInternal Finished: 1m3s (3.687ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 2.22 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 10 (10) - TotalNetworkReceiveTime: 59s409ms - TotalNetworkSendTime: 2.984ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 7.233ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 58s940ms - ExecTreeExecTime: 58s936ms - OpenTime: 2s365ms - ExecTreeOpenTime: 478.860ms - PrepareTime: 17.871ms - ExecTreePrepareTime: 17.478ms KrpcDataStreamSender (dst_id=196):(Total: 3.444ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 44.00 KB/sec ; Min: 20.43 KB/sec ; Max: 120.36 KB/sec ; Number of samples: 7) - RpcNetworkTime: (Avg: 1.247ms ; Min: 370.126us ; Max: 2.581ms ; Number of samples: 19) - RpcRecvrTime: (Avg: -182714.000ns ; Min: -812141.000ns ; Max: -28684.000ns ; Number of samples: 19) - EosSent: 12 (12) - PeakMemoryUsage: 51.62 KB (52864) - RowsSent: 10 (10) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 33.527us - TotalBytesSent: 525.00 B (525) - UncompressedRowBatchSize: 844.00 B (844) AGGREGATION_NODE (id=114):(Total: 59s433ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s219ms (478.857ms) - First Batch Requested: 4s219ms (21.228us) - First Batch Returned: 1m3s (58s936ms) - Last Batch Returned: 1m3s (357.958us) - Closed: 1m3s (52.924us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 10 (10) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 181.440us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 10 (10) - StreamingTime: 90.729us Buffer pool: - AllocTime: 16.835us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 704.00 KB (720896) - CumulativeAllocations: 11 (11) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 704.00 KB (720896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 7.17K (7168) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s431ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s218ms (478.190ms) - First Batch Requested: 4s219ms (688.093us) - First Batch Returned: 1m3s (58s936ms) - Last Batch Returned: 1m3s (359.000ns) - Closed: 1m3s (154.603us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 10 (10) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s818ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s219ms (4s219ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (3.331us) - First Batch Returned: 1m3s (3.307us) - Last Batch Returned: 1m3s (227.000ns) - Closed: 1m3s (89.524us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.608us - GetResultsTime: 0.000ns - HTResizeTime: 1.161us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.692us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s813ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s219ms (4s219ms) - Open Finished: 1m3s (58s813ms) - First Batch Requested: 1m3s (1.136ms) - First Batch Returned: 1m3s (6.660us) - Last Batch Returned: 1m3s (395.000ns) - Closed: 1m3s (41.466us) - ConvertRowBatchTime: 2.415us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s813ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s813ms - DataWaitTime: 58s813ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 120.217ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (120.209ms) - First Batch Requested: 1m3s (2.807us) - First Batch Returned: 1m3s (4.728us) - Last Batch Returned: 1m3s (318.000ns) - Closed: 1m3s (49.365us) - ConvertRowBatchTime: 2.251us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 120.205ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 120.206ms - DataWaitTime: 120.205ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 478.883ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s219ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s218ms (478.165ms) - First Batch Requested: 4s219ms (702.974us) - First Batch Returned: 4s219ms (28.162us) - Last Batch Returned: 4s219ms (447.808us) - Closed: 4s219ms (59.488us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 10 (10) - RowsReturnedRate: 20.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 147.557us - GetResultsTime: 194.150us - HTResizeTime: 6.688us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 10 (10) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 26.070us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 9.22K (9216) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 476.109ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s218ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s156ms (416.281ms) - First Batch Requested: 4s158ms (1.515ms) - First Batch Returned: 4s218ms (59.823ms) - Last Batch Returned: 4s218ms (439.000ns) - Closed: 4s218ms (196.710us) - ConvertRowBatchTime: 24.945us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 10 (10) - RowsReturnedRate: 21.00 /sec Buffer pool: - AllocTime: 17.076us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 48.00 KB (49152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 48.00 KB (49152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.789us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 340.00 B - FirstBatchWaitTime: 416.273ms - TotalBytesDequeued: 844.00 B (844) - TotalGetBatchTime: 476.023ms - DataWaitTime: 475.975ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 207.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -121439.000ns ; Min: -365842.000ns ; Max: -47213.000ns ; Number of samples: 5) - DeserializeRowBatchTime: 93.257us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 514.00 B (514) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000073 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s874ms (1s874ms) - Open Finished: 4s217ms (2s343ms) - First Batch Produced: 1m3s (58s938ms) - First Batch Sent: 1m3s (2.789us) - ExecInternal Finished: 1m3s (3.730ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 2.22 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 5 (5) - TotalNetworkReceiveTime: 59s409ms - TotalNetworkSendTime: 3.227ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 6.664ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 58s941ms - ExecTreeExecTime: 58s938ms - OpenTime: 2s343ms - ExecTreeOpenTime: 477.409ms - PrepareTime: 14.262ms - ExecTreePrepareTime: 5.004ms KrpcDataStreamSender (dst_id=196):(Total: 3.617ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 33.76 KB/sec ; Min: 17.02 KB/sec ; Max: 67.45 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 1.290ms ; Min: 291.750us ; Max: 3.156ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -161652.000ns ; Min: -1198081.000ns ; Max: -18486.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 5 (5) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.382us - TotalBytesSent: 276.00 B (276) - UncompressedRowBatchSize: 424.00 B (424) AGGREGATION_NODE (id=114):(Total: 59s420ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (477.407ms) - First Batch Requested: 4s217ms (21.865us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (189.840us) - Closed: 1m3s (51.994us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 94.866us - HTResizeTime: 0.000ns - LargestPartitionPercent: 40 (40) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5 (5) - StreamingTime: 57.195us Buffer pool: - AllocTime: 12.721us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s415ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (476.745ms) - First Batch Requested: 4s217ms (684.728us) - First Batch Returned: 1m3s (58s937ms) - Last Batch Returned: 1m3s (621.000ns) - Closed: 1m3s (106.661us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 5 (5) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s817ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s218ms (4s218ms) - Open Finished: 1m3s (58s817ms) - First Batch Requested: 1m3s (2.916us) - First Batch Returned: 1m3s (3.846us) - Last Batch Returned: 1m3s (221.000ns) - Closed: 1m3s (66.568us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.753us - GetResultsTime: 0.000ns - HTResizeTime: 1.254us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.841us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s218ms (4s218ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (1.194ms) - First Batch Returned: 1m3s (5.559us) - Last Batch Returned: 1m3s (272.000ns) - Closed: 1m3s (37.678us) - ConvertRowBatchTime: 2.127us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s815ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 119.631ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (119.624ms) - First Batch Requested: 1m3s (2.915us) - First Batch Returned: 1m3s (4.696us) - Last Batch Returned: 1m3s (412.000ns) - Closed: 1m3s (39.818us) - ConvertRowBatchTime: 2.268us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 119.620ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 119.622ms - DataWaitTime: 119.620ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 477.368ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s218ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (476.723ms) - First Batch Requested: 4s217ms (700.155us) - First Batch Returned: 4s217ms (36.652us) - Last Batch Returned: 4s218ms (337.446us) - Closed: 4s218ms (69.546us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 5 (5) - RowsReturnedRate: 10.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 99.651us - GetResultsTime: 137.571us - HTResizeTime: 1.967us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 23.866us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 474.540ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s216ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s156ms (416.328ms) - First Batch Requested: 4s158ms (1.477ms) - First Batch Returned: 4s216ms (58.208ms) - Last Batch Returned: 4s216ms (540.000ns) - Closed: 4s216ms (139.264us) - ConvertRowBatchTime: 14.952us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 5 (5) - RowsReturnedRate: 10.00 /sec Buffer pool: - AllocTime: 11.842us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.005us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 252.00 B - FirstBatchWaitTime: 416.322ms - TotalBytesDequeued: 424.00 B (424) - TotalGetBatchTime: 474.488ms - DataWaitTime: 474.464ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 162.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -35021.000ns ; Min: -39734.000ns ; Max: -29750.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 61.745us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 273.00 B (273) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000074 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.128 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s880ms (1s880ms) - Open Finished: 4s218ms (2s337ms) - First Batch Produced: 1m3s (58s938ms) - First Batch Sent: 1m3s (2.758us) - ExecInternal Finished: 1m3s (4.677ms) - MemoryUsage (1s000ms): 152.00 KB, 152.00 KB, 2.22 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB, 2.33 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504576) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 59s409ms - TotalNetworkSendTime: 4.154ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 3 (3) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 6.022ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 58s943ms - ExecTreeExecTime: 58s938ms - OpenTime: 2s337ms - ExecTreeOpenTime: 477.469ms - PrepareTime: 5.781ms - ExecTreePrepareTime: 744.441us KrpcDataStreamSender (dst_id=196):(Total: 4.522ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 86.39 KB/sec ; Min: 33.36 KB/sec ; Max: 214.78 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 1.135ms ; Min: 245.530us ; Max: 2.283ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -208074.000ns ; Min: -2051305.000ns ; Max: -28214.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.301us - TotalBytesSent: 217.00 B (217) - UncompressedRowBatchSize: 336.00 B (336) AGGREGATION_NODE (id=114):(Total: 59s417ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (477.465ms) - First Batch Requested: 4s218ms (24.849us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (186.717us) - Closed: 1m3s (53.679us) - PeakMemoryUsage: 2.27 MB (2379904) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 84.825us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.07 MB (2172032) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 56.107us Buffer pool: - AllocTime: 14.566us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=0):(Total: 59s415ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (476.802ms) - First Batch Requested: 4s218ms (690.870us) - First Batch Returned: 1m3s (58s938ms) - Last Batch Returned: 1m3s (451.000ns) - Closed: 1m3s (110.558us) - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 4 (4) - RowsReturnedRate: 0 AGGREGATION_NODE (id=167):(Total: 58s818ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s218ms (4s218ms) - Open Finished: 1m3s (58s818ms) - First Batch Requested: 1m3s (2.802us) - First Batch Returned: 1m3s (3.860us) - Last Batch Returned: 1m3s (233.000ns) - Closed: 1m3s (78.092us) - PeakMemoryUsage: 1.97 MB (2061440) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.866us - GetResultsTime: 0.000ns - HTResizeTime: 1.494us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2053248) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.911us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=166):(Total: 58s815ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s218ms (4s218ms) - Open Finished: 1m3s (58s815ms) - First Batch Requested: 1m3s (1.191ms) - First Batch Returned: 1m3s (8.281us) - Last Batch Returned: 1m3s (350.000ns) - Closed: 1m3s (37.781us) - ConvertRowBatchTime: 2.520us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s815ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s815ms - DataWaitTime: 58s815ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) EXCHANGE_NODE (id=195):(Total: 119.258ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (119.250ms) - First Batch Requested: 1m3s (2.593us) - First Batch Returned: 1m3s (5.151us) - Last Batch Returned: 1m3s (365.000ns) - Closed: 1m3s (33.724us) - ConvertRowBatchTime: 2.183us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 119.246ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 119.248ms - DataWaitTime: 119.246ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) AGGREGATION_NODE (id=140):(Total: 477.279ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s218ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s217ms (476.787ms) - First Batch Requested: 4s218ms (743.074us) - First Batch Returned: 4s218ms (41.086us) - Last Batch Returned: 4s218ms (246.646us) - Closed: 4s218ms (71.840us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 4 (4) - RowsReturnedRate: 8.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 66.596us - GetResultsTime: 93.925us - HTResizeTime: 2.809us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.088us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=139):(Total: 474.935ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s216ms - Open Started: 3s740ms (3s740ms) - Open Finished: 4s158ms (417.841ms) - First Batch Requested: 4s159ms (1.147ms) - First Batch Returned: 4s216ms (57.089ms) - Last Batch Returned: 4s216ms (550.000ns) - Closed: 4s216ms (112.212us) - ConvertRowBatchTime: 9.794us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 4 (4) - RowsReturnedRate: 8.00 /sec Buffer pool: - AllocTime: 11.022us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.816us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 252.00 B - FirstBatchWaitTime: 417.835ms - TotalBytesDequeued: 336.00 B (336) - TotalGetBatchTime: 474.898ms - DataWaitTime: 474.878ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 162.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -242354.000ns ; Min: -644604.000ns ; Max: -35594.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 53.802us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 216.00 B (216) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F22:(Total: 3s059ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s263ms max:8s064ms mean: 7s209ms stddev:736.381ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4504160) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 54.583ms - TotalNetworkSendTime: 2.401ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 206 (206) - TotalThreadsTotalWallClockTime: 3s051ms - TotalThreadsSysTime: 2.157ms - TotalThreadsUserTime: 253.057ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 63.465ms - ExecTreeExecTime: 60.522ms - OpenTime: 2s987ms - ExecTreeOpenTime: 3.153ms - PrepareTime: 7.939ms - ExecTreePrepareTime: 7.528ms KrpcDataStreamSender (dst_id=139):(Total: 2.815ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 33.62 KB (34432) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.775us - TotalBytesSent: 177.00 B (177) - UncompressedRowBatchSize: 282.00 B (282) AGGREGATION_NODE (id=37):(Total: 71.198ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 184.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 82.954us - HTResizeTime: 0.000ns - LargestPartitionPercent: 49 (49) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 48.605us Buffer pool: - AllocTime: 11.130us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 453.33 KB (464213) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 453.33 KB (464213) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 386.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.16K (3157) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 68.806ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 219.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 10.412ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 89.00 /sec AGGREGATION_NODE (id=126):(Total: 9.706ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 106.00 /sec GroupingAggregator 0: - BuildTime: 10.823us - GetResultsTime: 9.087us - HTResizeTime: 1.346us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046421) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.079us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 277.33 KB (283989) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 277.33 KB (283989) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.036us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 341 (341) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 7.373ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 2.625us - PeakMemoryUsage: 5.33 KB (5461) - RowsReturned: 0 (0) - RowsReturnedRate: 8.54 K/sec Buffer pool: - AllocTime: 1.744us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 5.33 KB (5461) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 5.33 KB (5461) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.33 KB (5461) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 252.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 7.357ms - TotalBytesDequeued: 15.00 B (15) - TotalGetBatchTime: 7.361ms - DataWaitTime: 7.357ms Enqueue: - DeserializeRowBatchTime: 7.966us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 8.00 B (8) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 49.749ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 2 (2) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.532us - RowsReturned: 2 (2) - RowsReturnedRate: 520.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 49.213ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 679.00 /sec GroupingAggregator 0: - BuildTime: 45.222us - GetResultsTime: 61.965us - HTResizeTime: 1.978us - LargestPartitionPercent: 24 (24) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2048810) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.816us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 405.33 KB (415061) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 405.33 KB (415061) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 565.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.39K (2389) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 47.215ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 7.852us - PeakMemoryUsage: 24.67 KB (25258) - RowsReturned: 5 (5) - RowsReturnedRate: 74.27 K/sec Buffer pool: - AllocTime: 8.950us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 29.33 KB (30037) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 24.67 KB (25258) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.67 KB (25258) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.618us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 9.326ms - TotalBytesDequeued: 225.00 B (225) - TotalGetBatchTime: 47.190ms - DataWaitTime: 47.055ms Enqueue: - DeserializeRowBatchTime: 35.648us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 117.00 B (117) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 14.964ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.153us - RowsReturned: 0 (0) - RowsReturnedRate: 114.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 8.355ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 140.00 /sec GroupingAggregator 0: - BuildTime: 16.478us - GetResultsTime: 15.114us - HTResizeTime: 1.315us - LargestPartitionPercent: 3 (3) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046762) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.713us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 288.00 KB (294912) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.159us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 512 (512) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 71.720us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 13.681us - PeakMemoryUsage: 80.00 KB (81920) - RowsReturned: 6 (6) - RowsReturnedRate: 39.83 K/sec Buffer pool: - AllocTime: 22.216us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 80.00 KB (81920) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 80.00 KB (81920) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.737us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 24.994us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 98.026us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 154.00 B (154) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F22: Instance 50467cb8e73eeac4:853461b400000012 (host=tarmstrong-Precision-7540:22002):(Total: 3s895ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.136 Fragment Instance Lifecycle Event Timeline: 4s195ms - Prepare Finished: 300.869ms (300.869ms) - Open Finished: 4s155ms (3s854ms) - First Batch Produced: 4s189ms (33.952ms) - First Batch Sent: 4s189ms (10.225us) - ExecInternal Finished: 4s195ms (5.773ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 307.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.33 MB (4544896) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 28.112ms - TotalNetworkSendTime: 2.618ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1.09K (1088) - TotalThreadsTotalWallClockTime: 3s894ms - TotalThreadsSysTime: 12.168ms - TotalThreadsUserTime: 1s005ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 39.581ms - ExecTreeExecTime: 34.077ms - OpenTime: 3s854ms - ExecTreeOpenTime: 3.059ms - PrepareTime: 1.296ms - ExecTreePrepareTime: 958.511us KrpcDataStreamSender (dst_id=139):(Total: 3.158ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 24.07 KB/sec ; Min: 16.50 KB/sec ; Max: 31.63 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 1.010ms ; Min: 223.884us ; Max: 3.196ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -155107.000ns ; Min: -1533494.000ns ; Max: -25232.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.313us - TotalBytesSent: 109.00 B (109) - UncompressedRowBatchSize: 170.00 B (170) AGGREGATION_NODE (id=37):(Total: 38.089ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s191ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s155ms (3.056ms) - First Batch Requested: 4s155ms (21.020us) - First Batch Returned: 4s189ms (33.947ms) - Last Batch Returned: 4s189ms (154.852us) - Closed: 4s191ms (2.465ms) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 2 (2) - RowsReturnedRate: 52.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 72.217us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 36.426us Buffer pool: - AllocTime: 12.481us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.783us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 36.288ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s188ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.249ms) - First Batch Requested: 4s155ms (827.428us) - First Batch Returned: 4s188ms (33.189ms) - Last Batch Returned: 4s188ms (350.000ns) - Closed: 4s188ms (58.465us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 2 (2) - RowsReturnedRate: 55.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 2.212ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s157ms - Open Started: 4s155ms (4s155ms) - Waiting for builder: 4s157ms (1.706ms) - Initial build available: 4s157ms (2.427us) - Open Finished: 4s157ms (7.553us) - First Batch Requested: 4s157ms (1.062us) - First Batch Returned: 4s157ms (7.179us) - Last Batch Returned: 4s157ms (348.000ns) - Closed: 4s157ms (66.285us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 1.916ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s157ms - Open Started: 4s155ms (4s155ms) - Open Finished: 4s157ms (1.696ms) - First Batch Requested: 4s157ms (7.516us) - First Batch Returned: 4s157ms (3.647us) - Last Batch Returned: 4s157ms (372.000ns) - Closed: 4s157ms (73.960us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.578us - GetResultsTime: 0.000ns - HTResizeTime: 1.122us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.217us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 9.620us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s156ms - Open Started: 4s155ms (4s155ms) - Open Finished: 4s155ms (2.331us) - First Batch Requested: 4s156ms (1.003ms) - First Batch Returned: 4s156ms (5.301us) - Last Batch Returned: 4s156ms (331.000ns) - Closed: 4s156ms (34.276us) - ConvertRowBatchTime: 1.893us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.228us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 31.567ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s188ms - Open Started: 4s157ms (4s157ms) - Waiting for builder: 4s188ms (30.847ms) - Initial build available: 4s188ms (2.924us) - Open Finished: 4s188ms (58.321us) - First Batch Requested: 4s188ms (1.505us) - First Batch Returned: 4s188ms (10.170us) - Last Batch Returned: 4s188ms (150.836us) - Closed: 4s188ms (102.760us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.240us - RowsReturned: 1 (1) - RowsReturnedRate: 31.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 31.088ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s188ms - Open Started: 4s157ms (4s157ms) - Open Finished: 4s188ms (30.783ms) - First Batch Requested: 4s188ms (74.556us) - First Batch Returned: 4s188ms (36.873us) - Last Batch Returned: 4s188ms (68.713us) - Closed: 4s188ms (187.327us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 32.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 34.367us - GetResultsTime: 29.138us - HTResizeTime: 2.678us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.609us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 28.088ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s186ms - Open Started: 4s157ms (4s157ms) - Open Finished: 4s157ms (3.259us) - First Batch Requested: 4s158ms (1.022ms) - First Batch Returned: 4s186ms (28.082ms) - Last Batch Returned: 4s186ms (787.000ns) - Closed: 4s186ms (89.448us) - ConvertRowBatchTime: 6.931us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 71.00 /sec Buffer pool: - AllocTime: 7.471us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.287us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 28.058ms - DataWaitTime: 27.974ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 24.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -76937.000ns ; Min: -82892.000ns ; Max: -70983.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 39.621us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.897ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s152ms (4s152ms) - Waiting for builder: 4s154ms (2.143ms) - Initial build available: 4s154ms (2.994us) - Open Finished: 4s154ms (68.629us) - First Batch Requested: 4s155ms (837.921us) - First Batch Returned: 4s155ms (9.921us) - Last Batch Returned: 4s155ms (115.504us) - Closed: 4s155ms (80.900us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.758us - RowsReturned: 1 (1) - RowsReturnedRate: 345.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 2.384ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.062ms) - First Batch Requested: 4s154ms (93.010us) - First Batch Returned: 4s154ms (42.941us) - Last Batch Returned: 4s155ms (892.472us) - Closed: 4s155ms (144.713us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 419.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 28.765us - GetResultsTime: 34.393us - HTResizeTime: 1.654us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.659us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 126.544us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s153ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s152ms (4.292us) - First Batch Requested: 4s153ms (1.057ms) - First Batch Returned: 4s153ms (119.920us) - Last Batch Returned: 4s153ms (438.000ns) - Closed: 4s153ms (89.946us) - ConvertRowBatchTime: 23.956us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 12 (12) - RowsReturnedRate: 94.83 K/sec Buffer pool: - AllocTime: 63.907us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.348us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 45.787us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 208.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -126159.000ns ; Min: -314073.000ns ; Max: -38326.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 244.742us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000013 (host=tarmstrong-Precision-7540:22002):(Total: 3s869ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.135 Fragment Instance Lifecycle Event Timeline: 4s195ms - Prepare Finished: 327.474ms (327.474ms) - Open Finished: 4s154ms (3s827ms) - First Batch Produced: 4s194ms (39.617ms) - First Batch Sent: 4s194ms (2.904us) - ExecInternal Finished: 4s195ms (1.722ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4505728) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 29.185ms - TotalNetworkSendTime: 1.041ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 7 (7) - TotalThreadsTotalWallClockTime: 3s868ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 7.769ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 41.272ms - ExecTreeExecTime: 39.805ms - OpenTime: 3s827ms - ExecTreeOpenTime: 2.307ms - PrepareTime: 1.314ms - ExecTreePrepareTime: 921.521us KrpcDataStreamSender (dst_id=139):(Total: 1.537ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 153.09 KB/sec ; Min: 108.64 KB/sec ; Max: 177.22 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 381.496us ; Min: 170.185us ; Max: 916.832us ; Number of samples: 15) - RpcRecvrTime: (Avg: -55472.000ns ; Min: -270912.000ns ; Max: -24469.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.380us - TotalBytesSent: 209.00 B (209) - UncompressedRowBatchSize: 340.00 B (340) AGGREGATION_NODE (id=37):(Total: 43.028ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s194ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.305ms) - First Batch Requested: 4s154ms (21.901us) - First Batch Returned: 4s194ms (39.611ms) - Last Batch Returned: 4s194ms (273.626us) - Closed: 4s194ms (69.027us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 4 (4) - RowsReturnedRate: 92.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 112.055us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 57.375us Buffer pool: - AllocTime: 11.761us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 35.573ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s187ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s153ms (1.570ms) - First Batch Requested: 4s154ms (759.779us) - First Batch Returned: 4s187ms (33.187ms) - Last Batch Returned: 4s187ms (480.000ns) - Closed: 4s187ms (112.821us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 4 (4) - RowsReturnedRate: 112.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 2.091ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s156ms - Open Started: 4s154ms (4s154ms) - Waiting for builder: 4s156ms (1.560ms) - Initial build available: 4s156ms (1.837us) - Open Finished: 4s156ms (29.990us) - First Batch Requested: 4s156ms (901.000ns) - First Batch Returned: 4s156ms (9.389us) - Last Batch Returned: 4s156ms (36.680us) - Closed: 4s156ms (68.032us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 478.00 /sec AGGREGATION_NODE (id=126):(Total: 1.804ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s156ms - Open Started: 4s154ms (4s154ms) - Open Finished: 4s156ms (1.549ms) - First Batch Requested: 4s156ms (5.886us) - First Batch Returned: 4s156ms (27.383us) - Last Batch Returned: 4s156ms (43.589us) - Closed: 4s156ms (70.513us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 554.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 28.503us - GetResultsTime: 22.581us - HTResizeTime: 2.971us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.291us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 20.570us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s154ms (4s154ms) - Open Finished: 4s154ms (3.248us) - First Batch Requested: 4s155ms (1.007ms) - First Batch Returned: 4s155ms (14.633us) - Last Batch Returned: 4s155ms (353.000ns) - Closed: 4s155ms (75.972us) - ConvertRowBatchTime: 3.293us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 48.61 K/sec Buffer pool: - AllocTime: 4.916us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 6.771us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -74016.000ns ; Min: -74016.000ns ; Max: -74016.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 25.536us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 31.631ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s187ms - Open Started: 4s156ms (4s156ms) - Waiting for builder: 4s187ms (30.796ms) - Initial build available: 4s187ms (3.113us) - Open Finished: 4s187ms (60.352us) - First Batch Requested: 4s187ms (2.158us) - First Batch Returned: 4s187ms (10.973us) - Last Batch Returned: 4s187ms (321.666us) - Closed: 4s187ms (108.276us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.894us - RowsReturned: 3 (3) - RowsReturnedRate: 94.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 31.136ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s187ms - Open Started: 4s156ms (4s156ms) - Open Finished: 4s187ms (30.733ms) - First Batch Requested: 4s187ms (76.363us) - First Batch Returned: 4s187ms (38.833us) - Last Batch Returned: 4s187ms (222.786us) - Closed: 4s187ms (211.687us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 96.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 80.550us - GetResultsTime: 83.008us - HTResizeTime: 2.074us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.369us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.462us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 29.203ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s186ms - Open Started: 4s156ms (4s156ms) - Open Finished: 4s156ms (2.145us) - First Batch Requested: 4s157ms (822.346us) - First Batch Returned: 4s186ms (29.197ms) - Last Batch Returned: 4s186ms (724.000ns) - Closed: 4s186ms (126.899us) - ConvertRowBatchTime: 11.343us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 6 (6) - RowsReturnedRate: 205.00 /sec Buffer pool: - AllocTime: 8.365us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.263us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 29.172ms - DataWaitTime: 29.158ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 71.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -49976.000ns ; Min: -58113.000ns ; Max: -41840.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 37.577us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 142.00 B (142) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.172ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s154ms - Open Started: 4s152ms (4s152ms) - Waiting for builder: 4s153ms (1.504ms) - Initial build available: 4s153ms (3.381us) - Open Finished: 4s153ms (28.772us) - First Batch Requested: 4s154ms (776.209us) - First Batch Returned: 4s154ms (9.126us) - Last Batch Returned: 4s154ms (35.724us) - Closed: 4s154ms (105.648us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 939.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 1.703ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s154ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s153ms (1.440ms) - First Batch Requested: 4s153ms (73.175us) - First Batch Returned: 4s153ms (6.387us) - Last Batch Returned: 4s153ms (272.000ns) - Closed: 4s154ms (918.275us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.878us - GetResultsTime: 0.000ns - HTResizeTime: 1.081us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.649us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 11.861us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s153ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s152ms (3.830us) - First Batch Requested: 4s153ms (879.458us) - First Batch Returned: 4s153ms (6.154us) - Last Batch Returned: 4s153ms (309.000ns) - Closed: 4s153ms (52.526us) - ConvertRowBatchTime: 2.229us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 2.312us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000014 (host=tarmstrong-Precision-7540:22002):(Total: 3s851ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.137 Fragment Instance Lifecycle Event Timeline: 4s194ms - Prepare Finished: 344.070ms (344.070ms) - Open Finished: 4s155ms (3s811ms) - First Batch Produced: 4s192ms (37.060ms) - First Batch Sent: 4s192ms (2.753us) - ExecInternal Finished: 4s194ms (1.765ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 307.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.33 MB (4544896) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 28.579ms - TotalNetworkSendTime: 1.008ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 11 (11) - TotalThreadsTotalWallClockTime: 3s850ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.829ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 38.742ms - ExecTreeExecTime: 37.341ms - OpenTime: 3s811ms - ExecTreeOpenTime: 3.371ms - PrepareTime: 1.489ms - ExecTreePrepareTime: 1.080ms KrpcDataStreamSender (dst_id=139):(Total: 1.467ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 203.26 KB/sec ; Min: 111.21 KB/sec ; Max: 290.99 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 460.573us ; Min: 223.776us ; Max: 754.489us ; Number of samples: 17) - RpcRecvrTime: (Avg: -64075.000ns ; Min: -202093.000ns ; Max: -28227.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 43.62 KB (44672) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 28.802us - TotalBytesSent: 326.00 B (326) - UncompressedRowBatchSize: 506.00 B (506) AGGREGATION_NODE (id=37):(Total: 41.786ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s193ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s155ms (3.369ms) - First Batch Requested: 4s155ms (22.674us) - First Batch Returned: 4s192ms (37.055ms) - Last Batch Returned: 4s193ms (352.103us) - Closed: 4s193ms (65.600us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 6 (6) - RowsReturnedRate: 143.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 174.567us - HTResizeTime: 0.000ns - LargestPartitionPercent: 16 (16) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 86.462us Buffer pool: - AllocTime: 16.114us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 640.00 KB (655360) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6.14K (6144) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 40.038ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s192ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.505ms) - First Batch Requested: 4s155ms (888.540us) - First Batch Returned: 4s192ms (36.580ms) - Last Batch Returned: 4s192ms (390.000ns) - Closed: 4s192ms (140.414us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 6 (6) - RowsReturnedRate: 149.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 2.726ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s158ms - Open Started: 4s155ms (4s155ms) - Waiting for builder: 4s158ms (2.163ms) - Initial build available: 4s158ms (2.250us) - Open Finished: 4s158ms (8.777us) - First Batch Requested: 4s158ms (957.000ns) - First Batch Returned: 4s158ms (6.389us) - Last Batch Returned: 4s158ms (322.000ns) - Closed: 4s158ms (74.528us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 2.400ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s158ms - Open Started: 4s155ms (4s155ms) - Open Finished: 4s158ms (2.154ms) - First Batch Requested: 4s158ms (8.393us) - First Batch Returned: 4s158ms (3.685us) - Last Batch Returned: 4s158ms (355.000ns) - Closed: 4s158ms (81.197us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.702us - GetResultsTime: 0.000ns - HTResizeTime: 1.431us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.556us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 11.538us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s157ms - Open Started: 4s155ms (4s155ms) - Open Finished: 4s155ms (2.613us) - First Batch Requested: 4s157ms (1.172ms) - First Batch Returned: 4s157ms (6.464us) - Last Batch Returned: 4s157ms (399.000ns) - Closed: 4s157ms (41.939us) - ConvertRowBatchTime: 2.464us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.329us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 31.323ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s192ms - Open Started: 4s158ms (4s158ms) - Waiting for builder: 4s188ms (30.272ms) - Initial build available: 4s188ms (2.873us) - Open Finished: 4s188ms (54.394us) - First Batch Requested: 4s188ms (1.176us) - First Batch Returned: 4s188ms (9.597us) - Last Batch Returned: 4s188ms (447.340us) - Closed: 4s192ms (3.246ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 5 (5) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 5.509us - RowsReturned: 5 (5) - RowsReturnedRate: 159.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 30.736ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s192ms - Open Started: 4s158ms (4s158ms) - Open Finished: 4s188ms (30.212ms) - First Batch Requested: 4s188ms (69.441us) - First Batch Returned: 4s188ms (35.144us) - Last Batch Returned: 4s188ms (325.393us) - Closed: 4s192ms (3.370ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 5 (5) - RowsReturnedRate: 162.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 82.371us - GetResultsTime: 140.002us - HTResizeTime: 2.379us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.742us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 28.553ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s188ms - Open Started: 4s158ms (4s158ms) - Open Finished: 4s158ms (3.515us) - First Batch Requested: 4s159ms (1.165ms) - First Batch Returned: 4s187ms (28.546ms) - Last Batch Returned: 4s187ms (687.000ns) - Closed: 4s188ms (120.835us) - ConvertRowBatchTime: 11.128us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 10 (10) - RowsReturnedRate: 350.00 /sec Buffer pool: - AllocTime: 7.175us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.668us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 450.00 B (450) - TotalGetBatchTime: 28.522ms - DataWaitTime: 27.088ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 116.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -88055.000ns ; Min: -140500.000ns ; Max: -35611.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 34.779us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 231.00 B (231) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 3.252ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s152ms (4s152ms) - Waiting for builder: 4s154ms (2.403ms) - Initial build available: 4s154ms (2.933us) - Open Finished: 4s154ms (70.193us) - First Batch Requested: 4s155ms (906.194us) - First Batch Returned: 4s155ms (10.864us) - Last Batch Returned: 4s155ms (133.325us) - Closed: 4s155ms (118.700us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.513us - RowsReturned: 1 (1) - RowsReturnedRate: 307.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 2.702ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.331ms) - First Batch Requested: 4s154ms (87.233us) - First Batch Returned: 4s154ms (45.583us) - Last Batch Returned: 4s155ms (976.428us) - Closed: 4s155ms (185.767us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 370.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 24.117us - GetResultsTime: 37.826us - HTResizeTime: 1.321us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.193us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 133.580us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s153ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s152ms (3.563us) - First Batch Requested: 4s153ms (1.218ms) - First Batch Returned: 4s153ms (127.353us) - Last Batch Returned: 4s153ms (504.000ns) - Closed: 4s153ms (102.148us) - ConvertRowBatchTime: 25.995us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 12 (12) - RowsReturnedRate: 89.83 K/sec Buffer pool: - AllocTime: 40.739us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.269us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 48.969us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 208.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -217515.000ns ; Min: -1031975.000ns ; Max: -35749.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 219.324us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 311.00 B (311) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000015 (host=tarmstrong-Precision-7540:22002):(Total: 3s828ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.133 Fragment Instance Lifecycle Event Timeline: 4s195ms - Prepare Finished: 367.835ms (367.835ms) - Open Finished: 4s155ms (3s787ms) - First Batch Produced: 4s192ms (36.665ms) - First Batch Sent: 4s192ms (3.863us) - ExecInternal Finished: 4s195ms (3.232ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 27.728ms - TotalNetworkSendTime: 2.577ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 3s827ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.964ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 39.518ms - ExecTreeExecTime: 36.725ms - OpenTime: 3s787ms - ExecTreeOpenTime: 3.153ms - PrepareTime: 1.308ms - ExecTreePrepareTime: 930.285us KrpcDataStreamSender (dst_id=139):(Total: 2.839ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 23.75 KB/sec ; Min: 23.75 KB/sec ; Max: 23.75 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 740.637us ; Min: 297.315us ; Max: 2.261ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -85493.000ns ; Min: -392260.000ns ; Max: -25742.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.238us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=37):(Total: 40.804ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s192ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s155ms (3.150ms) - First Batch Requested: 4s155ms (23.856us) - First Batch Returned: 4s192ms (36.660ms) - Last Batch Returned: 4s192ms (81.837us) - Closed: 4s192ms (81.579us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 24.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 36.415us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 23.348us Buffer pool: - AllocTime: 7.997us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 35.163ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s187ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.296ms) - First Batch Requested: 4s155ms (879.763us) - First Batch Returned: 4s187ms (32.050ms) - Last Batch Returned: 4s187ms (430.000ns) - Closed: 4s187ms (73.698us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 28.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 2.448ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s157ms - Open Started: 4s155ms (4s155ms) - Waiting for builder: 4s157ms (1.953ms) - Initial build available: 4s157ms (2.544us) - Open Finished: 4s157ms (8.510us) - First Batch Requested: 4s157ms (1.548us) - First Batch Returned: 4s157ms (8.012us) - Last Batch Returned: 4s157ms (333.000ns) - Closed: 4s157ms (92.845us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 2.159ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s157ms - Open Started: 4s155ms (4s155ms) - Open Finished: 4s157ms (1.943ms) - First Batch Requested: 4s157ms (8.132us) - First Batch Returned: 4s157ms (3.915us) - Last Batch Returned: 4s157ms (383.000ns) - Closed: 4s157ms (102.000us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.731us - GetResultsTime: 0.000ns - HTResizeTime: 1.300us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.492us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.742us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 12.383us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s156ms - Open Started: 4s155ms (4s155ms) - Open Finished: 4s155ms (2.708us) - First Batch Requested: 4s156ms (1.154ms) - First Batch Returned: 4s156ms (6.942us) - Last Batch Returned: 4s156ms (395.000ns) - Closed: 4s156ms (43.357us) - ConvertRowBatchTime: 2.408us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.384us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 30.167ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s187ms - Open Started: 4s157ms (4s157ms) - Waiting for builder: 4s187ms (29.531ms) - Initial build available: 4s187ms (3.484us) - Open Finished: 4s187ms (53.412us) - First Batch Requested: 4s187ms (1.361us) - First Batch Returned: 4s187ms (8.548us) - Last Batch Returned: 4s187ms (115.079us) - Closed: 4s187ms (108.237us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.266us - RowsReturned: 1 (1) - RowsReturnedRate: 33.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 29.737ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s187ms - Open Started: 4s157ms (4s157ms) - Open Finished: 4s187ms (29.475ms) - First Batch Requested: 4s187ms (65.180us) - First Batch Returned: 4s187ms (33.428us) - Last Batch Returned: 4s187ms (52.733us) - Closed: 4s187ms (174.302us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 33.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 28.846us - GetResultsTime: 26.174us - HTResizeTime: 2.141us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.697us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 27.749ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s186ms - Open Started: 4s157ms (4s157ms) - Open Finished: 4s157ms (3.442us) - First Batch Requested: 4s158ms (1.143ms) - First Batch Returned: 4s186ms (27.742ms) - Last Batch Returned: 4s186ms (1.018us) - Closed: 4s186ms (72.930us) - ConvertRowBatchTime: 7.183us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 72.00 /sec Buffer pool: - AllocTime: 37.949us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.389us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 27.721ms - DataWaitTime: 27.708ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 24.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -46408.000ns ; Min: -52912.000ns ; Max: -39904.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 64.614us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.876ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s152ms (4s152ms) - Waiting for builder: 4s154ms (2.232ms) - Initial build available: 4s154ms (3.116us) - Open Finished: 4s154ms (32.775us) - First Batch Requested: 4s155ms (895.263us) - First Batch Returned: 4s155ms (8.968us) - Last Batch Returned: 4s155ms (37.767us) - Closed: 4s155ms (90.021us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 500.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 2.410ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s155ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s154ms (2.158ms) - First Batch Requested: 4s154ms (89.673us) - First Batch Returned: 4s154ms (6.198us) - Last Batch Returned: 4s154ms (546.000ns) - Closed: 4s155ms (1.025ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.789us - GetResultsTime: 0.000ns - HTResizeTime: 1.292us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.973us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.921us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 11.686us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s153ms - Open Started: 4s152ms (4s152ms) - Open Finished: 4s152ms (2.781us) - First Batch Requested: 4s153ms (1.194ms) - First Batch Returned: 4s153ms (6.515us) - Last Batch Returned: 4s153ms (401.000ns) - Closed: 4s153ms (42.351us) - ConvertRowBatchTime: 2.453us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.421us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000016 (host=tarmstrong-Precision-7540:22000):(Total: 3s077ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.206 Fragment Instance Lifecycle Event Timeline: 4s147ms - Prepare Finished: 1s071ms (1s071ms) - Open Finished: 4s008ms (2s937ms) - First Batch Produced: 4s145ms (136.214ms) - First Batch Sent: 4s145ms (5.517us) - ExecInternal Finished: 4s147ms (2.688ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 131.186ms - TotalNetworkSendTime: 2.359ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 984 (984) - TotalThreadsTotalWallClockTime: 3s075ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s012ms - TotalThreadsVoluntaryContextSwitches: 27 (27) Fragment Instance Lifecycle Timings: - ExecTime: 138.853ms - ExecTreeExecTime: 136.257ms - OpenTime: 2s937ms - ExecTreeOpenTime: 7.306ms - PrepareTime: 1.743ms - ExecTreePrepareTime: 1.300ms KrpcDataStreamSender (dst_id=139):(Total: 2.674ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 33.93 KB/sec ; Min: 33.93 KB/sec ; Max: 33.93 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 948.478us ; Min: 352.124us ; Max: 1.583ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -298130.000ns ; Min: -1321174.000ns ; Max: -38872.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.768us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=37):(Total: 144.859ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s145ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s008ms (7.302ms) - First Batch Requested: 4s008ms (25.465us) - First Batch Returned: 4s145ms (136.209ms) - Last Batch Returned: 4s145ms (55.600us) - Closed: 4s145ms (79.918us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 6.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 21.359us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 23.270us Buffer pool: - AllocTime: 8.273us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 142.746ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s144ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s007ms (6.125ms) - First Batch Requested: 4s008ms (1.206ms) - First Batch Returned: 4s144ms (135.559ms) - Last Batch Returned: 4s144ms (267.000ns) - Closed: 4s144ms (43.275us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 7.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 20.946ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s029ms - Open Started: 4s009ms (4s009ms) - Waiting for builder: 4s029ms (20.383ms) - Initial build available: 4s029ms (2.671us) - Open Finished: 4s029ms (7.384us) - First Batch Requested: 4s029ms (1.476us) - First Batch Returned: 4s029ms (6.628us) - Last Batch Returned: 4s029ms (316.000ns) - Closed: 4s029ms (73.015us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 20.611ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s029ms - Open Started: 4s009ms (4s009ms) - Open Finished: 4s029ms (20.371ms) - First Batch Requested: 4s029ms (7.770us) - First Batch Returned: 4s029ms (3.643us) - Last Batch Returned: 4s029ms (337.000ns) - Closed: 4s029ms (80.673us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.913us - GetResultsTime: 0.000ns - HTResizeTime: 1.417us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.554us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.839us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 18.513ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s028ms - Open Started: 4s009ms (4s009ms) - Open Finished: 4s027ms (18.503ms) - First Batch Requested: 4s028ms (1.174ms) - First Batch Returned: 4s028ms (6.982us) - Last Batch Returned: 4s028ms (371.000ns) - Closed: 4s028ms (40.424us) - ConvertRowBatchTime: 3.138us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 18.497ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 18.500ms - DataWaitTime: 18.497ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 115.382ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s144ms - Open Started: 4s029ms (4s029ms) - Waiting for builder: 4s144ms (114.566ms) - Initial build available: 4s144ms (2.466us) - Open Finished: 4s144ms (54.892us) - First Batch Requested: 4s144ms (1.101us) - First Batch Returned: 4s144ms (8.477us) - Last Batch Returned: 4s144ms (162.735us) - Closed: 4s144ms (94.721us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.363us - RowsReturned: 1 (1) - RowsReturnedRate: 8.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 114.855ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s144ms - Open Started: 4s029ms (4s029ms) - Open Finished: 4s144ms (114.498ms) - First Batch Requested: 4s144ms (76.778us) - First Batch Returned: 4s144ms (35.500us) - Last Batch Returned: 4s144ms (121.124us) - Closed: 4s144ms (137.059us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 8.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 32.998us - GetResultsTime: 29.477us - HTResizeTime: 2.424us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.445us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 112.710ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s143ms - Open Started: 4s029ms (4s029ms) - Open Finished: 4s029ms (2.641us) - First Batch Requested: 4s030ms (1.145ms) - First Batch Returned: 4s143ms (112.703ms) - Last Batch Returned: 4s143ms (931.000ns) - Closed: 4s143ms (85.477us) - ConvertRowBatchTime: 7.964us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 17.00 /sec Buffer pool: - AllocTime: 8.357us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.971us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 112.680ms - DataWaitTime: 112.667ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 25.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -81033.000ns ; Min: -102219.000ns ; Max: -59847.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 38.767us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 3.109ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s009ms - Open Started: 4s005ms (4s005ms) - Waiting for builder: 4s007ms (2.240ms) - Initial build available: 4s007ms (3.516us) - Open Finished: 4s007ms (48.772us) - First Batch Requested: 4s008ms (1.222ms) - First Batch Returned: 4s008ms (9.765us) - Last Batch Returned: 4s009ms (40.387us) - Closed: 4s009ms (119.510us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 701.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 2.516ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s009ms - Open Started: 4s005ms (4s005ms) - Open Finished: 4s007ms (2.167ms) - First Batch Requested: 4s007ms (103.679us) - First Batch Returned: 4s007ms (5.525us) - Last Batch Returned: 4s007ms (487.000ns) - Closed: 4s009ms (1.386ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.267us - GetResultsTime: 0.000ns - HTResizeTime: 1.339us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.592us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.001us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 12.342us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s006ms - Open Started: 4s005ms (4s005ms) - Open Finished: 4s005ms (2.640us) - First Batch Requested: 4s006ms (1.193ms) - First Batch Returned: 4s006ms (7.022us) - Last Batch Returned: 4s006ms (431.000ns) - Closed: 4s006ms (59.056us) - ConvertRowBatchTime: 2.508us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.371us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000017 (host=tarmstrong-Precision-7540:22000):(Total: 3s048ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.205 Fragment Instance Lifecycle Event Timeline: 4s151ms - Prepare Finished: 1s167ms (1s167ms) - Open Finished: 4s004ms (2s836ms) - First Batch Produced: 4s145ms (140.715ms) - First Batch Sent: 4s145ms (3.255us) - ExecInternal Finished: 4s151ms (6.529ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 307.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.33 MB (4544896) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 7 (7) - TotalNetworkReceiveTime: 135.497ms - TotalNetworkSendTime: 5.868ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s984ms - TotalThreadsSysTime: 2.292ms - TotalThreadsUserTime: 7.491ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 147.167ms - ExecTreeExecTime: 140.958ms - OpenTime: 2s836ms - ExecTreeOpenTime: 3.184ms - PrepareTime: 64.352ms - ExecTreePrepareTime: 63.939ms KrpcDataStreamSender (dst_id=139):(Total: 6.293ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 174.55 KB/sec ; Min: 9.22 KB/sec ; Max: 345.58 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 1.858ms ; Min: 318.995us ; Max: 6.038ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -322765.000ns ; Min: -2751093.000ns ; Max: -29358.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 7 (7) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 30.979us - TotalBytesSent: 367.00 B (367) - UncompressedRowBatchSize: 596.00 B (596) AGGREGATION_NODE (id=37):(Total: 208.074ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s145ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s004ms (3.179ms) - First Batch Requested: 4s004ms (22.243us) - First Batch Returned: 4s145ms (140.710ms) - Last Batch Returned: 4s145ms (302.112us) - Closed: 4s145ms (79.527us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 7 (7) - RowsReturnedRate: 33.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 128.238us - HTResizeTime: 0.000ns - LargestPartitionPercent: 28 (28) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 7 (7) - StreamingTime: 90.079us Buffer pool: - AllocTime: 14.412us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.296us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 206.523ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s145ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s003ms (2.468ms) - First Batch Requested: 4s004ms (734.336us) - First Batch Returned: 4s144ms (140.241ms) - Last Batch Returned: 4s144ms (345.000ns) - Closed: 4s145ms (149.538us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 7 (7) - RowsReturnedRate: 33.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 24.529ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s029ms - Open Started: 4s004ms (4s004ms) - Waiting for builder: 4s028ms (23.876ms) - Initial build available: 4s028ms (3.870us) - Open Finished: 4s028ms (44.842us) - First Batch Requested: 4s028ms (2.549us) - First Batch Returned: 4s028ms (13.072us) - Last Batch Returned: 4s028ms (52.919us) - Closed: 4s029ms (86.654us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 40.00 /sec AGGREGATION_NODE (id=126):(Total: 24.181ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s029ms - Open Started: 4s004ms (4s004ms) - Open Finished: 4s028ms (23.866ms) - First Batch Requested: 4s028ms (10.671us) - First Batch Returned: 4s028ms (40.607us) - Last Batch Returned: 4s028ms (64.525us) - Closed: 4s029ms (90.231us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 41.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 25.005us - GetResultsTime: 32.488us - HTResizeTime: 1.400us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.131us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.852us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 21.959ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s028ms - Open Started: 4s004ms (4s004ms) - Open Finished: 4s026ms (21.940ms) - First Batch Requested: 4s028ms (1.192ms) - First Batch Returned: 4s028ms (15.912us) - Last Batch Returned: 4s028ms (400.000ns) - Closed: 4s028ms (98.497us) - ConvertRowBatchTime: 3.617us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 45.00 /sec Buffer pool: - AllocTime: 5.789us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 21.933ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 21.942ms - DataWaitTime: 21.933ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -62377.000ns ; Min: -62377.000ns ; Max: -62377.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 25.527us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 116.227ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s144ms - Open Started: 4s029ms (4s029ms) - Waiting for builder: 4s144ms (115.231ms) - Initial build available: 4s144ms (4.681us) - Open Finished: 4s144ms (61.804us) - First Batch Requested: 4s144ms (1.631us) - First Batch Returned: 4s144ms (10.118us) - Last Batch Returned: 4s144ms (424.875us) - Closed: 4s144ms (110.901us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 4 (4) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.712us - RowsReturned: 4 (4) - RowsReturnedRate: 34.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 115.617ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s144ms - Open Started: 4s029ms (4s029ms) - Open Finished: 4s144ms (115.153ms) - First Batch Requested: 4s144ms (91.771us) - First Batch Returned: 4s144ms (35.938us) - Last Batch Returned: 4s144ms (271.980us) - Closed: 4s144ms (268.328us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 34.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 67.267us - GetResultsTime: 95.544us - HTResizeTime: 2.153us - LargestPartitionPercent: 12 (12) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.467us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.321us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 113.504ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s143ms - Open Started: 4s029ms (4s029ms) - Open Finished: 4s029ms (3.411us) - First Batch Requested: 4s030ms (1.000ms) - First Batch Returned: 4s143ms (113.496ms) - Last Batch Returned: 4s143ms (652.000ns) - Closed: 4s143ms (112.751us) - ConvertRowBatchTime: 11.420us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 8 (8) - RowsReturnedRate: 70.00 /sec Buffer pool: - AllocTime: 6.145us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 962.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 360.00 B (360) - TotalGetBatchTime: 113.470ms - DataWaitTime: 113.452ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 94.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -83573.000ns ; Min: -128221.000ns ; Max: -38926.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 33.644us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 184.00 B (184) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 129.047ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s004ms - Open Started: 4s001ms (4s001ms) - Waiting for builder: 4s003ms (2.372ms) - Initial build available: 4s003ms (2.300us) - Open Finished: 4s003ms (56.144us) - First Batch Requested: 4s004ms (748.237us) - First Batch Returned: 4s004ms (9.866us) - Last Batch Returned: 4s004ms (194.025us) - Closed: 4s004ms (89.137us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 2 (2) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.226us - RowsReturned: 2 (2) - RowsReturnedRate: 15.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 65.594ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s004ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s003ms (2.303ms) - First Batch Requested: 4s003ms (75.198us) - First Batch Returned: 4s003ms (36.897us) - Last Batch Returned: 4s004ms (867.155us) - Closed: 4s004ms (167.225us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 30.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 54.591us - GetResultsTime: 52.154us - HTResizeTime: 2.027us - LargestPartitionPercent: 4 (4) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.764us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.246us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 24 (24) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 185.799us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s002ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s001ms (4.677us) - First Batch Requested: 4s002ms (1.062ms) - First Batch Returned: 4s002ms (177.925us) - Last Batch Returned: 4s002ms (698.000ns) - Closed: 4s002ms (141.183us) - ConvertRowBatchTime: 38.056us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 24 (24) - RowsReturnedRate: 129.17 K/sec Buffer pool: - AllocTime: 52.814us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 19.411us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 1.05 KB (1080) - TotalGetBatchTime: 62.896us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 404.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -128144.000ns ; Min: -345546.000ns ; Max: -46486.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 248.896us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 612.00 B (612) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000018 (host=tarmstrong-Precision-7540:22000):(Total: 2s994ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.205 Fragment Instance Lifecycle Event Timeline: 4s151ms - Prepare Finished: 1s169ms (1s169ms) - Open Finished: 4s004ms (2s834ms) - First Batch Produced: 4s147ms (143.081ms) - First Batch Sent: 4s147ms (2.867us) - ExecInternal Finished: 4s151ms (3.485ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4505728) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 137.074ms - TotalNetworkSendTime: 2.419ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 7 (7) - TotalThreadsTotalWallClockTime: 2s981ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.018ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 146.491ms - ExecTreeExecTime: 143.268ms - OpenTime: 2s834ms - ExecTreeOpenTime: 3.073ms - PrepareTime: 13.090ms - ExecTreePrepareTime: 12.680ms KrpcDataStreamSender (dst_id=139):(Total: 3.276ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 132.01 KB/sec ; Min: 89.23 KB/sec ; Max: 167.55 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 993.614us ; Min: 314.741us ; Max: 2.373ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -323029.000ns ; Min: -1786514.000ns ; Max: -33394.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 29.126us - TotalBytesSent: 221.00 B (221) - UncompressedRowBatchSize: 340.00 B (340) AGGREGATION_NODE (id=37):(Total: 159.016ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s147ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s004ms (3.070ms) - First Batch Requested: 4s004ms (24.163us) - First Batch Returned: 4s147ms (143.077ms) - Last Batch Returned: 4s147ms (238.329us) - Closed: 4s147ms (69.213us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 4 (4) - RowsReturnedRate: 25.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 102.278us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 62.824us Buffer pool: - AllocTime: 11.093us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 157.331ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s147ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s003ms (2.357ms) - First Batch Requested: 4s004ms (739.069us) - First Batch Returned: 4s146ms (142.406ms) - Last Batch Returned: 4s146ms (312.000ns) - Closed: 4s147ms (210.977us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 4 (4) - RowsReturnedRate: 25.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 27.791ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s029ms - Open Started: 4s004ms (4s004ms) - Waiting for builder: 4s029ms (24.473ms) - Initial build available: 4s029ms (2.270us) - Open Finished: 4s029ms (45.022us) - First Batch Requested: 4s029ms (1.449us) - First Batch Returned: 4s029ms (7.887us) - Last Batch Returned: 4s029ms (58.629us) - Closed: 4s029ms (93.982us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 35.00 /sec AGGREGATION_NODE (id=126):(Total: 26.113ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s029ms - Open Started: 4s004ms (4s004ms) - Open Finished: 4s029ms (24.462ms) - First Batch Requested: 4s029ms (9.724us) - First Batch Returned: 4s029ms (39.824us) - Last Batch Returned: 4s029ms (60.847us) - Closed: 4s029ms (100.233us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 38.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 22.428us - GetResultsTime: 32.350us - HTResizeTime: 1.540us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.717us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 22.374ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s028ms - Open Started: 4s004ms (4s004ms) - Open Finished: 4s027ms (22.354ms) - First Batch Requested: 4s028ms (1.308ms) - First Batch Returned: 4s028ms (15.977us) - Last Batch Returned: 4s028ms (338.000ns) - Closed: 4s028ms (63.627us) - ConvertRowBatchTime: 4.080us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 44.00 /sec Buffer pool: - AllocTime: 4.442us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 22.347ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 22.356ms - DataWaitTime: 22.347ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -98744.000ns ; Min: -98744.000ns ; Max: -98744.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.049us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 117.979ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s146ms - Open Started: 4s029ms (4s029ms) - Waiting for builder: 4s146ms (116.784ms) - Initial build available: 4s146ms (6.949us) - Open Finished: 4s146ms (79.057us) - First Batch Requested: 4s146ms (1.529us) - First Batch Returned: 4s146ms (12.597us) - Last Batch Returned: 4s146ms (556.034us) - Closed: 4s146ms (94.175us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 4.207us - RowsReturned: 3 (3) - RowsReturnedRate: 25.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 117.178ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s146ms - Open Started: 4s029ms (4s029ms) - Open Finished: 4s145ms (116.469ms) - First Batch Requested: 4s146ms (333.837us) - First Batch Returned: 4s146ms (54.257us) - Last Batch Returned: 4s146ms (475.609us) - Closed: 4s146ms (181.176us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 25.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 50.289us - GetResultsTime: 113.259us - HTResizeTime: 1.696us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.016us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 114.740ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s145ms - Open Started: 4s029ms (4s029ms) - Open Finished: 4s029ms (3.085us) - First Batch Requested: 4s030ms (1.163ms) - First Batch Returned: 4s145ms (114.734ms) - Last Batch Returned: 4s145ms (572.000ns) - Closed: 4s145ms (90.088us) - ConvertRowBatchTime: 9.844us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 6 (6) - RowsReturnedRate: 52.00 /sec Buffer pool: - AllocTime: 5.476us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.072us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 114.711ms - DataWaitTime: 114.698ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 71.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -122875.000ns ; Min: -152981.000ns ; Max: -92769.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 29.911us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 23.590ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s004ms - Open Started: 4s001ms (4s001ms) - Waiting for builder: 4s003ms (2.274ms) - Initial build available: 4s003ms (4.778us) - Open Finished: 4s003ms (48.516us) - First Batch Requested: 4s004ms (753.648us) - First Batch Returned: 4s004ms (8.843us) - Last Batch Returned: 4s004ms (41.088us) - Closed: 4s004ms (114.944us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 558.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 12.746ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s004ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s003ms (2.179ms) - First Batch Requested: 4s003ms (126.647us) - First Batch Returned: 4s003ms (4.043us) - Last Batch Returned: 4s003ms (330.000ns) - Closed: 4s004ms (895.545us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.483us - GetResultsTime: 0.000ns - HTResizeTime: 1.250us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.145us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.745us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 14.349us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s002ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s001ms (3.691us) - First Batch Requested: 4s002ms (1.077ms) - First Batch Returned: 4s002ms (8.313us) - Last Batch Returned: 4s002ms (413.000ns) - Closed: 4s002ms (57.884us) - ConvertRowBatchTime: 2.190us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.810us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000019 (host=tarmstrong-Precision-7540:22000):(Total: 2s963ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.204 Fragment Instance Lifecycle Event Timeline: 4s148ms - Prepare Finished: 1s187ms (1s187ms) - Open Finished: 4s005ms (2s817ms) - First Batch Produced: 4s147ms (142.655ms) - First Batch Sent: 4s147ms (2.735us) - ExecInternal Finished: 4s148ms (1.052ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 291.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.32 MB (4528512) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 137.534ms - TotalNetworkSendTime: 698.865us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 2s961ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.107ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 143.645ms - ExecTreeExecTime: 142.700ms - OpenTime: 2s817ms - ExecTreeOpenTime: 3.519ms - PrepareTime: 1.488ms - ExecTreePrepareTime: 1.046ms KrpcDataStreamSender (dst_id=139):(Total: 1.020ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 125.98 KB/sec ; Min: 125.98 KB/sec ; Max: 125.98 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 341.521us ; Min: 283.329us ; Max: 418.590us ; Number of samples: 13) - RpcRecvrTime: (Avg: -85142.000ns ; Min: -159320.000ns ; Max: -29267.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.376us - TotalBytesSent: 54.00 B (54) - UncompressedRowBatchSize: 86.00 B (86) AGGREGATION_NODE (id=37):(Total: 147.262ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s147ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s005ms (3.516ms) - First Batch Requested: 4s005ms (25.212us) - First Batch Returned: 4s147ms (142.650ms) - Last Batch Returned: 4s147ms (63.451us) - Closed: 4s147ms (93.842us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 6.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 22.316us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 33.275us Buffer pool: - AllocTime: 9.388us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.556us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 145.669ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s147ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s004ms (2.697ms) - First Batch Requested: 4s005ms (847.336us) - First Batch Returned: 4s147ms (142.045ms) - Last Batch Returned: 4s147ms (328.000ns) - Closed: 4s147ms (173.978us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 6.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 28.059ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s032ms - Open Started: 4s005ms (4s005ms) - Waiting for builder: 4s032ms (27.539ms) - Initial build available: 4s032ms (4.585us) - Open Finished: 4s032ms (14.035us) - First Batch Requested: 4s032ms (1.421us) - First Batch Returned: 4s032ms (9.021us) - Last Batch Returned: 4s032ms (410.000ns) - Closed: 4s032ms (112.913us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 27.750ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s032ms - Open Started: 4s005ms (4s005ms) - Open Finished: 4s032ms (27.528ms) - First Batch Requested: 4s032ms (15.024us) - First Batch Returned: 4s032ms (5.561us) - Last Batch Returned: 4s032ms (483.000ns) - Closed: 4s032ms (122.855us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 6.003us - GetResultsTime: 0.000ns - HTResizeTime: 1.216us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.443us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 25.530ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s032ms - Open Started: 4s005ms (4s005ms) - Open Finished: 4s030ms (25.520ms) - First Batch Requested: 4s032ms (1.238ms) - First Batch Returned: 4s032ms (6.530us) - Last Batch Returned: 4s032ms (330.000ns) - Closed: 4s032ms (46.335us) - ConvertRowBatchTime: 2.316us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 25.517ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 25.519ms - DataWaitTime: 25.517ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 114.509ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s147ms - Open Started: 4s032ms (4s032ms) - Waiting for builder: 4s146ms (113.854ms) - Initial build available: 4s146ms (3.368us) - Open Finished: 4s146ms (26.532us) - First Batch Requested: 4s146ms (3.461us) - First Batch Returned: 4s146ms (8.241us) - Last Batch Returned: 4s146ms (86.404us) - Closed: 4s147ms (125.905us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 333.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 114.015ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s147ms - Open Started: 4s032ms (4s032ms) - Open Finished: 4s146ms (113.786ms) - First Batch Requested: 4s146ms (73.288us) - First Batch Returned: 4s146ms (4.109us) - Last Batch Returned: 4s146ms (270.000ns) - Closed: 4s147ms (211.953us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.937us - GetResultsTime: 0.000ns - HTResizeTime: 1.388us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.238us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 111.929ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s146ms - Open Started: 4s032ms (4s032ms) - Open Finished: 4s144ms (111.918ms) - First Batch Requested: 4s145ms (1.080ms) - First Batch Returned: 4s145ms (7.228us) - Last Batch Returned: 4s145ms (388.000ns) - Closed: 4s146ms (46.600us) - ConvertRowBatchTime: 2.830us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 111.913ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 111.916ms - DataWaitTime: 111.913ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 3.479ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s005ms - Open Started: 4s001ms (4s001ms) - Waiting for builder: 4s004ms (2.605ms) - Initial build available: 4s004ms (2.678us) - Open Finished: 4s004ms (61.360us) - First Batch Requested: 4s005ms (861.837us) - First Batch Returned: 4s005ms (14.023us) - Last Batch Returned: 4s005ms (120.145us) - Closed: 4s005ms (92.639us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.033us - RowsReturned: 1 (1) - RowsReturnedRate: 287.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 2.911ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s005ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s004ms (2.536ms) - First Batch Requested: 4s004ms (75.414us) - First Batch Returned: 4s004ms (39.952us) - Last Batch Returned: 4s005ms (927.954us) - Closed: 4s005ms (153.014us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 343.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 35.731us - GetResultsTime: 31.374us - HTResizeTime: 1.744us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.433us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.996us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 228.235us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s003ms - Open Started: 4s001ms (4s001ms) - Open Finished: 4s001ms (4.495us) - First Batch Requested: 4s002ms (1.244ms) - First Batch Returned: 4s002ms (219.717us) - Last Batch Returned: 4s002ms (827.000ns) - Closed: 4s003ms (122.635us) - ConvertRowBatchTime: 40.138us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 12 (12) - RowsReturnedRate: 52.58 K/sec Buffer pool: - AllocTime: 56.934us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.616us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 91.747us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 208.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -91779.000ns ; Min: -161391.000ns ; Max: -31151.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 224.119us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000001a (host=tarmstrong-Precision-7540:22001):(Total: 2s320ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.952 Fragment Instance Lifecycle Event Timeline: 4s216ms - Prepare Finished: 1s896ms (1s896ms) - Open Finished: 4s211ms (2s314ms) - First Batch Produced: 4s215ms (3.551ms) - First Batch Sent: 4s215ms (2.522us) - ExecInternal Finished: 4s216ms (1.170ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB, 195.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 13.412us - TotalNetworkSendTime: 720.970us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 382 (382) - TotalThreadsTotalWallClockTime: 2s319ms - TotalThreadsSysTime: 11.424ms - TotalThreadsUserTime: 940.590ms - TotalThreadsVoluntaryContextSwitches: 28 (28) Fragment Instance Lifecycle Timings: - ExecTime: 4.652ms - ExecTreeExecTime: 3.687ms - OpenTime: 2s314ms - ExecTreeOpenTime: 2.183ms - PrepareTime: 1.426ms - ExecTreePrepareTime: 991.994us KrpcDataStreamSender (dst_id=139):(Total: 1.042ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 155.43 KB/sec ; Min: 146.41 KB/sec ; Max: 170.75 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 376.630us ; Min: 210.437us ; Max: 559.282us ; Number of samples: 15) - RpcRecvrTime: (Avg: -51101.000ns ; Min: -91555.000ns ; Max: -28893.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.607us - TotalBytesSent: 165.00 B (165) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=37):(Total: 6.857ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (2.179ms) - First Batch Requested: 4s211ms (18.967us) - First Batch Returned: 4s215ms (3.548ms) - Last Batch Returned: 4s215ms (168.316us) - Closed: 4s215ms (66.440us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 437.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 92.079us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 32.609us Buffer pool: - AllocTime: 8.564us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 5.507ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (1.629ms) - First Batch Requested: 4s211ms (569.426us) - First Batch Returned: 4s214ms (3.007ms) - Last Batch Returned: 4s214ms (230.000ns) - Closed: 4s214ms (130.983us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 544.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 1.798ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s211ms (4s211ms) - Waiting for builder: 4s212ms (1.295ms) - Initial build available: 4s212ms (1.984us) - Open Finished: 4s212ms (5.539us) - First Batch Requested: 4s212ms (1.352us) - First Batch Returned: 4s213ms (5.599us) - Last Batch Returned: 4s213ms (184.000ns) - Closed: 4s213ms (53.158us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 1.504ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s211ms (4s211ms) - Open Finished: 4s212ms (1.288ms) - First Batch Requested: 4s212ms (5.681us) - First Batch Returned: 4s212ms (2.469us) - Last Batch Returned: 4s212ms (202.000ns) - Closed: 4s213ms (60.173us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.556us - GetResultsTime: 0.000ns - HTResizeTime: 927.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.835us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 7.842us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s212ms - Open Started: 4s211ms (4s211ms) - Open Finished: 4s211ms (1.933us) - First Batch Requested: 4s212ms (844.961us) - First Batch Returned: 4s212ms (4.361us) - Last Batch Returned: 4s212ms (261.000ns) - Closed: 4s212ms (29.613us) - ConvertRowBatchTime: 1.725us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.014us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 1.955ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Waiting for builder: 4s214ms (1.183ms) - Initial build available: 4s214ms (1.988us) - Open Finished: 4s214ms (43.452us) - First Batch Requested: 4s214ms (831.000ns) - First Batch Returned: 4s214ms (8.444us) - Last Batch Returned: 4s214ms (215.334us) - Closed: 4s214ms (70.393us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.995us - RowsReturned: 3 (3) - RowsReturnedRate: 1.53 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 1.476ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s214ms (1.138ms) - First Batch Requested: 4s214ms (52.725us) - First Batch Returned: 4s214ms (27.502us) - Last Batch Returned: 4s214ms (133.818us) - Closed: 4s214ms (155.951us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 2.03 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 33.002us - GetResultsTime: 51.164us - HTResizeTime: 918.000ns - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.879us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 26.421us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s213ms (2.268us) - First Batch Requested: 4s213ms (700.959us) - First Batch Returned: 4s213ms (22.600us) - Last Batch Returned: 4s213ms (260.000ns) - Closed: 4s213ms (61.138us) - ConvertRowBatchTime: 6.396us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 227.09 K/sec Buffer pool: - AllocTime: 8.477us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.731us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 7.598us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 71.00 B, 141.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -55104.000ns ; Min: -58646.000ns ; Max: -51563.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 42.162us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.225ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s211ms - Open Started: 4s209ms (4s209ms) - Waiting for builder: 4s210ms (1.572ms) - Initial build available: 4s210ms (3.288us) - Open Finished: 4s211ms (20.324us) - First Batch Requested: 4s211ms (578.161us) - First Batch Returned: 4s211ms (7.844us) - Last Batch Returned: 4s211ms (28.183us) - Closed: 4s211ms (67.848us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 575.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 1.776ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s211ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s210ms (1.519ms) - First Batch Requested: 4s211ms (57.092us) - First Batch Returned: 4s211ms (3.010us) - Last Batch Returned: 4s211ms (225.000ns) - Closed: 4s211ms (677.106us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.046us - GetResultsTime: 0.000ns - HTResizeTime: 1.154us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.943us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 10.238us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s210ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s209ms (3.601us) - First Batch Requested: 4s210ms (842.060us) - First Batch Returned: 4s210ms (4.885us) - Last Batch Returned: 4s210ms (335.000ns) - Closed: 4s210ms (48.411us) - ConvertRowBatchTime: 1.928us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.852us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000001b (host=tarmstrong-Precision-7540:22001):(Total: 2s305ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.953 Fragment Instance Lifecycle Event Timeline: 4s218ms - Prepare Finished: 1s914ms (1s914ms) - Open Finished: 4s211ms (2s297ms) - First Batch Produced: 4s215ms (3.724ms) - First Batch Sent: 4s215ms (2.392us) - ExecInternal Finished: 4s218ms (2.674ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB, 195.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 13.722us - TotalNetworkSendTime: 2.275ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s303ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 6.455ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 6.321ms - ExecTreeExecTime: 3.829ms - OpenTime: 2s297ms - ExecTreeOpenTime: 2.226ms - PrepareTime: 1.452ms - ExecTreePrepareTime: 1.009ms KrpcDataStreamSender (dst_id=139):(Total: 2.585ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 327.46 KB/sec ; Min: 327.46 KB/sec ; Max: 327.46 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 401.527us ; Min: 222.708us ; Max: 546.107us ; Number of samples: 13) - RpcRecvrTime: (Avg: -36531.000ns ; Min: -85402.000ns ; Max: -27066.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.802us - TotalBytesSent: 145.00 B (145) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=37):(Total: 7.060ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (2.223ms) - First Batch Requested: 4s211ms (21.868us) - First Batch Returned: 4s215ms (3.720ms) - Last Batch Returned: 4s215ms (133.130us) - Closed: 4s215ms (69.000us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 424.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 59.591us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 46.661us Buffer pool: - AllocTime: 11.047us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 5.834ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (1.674ms) - First Batch Requested: 4s211ms (572.666us) - First Batch Returned: 4s214ms (3.274ms) - Last Batch Returned: 4s214ms (261.000ns) - Closed: 4s215ms (104.334us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 514.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 1.868ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s211ms (4s211ms) - Waiting for builder: 4s213ms (1.353ms) - Initial build available: 4s213ms (1.787us) - Open Finished: 4s213ms (5.548us) - First Batch Requested: 4s213ms (2.280us) - First Batch Returned: 4s213ms (6.803us) - Last Batch Returned: 4s213ms (180.000ns) - Closed: 4s213ms (63.167us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 1.563ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s211ms (4s211ms) - Open Finished: 4s213ms (1.342ms) - First Batch Requested: 4s213ms (7.666us) - First Batch Returned: 4s213ms (2.506us) - Last Batch Returned: 4s213ms (205.000ns) - Closed: 4s213ms (71.770us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.631us - GetResultsTime: 0.000ns - HTResizeTime: 901.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.777us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 9.738us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s212ms - Open Started: 4s211ms (4s211ms) - Open Finished: 4s211ms (2.580us) - First Batch Requested: 4s212ms (866.322us) - First Batch Returned: 4s212ms (5.162us) - Last Batch Returned: 4s212ms (287.000ns) - Closed: 4s212ms (27.311us) - ConvertRowBatchTime: 1.907us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.115us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 2.046ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Waiting for builder: 4s214ms (1.235ms) - Initial build available: 4s214ms (2.036us) - Open Finished: 4s214ms (41.977us) - First Batch Requested: 4s214ms (915.000ns) - First Batch Returned: 4s214ms (7.823us) - Last Batch Returned: 4s214ms (272.865us) - Closed: 4s214ms (122.936us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.788us - RowsReturned: 3 (3) - RowsReturnedRate: 1.47 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 1.534ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s214ms (1.185ms) - First Batch Requested: 4s214ms (57.115us) - First Batch Returned: 4s214ms (27.450us) - Last Batch Returned: 4s214ms (153.728us) - Closed: 4s214ms (241.950us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.96 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 71.667us - GetResultsTime: 54.640us - HTResizeTime: 3.939us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.348us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 26.189us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s213ms (2.337us) - First Batch Requested: 4s213ms (713.898us) - First Batch Returned: 4s213ms (21.636us) - Last Batch Returned: 4s213ms (293.000ns) - Closed: 4s214ms (101.484us) - ConvertRowBatchTime: 6.286us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 229.10 K/sec Buffer pool: - AllocTime: 6.299us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 967.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 7.365us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 71.00 B, 141.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -58565.000ns ; Min: -79065.000ns ; Max: -38066.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 34.959us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.318ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s211ms - Open Started: 4s209ms (4s209ms) - Waiting for builder: 4s211ms (1.627ms) - Initial build available: 4s211ms (1.974us) - Open Finished: 4s211ms (21.200us) - First Batch Requested: 4s211ms (587.808us) - First Batch Returned: 4s211ms (8.881us) - Last Batch Returned: 4s211ms (38.974us) - Closed: 4s211ms (84.589us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 392.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 1.844ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s211ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (1.574ms) - First Batch Requested: 4s211ms (61.180us) - First Batch Returned: 4s211ms (4.616us) - Last Batch Returned: 4s211ms (259.000ns) - Closed: 4s211ms (713.341us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.652us - GetResultsTime: 0.000ns - HTResizeTime: 930.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.606us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 9.795us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s210ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s209ms (3.150us) - First Batch Requested: 4s210ms (893.667us) - First Batch Returned: 4s210ms (4.920us) - Last Batch Returned: 4s210ms (261.000ns) - Closed: 4s210ms (44.169us) - ConvertRowBatchTime: 1.855us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.188us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000001c (host=tarmstrong-Precision-7540:22001):(Total: 2s291ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.949 Fragment Instance Lifecycle Event Timeline: 4s219ms - Prepare Finished: 1s932ms (1s932ms) - Open Finished: 4s211ms (2s278ms) - First Batch Produced: 4s215ms (3.592ms) - First Batch Sent: 4s215ms (2.436us) - ExecInternal Finished: 4s219ms (4.234ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 179.38 KB, 195.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 15.389us - TotalNetworkSendTime: 3.893ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s286ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 6.987ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 7.779ms - ExecTreeExecTime: 3.687ms - OpenTime: 2s278ms - ExecTreeOpenTime: 2.146ms - PrepareTime: 4.798ms - ExecTreePrepareTime: 4.378ms KrpcDataStreamSender (dst_id=139):(Total: 4.191ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 142.57 KB/sec ; Min: 110.52 KB/sec ; Max: 174.62 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 597.818us ; Min: 196.942us ; Max: 3.537ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -69867.000ns ; Min: -443982.000ns ; Max: -26386.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.505us - TotalBytesSent: 161.00 B (161) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=37):(Total: 10.207ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (2.143ms) - First Batch Requested: 4s211ms (17.196us) - First Batch Returned: 4s215ms (3.588ms) - Last Batch Returned: 4s215ms (127.675us) - Closed: 4s215ms (49.740us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 293.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 64.275us - HTResizeTime: 0.000ns - LargestPartitionPercent: 66 (66) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 24.994us Buffer pool: - AllocTime: 6.990us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 8.954ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (1.588ms) - First Batch Requested: 4s211ms (572.893us) - First Batch Returned: 4s214ms (3.134ms) - Last Batch Returned: 4s214ms (221.000ns) - Closed: 4s214ms (101.334us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 335.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 8.557ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s211ms (4s211ms) - Waiting for builder: 4s213ms (1.368ms) - Initial build available: 4s213ms (1.727us) - Open Finished: 4s213ms (6.232us) - First Batch Requested: 4s213ms (897.000ns) - First Batch Returned: 4s213ms (5.390us) - Last Batch Returned: 4s213ms (177.000ns) - Closed: 4s213ms (67.494us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=126):(Total: 4.918ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s211ms (4s211ms) - Open Finished: 4s213ms (1.359ms) - First Batch Requested: 4s213ms (5.034us) - First Batch Returned: 4s213ms (2.412us) - Last Batch Returned: 4s213ms (196.000ns) - Closed: 4s213ms (74.684us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.720us - GetResultsTime: 0.000ns - HTResizeTime: 989.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.286us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 8.872us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s212ms - Open Started: 4s211ms (4s211ms) - Open Finished: 4s211ms (2.278us) - First Batch Requested: 4s212ms (889.545us) - First Batch Returned: 4s212ms (4.962us) - Last Batch Returned: 4s212ms (227.000ns) - Closed: 4s212ms (27.658us) - ConvertRowBatchTime: 1.749us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.550us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 1.999ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Waiting for builder: 4s214ms (1.255ms) - Initial build available: 4s214ms (1.966us) - Open Finished: 4s214ms (44.031us) - First Batch Requested: 4s214ms (850.000ns) - First Batch Returned: 4s214ms (7.426us) - Last Batch Returned: 4s214ms (158.904us) - Closed: 4s214ms (89.128us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.848us - RowsReturned: 3 (3) - RowsReturnedRate: 1.50 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 1.533ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s214ms (1.211ms) - First Batch Requested: 4s214ms (52.193us) - First Batch Returned: 4s214ms (28.409us) - Last Batch Returned: 4s214ms (88.745us) - Closed: 4s214ms (158.308us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.96 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 24.511us - GetResultsTime: 39.033us - HTResizeTime: 985.000ns - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.340us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 28.370us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s213ms (2.196us) - First Batch Requested: 4s213ms (718.556us) - First Batch Returned: 4s213ms (24.731us) - Last Batch Returned: 4s213ms (271.000ns) - Closed: 4s213ms (54.866us) - ConvertRowBatchTime: 6.505us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 211.49 K/sec Buffer pool: - AllocTime: 6.085us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.037us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 9.970us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 71.00 B, 137.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -36083.000ns ; Min: -38012.000ns ; Max: -34155.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 39.024us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 137.00 B (137) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.198ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s211ms - Open Started: 4s209ms (4s209ms) - Waiting for builder: 4s211ms (1.542ms) - Initial build available: 4s211ms (3.489us) - Open Finished: 4s211ms (19.927us) - First Batch Requested: 4s211ms (585.786us) - First Batch Returned: 4s211ms (6.891us) - Last Batch Returned: 4s211ms (28.528us) - Closed: 4s211ms (70.951us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 371.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 1.751ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s211ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s210ms (1.492ms) - First Batch Requested: 4s211ms (59.802us) - First Batch Returned: 4s211ms (2.931us) - Last Batch Returned: 4s211ms (254.000ns) - Closed: 4s211ms (684.360us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.826us - GetResultsTime: 0.000ns - HTResizeTime: 975.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.262us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 8.641us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s210ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s209ms (2.360us) - First Batch Requested: 4s210ms (856.764us) - First Batch Returned: 4s210ms (4.559us) - Last Batch Returned: 4s210ms (277.000ns) - Closed: 4s210ms (34.478us) - ConvertRowBatchTime: 1.730us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.139us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000001d (host=tarmstrong-Precision-7540:22001):(Total: 2s265ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.950 Fragment Instance Lifecycle Event Timeline: 4s219ms - Prepare Finished: 1s955ms (1s955ms) - Open Finished: 4s211ms (2s256ms) - First Batch Produced: 4s215ms (3.744ms) - First Batch Sent: 4s215ms (2.726us) - ExecInternal Finished: 4s219ms (3.864ms) - MemoryUsage (500.000ms): 163.38 KB, 163.38 KB, 163.38 KB, 307.38 KB, 403.38 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.37 MB (4577664) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 5 (5) - TotalNetworkReceiveTime: 56.594us - TotalNetworkSendTime: 3.334ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s263ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 8.173ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 7.554ms - ExecTreeExecTime: 3.933ms - OpenTime: 2s256ms - ExecTreeOpenTime: 2.306ms - PrepareTime: 1.514ms - ExecTreePrepareTime: 1.103ms KrpcDataStreamSender (dst_id=139):(Total: 3.699ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 214.93 KB/sec ; Min: 134.34 KB/sec ; Max: 258.66 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.367ms ; Min: 220.793us ; Max: 3.104ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -434515.000ns ; Min: -2012133.000ns ; Max: -33301.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 5 (5) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.409us - TotalBytesSent: 268.00 B (268) - UncompressedRowBatchSize: 426.00 B (426) AGGREGATION_NODE (id=37):(Total: 7.337ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (2.299ms) - First Batch Requested: 4s211ms (21.672us) - First Batch Returned: 4s215ms (3.740ms) - Last Batch Returned: 4s215ms (235.652us) - Closed: 4s215ms (61.716us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 5 (5) - RowsReturnedRate: 681.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 110.062us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5 (5) - StreamingTime: 65.938us Buffer pool: - AllocTime: 15.439us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=1):(Total: 6.044ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (1.726ms) - First Batch Requested: 4s211ms (597.129us) - First Batch Returned: 4s215ms (3.347ms) - Last Batch Returned: 4s215ms (230.000ns) - Closed: 4s215ms (161.445us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 5 (5) - RowsReturnedRate: 827.00 /sec NESTED_LOOP_JOIN_NODE (id=23):(Total: 1.915ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s212ms (4s212ms) - Waiting for builder: 4s213ms (1.235ms) - Initial build available: 4s213ms (1.727us) - Open Finished: 4s213ms (27.976us) - First Batch Requested: 4s213ms (864.000ns) - First Batch Returned: 4s213ms (8.835us) - Last Batch Returned: 4s213ms (32.637us) - Closed: 4s213ms (58.872us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 521.00 /sec AGGREGATION_NODE (id=126):(Total: 1.550ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s213ms - Open Started: 4s212ms (4s212ms) - Open Finished: 4s213ms (1.227ms) - First Batch Requested: 4s213ms (5.043us) - First Batch Returned: 4s213ms (25.864us) - Last Batch Returned: 4s213ms (38.746us) - Closed: 4s213ms (61.724us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 644.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 16.114us - GetResultsTime: 21.632us - HTResizeTime: 947.000ns - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.651us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=125):(Total: 18.595us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s212ms - Open Started: 4s212ms (4s212ms) - Open Finished: 4s212ms (3.059us) - First Batch Requested: 4s212ms (742.032us) - First Batch Returned: 4s212ms (13.780us) - Last Batch Returned: 4s212ms (299.000ns) - Closed: 4s212ms (42.196us) - ConvertRowBatchTime: 2.912us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 53.78 K/sec Buffer pool: - AllocTime: 5.781us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.026us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 5.291us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 26.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -55419.000ns ; Min: -55419.000ns ; Max: -55419.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.480us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=36):(Total: 2.204ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s213ms (4s213ms) - Waiting for builder: 4s214ms (1.251ms) - Initial build available: 4s214ms (1.976us) - Open Finished: 4s214ms (44.422us) - First Batch Requested: 4s214ms (877.000ns) - First Batch Returned: 4s214ms (6.967us) - Last Batch Returned: 4s215ms (317.593us) - Closed: 4s215ms (73.365us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.234us - RowsReturned: 3 (3) - RowsReturnedRate: 1.36 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=134):(Total: 1.645ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s215ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s214ms (1.191ms) - First Batch Requested: 4s214ms (67.693us) - First Batch Returned: 4s214ms (29.193us) - Last Batch Returned: 4s214ms (214.909us) - Closed: 4s215ms (172.167us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.82 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 30.859us - GetResultsTime: 82.145us - HTResizeTime: 962.000ns - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.645us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=133):(Total: 26.938us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s214ms - Open Started: 4s213ms (4s213ms) - Open Finished: 4s213ms (2.092us) - First Batch Requested: 4s214ms (751.422us) - First Batch Returned: 4s214ms (22.754us) - Last Batch Returned: 4s214ms (277.000ns) - Closed: 4s214ms (69.903us) - ConvertRowBatchTime: 6.402us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 222.73 K/sec Buffer pool: - AllocTime: 5.612us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.073us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 7.504us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 72.00 B, 147.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -87366.000ns ; Min: -139600.000ns ; Max: -35132.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 32.719us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 147.00 B (147) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=14):(Total: 2.405ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s212ms - Open Started: 4s209ms (4s209ms) - Waiting for builder: 4s211ms (1.654ms) - Initial build available: 4s211ms (2.096us) - Open Finished: 4s211ms (47.998us) - First Batch Requested: 4s211ms (612.712us) - First Batch Returned: 4s211ms (11.464us) - Last Batch Returned: 4s211ms (125.305us) - Closed: 4s212ms (124.983us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.276us - RowsReturned: 1 (1) - RowsReturnedRate: 415.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=119):(Total: 1.919ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s212ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s211ms (1.604ms) - First Batch Requested: 4s211ms (59.527us) - First Batch Returned: 4s211ms (30.863us) - Last Batch Returned: 4s211ms (676.784us) - Closed: 4s212ms (186.816us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 520.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 22.599us - GetResultsTime: 25.631us - HTResizeTime: 1.022us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.338us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=118):(Total: 107.575us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s210ms - Open Started: 4s209ms (4s209ms) - Open Finished: 4s209ms (3.721us) - First Batch Requested: 4s210ms (816.589us) - First Batch Returned: 4s210ms (102.116us) - Last Batch Returned: 4s210ms (297.000ns) - Closed: 4s210ms (68.843us) - ConvertRowBatchTime: 21.142us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 12 (12) - RowsReturnedRate: 111.55 K/sec Buffer pool: - AllocTime: 52.203us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 18.208us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 39.439us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 208.00 B, 312.00 B - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -170987.000ns ; Min: -772319.000ns ; Max: -38492.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 239.231us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F00:(Total: 2s646ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 15.92 MB, max: 17.31 MB, avg: 16.41 MB, stddev: 647.55 KB completion times: min:6s265ms max:8s065ms mean: 7s208ms stddev:733.895ms execution rates: min:1.98 MB/sec max:2.76 MB/sec mean:2.31 MB/sec stddev:339.11 KB/sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.27 MB (4472629) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.082ms - TotalStorageWaitTime: 66.968ms - TotalThreadsInvoluntaryContextSwitches: 66 (66) - TotalThreadsTotalWallClockTime: 2s630ms - TotalThreadsSysTime: 886.500us - TotalThreadsUserTime: 127.452ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 66.302ms - ExecTreeExecTime: 63.834ms - OpenTime: 2s563ms - ExecTreeOpenTime: 741.217ms - PrepareTime: 16.320ms - ExecTreePrepareTime: 13.564ms KrpcDataStreamSender (dst_id=118):(Total: 3.126ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.837us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 818.609ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.08 MB (2184064) - RowsReturned: 6 (6) - RowsReturnedRate: 14.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 204.466us - HTResizeTime: 263.202us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 661.065us Buffer pool: - AllocTime: 53.755us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 37.944us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 4.94K (4940) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 826.996ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.62 KB (73344) - ProbeRows: 4.94K (4940) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 584.879us - RowsReturned: 4.94K (4940) - RowsReturnedRate: 11.54 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 825.659ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 50.12 KB (51328) - ProbeRows: 4.94K (4940) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 327.576us - RowsReturned: 4.94K (4940) - RowsReturnedRate: 11.59 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 790.799ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.08 - BytesRead: 312.63 KB (320134) - BytesReadDataNodeCache: 0 - BytesReadLocal: 312.63 KB (320134) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 312.63 KB (320134) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 54.368us - MaterializeTupleTime: 2.168ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 7 (7) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163076) - PerReadThreadRawHdfsThroughput: 78.17 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 5.06K (5056) - RowsReturned: 4.94K (4940) - RowsReturnedRate: 12.47 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 66.968ms - TotalRawHdfsOpenFileTime: 4.775ms - TotalRawHdfsReadTime: 7.100ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 31.749us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 434.00 KB (444416) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 10.980us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 5.06K (5056) - Rows rejected: 115 (115) - Rows total: 5.06K (5056) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 149 (149) - Files total: 152 (152) - RowGroups processed: 3 (3) - RowGroups rejected: 0 (0) - RowGroups total: 3 (3) - Rows processed: 4.94K (4940) - Rows rejected: 0 (0) - Rows total: 4.94K (4940) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Fragment F00: Instance 50467cb8e73eeac4:853461b400000009 (host=tarmstrong-Precision-7540:22002):(Total: 3s347ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.137 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:134/17.30 MB Fragment Instance Lifecycle Event Timeline: 3s593ms - Prepare Finished: 248.445ms (248.445ms) - Open Finished: 3s542ms (3s294ms) - First Batch Produced: 3s590ms (47.132ms) - First Batch Sent: 3s590ms (6.972us) - ExecInternal Finished: 3s593ms (3.892ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4482748) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.743ms - TotalStorageWaitTime: 35.127ms - TotalThreadsInvoluntaryContextSwitches: 335 (335) - TotalThreadsTotalWallClockTime: 3s345ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 476.038ms - TotalThreadsVoluntaryContextSwitches: 39 (39) Fragment Instance Lifecycle Timings: - ExecTime: 50.743ms - ExecTreeExecTime: 47.568ms - OpenTime: 3s294ms - ExecTreeOpenTime: 1s415ms - PrepareTime: 1.953ms - ExecTreePrepareTime: 1.629ms KrpcDataStreamSender (dst_id=118):(Total: 3.228ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 38.99 KB/sec ; Min: 14.94 KB/sec ; Max: 95.77 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 911.892us ; Min: 241.076us ; Max: 1.699ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -174492.000ns ; Min: -518011.000ns ; Max: -31564.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.408us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 1s464ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s590ms - Open Started: 2s127ms (2s127ms) - Open Finished: 3s542ms (1s415ms) - First Batch Requested: 3s542ms (39.795us) - First Batch Returned: 3s590ms (47.125ms) - Last Batch Returned: 3s590ms (529.262us) - Closed: 3s590ms (90.567us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 286.605us - HTResizeTime: 298.993us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 668.919us Buffer pool: - AllocTime: 82.718us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 64.197us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 4.21K (4206) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 1s463ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s589ms - Open Started: 2s127ms (2s127ms) - Waiting for builder: 3s541ms (1s414ms) - Initial build available: 3s541ms (6.950us) - Open Finished: 3s541ms (117.657us) - First Batch Requested: 3s542ms (1.100ms) - First Batch Returned: 3s543ms (74.483us) - Last Batch Returned: 3s589ms (46.297ms) - Closed: 3s589ms (236.712us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 4.21K (4206) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 253.317us - RowsReturned: 4.21K (4206) - RowsReturnedRate: 2.87 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 1s462ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s589ms - Open Started: 2s127ms (2s127ms) - Waiting for builder: 3s522ms (1s394ms) - Initial build available: 3s522ms (3.186us) - Open Finished: 3s541ms (19.612ms) - First Batch Requested: 3s541ms (139.351us) - First Batch Returned: 3s541ms (71.301us) - Last Batch Returned: 3s588ms (47.103ms) - Closed: 3s589ms (598.639us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 4.21K (4206) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 248.307us - RowsReturned: 4.21K (4206) - RowsReturnedRate: 2.88 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 1s438ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:134/17.30 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 1s394ms. Maximum arrival delay: 3s272ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):132 Node Lifecycle Event Timeline: 3s589ms - Closed: 3s589ms (3s589ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 11.532ms ; Min: 11.177ms ; Max: 11.887ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.65 KB (4759) ; Min: 1.50 KB (1538) ; Max: 6.22 KB (6373) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.32 KB (2379) ; Min: 758.00 B (758) ; Max: 3.30 KB (3382) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.67 KB (4778) ; Min: 1.53 KB (1566) ; Max: 6.24 KB (6386) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.33 KB (2389) ; Min: 769.00 B (769) ; Max: 3.31 KB (3394) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 246.57 KB (252483) - BytesReadDataNodeCache: 0 - BytesReadLocal: 246.57 KB (252483) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 246.57 KB (252483) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 49.967us - MaterializeTupleTime: 2.109ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2164244) - PerReadThreadRawHdfsThroughput: 29.86 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 4.29K (4295) - RowsReturned: 4.21K (4206) - RowsReturnedRate: 2.92 K/sec - ScanRangesComplete: 134 (134) - ScannerIoWaitTime: 35.127ms - TotalRawHdfsOpenFileTime: 53.888us - TotalRawHdfsReadTime: 8.064ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 27.932us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.969us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 4.29K (4295) - Rows rejected: 89 (89) - Rows total: 4.29K (4295) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 134 (134) - Files rejected: 132 (132) - Files total: 134 (134) - RowGroups processed: 4 (4) - RowGroups rejected: 0 (0) - RowGroups total: 4 (4) - Rows processed: 4.21K (4206) - Rows rejected: 0 (0) - Rows total: 4.21K (4206) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b40000000a (host=tarmstrong-Precision-7540:22002):(Total: 3s343ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.135 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 3s598ms - Prepare Finished: 256.665ms (256.665ms) - Open Finished: 3s546ms (3s289ms) - First Batch Produced: 3s595ms (49.193ms) - First Batch Sent: 3s595ms (6.095us) - ExecInternal Finished: 3s598ms (2.690ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.31 MB (4519380) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.403ms - TotalStorageWaitTime: 51.628ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 3s341ms - TotalThreadsSysTime: 6.677ms - TotalThreadsUserTime: 13.541ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 51.754ms - ExecTreeExecTime: 49.591ms - OpenTime: 3s289ms - ExecTreeOpenTime: 1s419ms - PrepareTime: 2.113ms - ExecTreePrepareTime: 1.756ms KrpcDataStreamSender (dst_id=118):(Total: 2.217ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 46.59 KB/sec ; Min: 34.27 KB/sec ; Max: 67.40 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 707.036us ; Min: 302.172us ; Max: 1.025ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -135263.000ns ; Min: -409620.000ns ; Max: -36478.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 33.256us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 1s471ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s596ms - Open Started: 2s126ms (2s126ms) - Open Finished: 3s546ms (1s419ms) - First Batch Requested: 3s546ms (29.073us) - First Batch Returned: 3s595ms (49.188ms) - Last Batch Returned: 3s596ms (475.620us) - Closed: 3s596ms (96.300us) - PeakMemoryUsage: 2.09 MB (2191488) - RowsReturned: 6 (6) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 226.631us - HTResizeTime: 301.639us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 912.960us Buffer pool: - AllocTime: 69.097us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 55.680us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 9.58K (9578) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 1s464ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s595ms - Open Started: 2s126ms (2s126ms) - Waiting for builder: 3s545ms (1s418ms) - Initial build available: 3s545ms (5.041us) - Open Finished: 3s545ms (113.999us) - First Batch Requested: 3s546ms (944.722us) - First Batch Returned: 3s546ms (67.494us) - Last Batch Returned: 3s589ms (42.975ms) - Closed: 3s595ms (5.769ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 88.12 KB (90240) - ProbeRows: 9.58K (9578) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 563.980us - RowsReturned: 9.58K (9578) - RowsReturnedRate: 6.54 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 1s462ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s595ms - Open Started: 2s126ms (2s126ms) - Waiting for builder: 3s521ms (1s394ms) - Initial build available: 3s521ms (4.124us) - Open Finished: 3s545ms (23.833ms) - First Batch Requested: 3s545ms (119.537us) - First Batch Returned: 3s545ms (72.078us) - Last Batch Returned: 3s588ms (43.557ms) - Closed: 3s595ms (6.192ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 9.58K (9578) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 609.984us - RowsReturned: 9.58K (9578) - RowsReturnedRate: 6.55 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 1s459ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 5 out of 5 Runtime filters: All filters arrived. Waited 1s394ms. Maximum arrival delay: 3s272ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:5 PARQUET/Unknown(Skipped):153 Node Lifecycle Event Timeline: 3s595ms - Closed: 3s595ms (3s595ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 3.494ms ; Min: 554.421us ; Max: 10.342ms ; Number of samples: 5) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 5) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 5) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 10.16 KB (10399) ; Min: 3.28 KB (3361) ; Max: 13.59 KB (13920) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.03 KB (2079) ; Min: 590.00 B (590) ; Max: 2.93 KB (3000) ; Number of samples: 15) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 5) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 10.19 KB (10430) ; Min: 3.33 KB (3413) ; Max: 13.61 KB (13940) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2086) ; Min: 597.00 B (597) ; Max: 2.93 KB (3002) ; Number of samples: 15) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 604.92 KB (619440) - BytesReadDataNodeCache: 0 - BytesReadLocal: 604.92 KB (619440) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 604.92 KB (619440) - CachedFileHandlesHitCount: 20 (20) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 104.488us - MaterializeTupleTime: 4.048ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 5 (5) - NumRowGroupsWithPageIndex: 5 (5) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163576) - PerReadThreadRawHdfsThroughput: 57.03 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 9.78K (9784) - RowsReturned: 9.58K (9578) - RowsReturnedRate: 6.56 K/sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 51.628ms - TotalRawHdfsOpenFileTime: 124.216us - TotalRawHdfsReadTime: 10.358ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 44.736us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 840.00 KB (860160) - CumulativeAllocations: 20 (20) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.933us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 9.78K (9784) - Rows rejected: 206 (206) - Rows total: 9.78K (9784) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 158 (158) - Files rejected: 153 (153) - Files total: 158 (158) - RowGroups processed: 7 (7) - RowGroups rejected: 0 (0) - RowGroups total: 7 (7) - Rows processed: 9.58K (9578) - Rows rejected: 0 (0) - Rows total: 9.58K (9578) - Splits processed: 5 (5) - Splits rejected: 0 (0) - Splits total: 5 (5) Instance 50467cb8e73eeac4:853461b40000000b (host=tarmstrong-Precision-7540:22002):(Total: 3s318ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.136 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 3s595ms - Prepare Finished: 284.755ms (284.755ms) - Open Finished: 3s530ms (3s246ms) - First Batch Produced: 3s590ms (59.371ms) - First Batch Sent: 3s590ms (3.882us) - ExecInternal Finished: 3s595ms (4.736ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4482668) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.906ms - TotalStorageWaitTime: 25.774ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 3s310ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 11.749ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 64.007ms - ExecTreeExecTime: 59.714ms - OpenTime: 3s246ms - ExecTreeOpenTime: 1s404ms - PrepareTime: 7.957ms - ExecTreePrepareTime: 1.895ms KrpcDataStreamSender (dst_id=118):(Total: 4.330ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 36.70 KB/sec ; Min: 18.84 KB/sec ; Max: 76.84 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 946.332us ; Min: 352.963us ; Max: 2.475ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -246175.000ns ; Min: -1863859.000ns ; Max: -30155.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.392us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 1s465ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s590ms - Open Started: 2s126ms (2s126ms) - Open Finished: 3s530ms (1s404ms) - First Batch Requested: 3s530ms (46.374us) - First Batch Returned: 3s590ms (59.358ms) - Last Batch Returned: 3s590ms (433.670us) - Closed: 3s590ms (76.486us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 211.220us - HTResizeTime: 363.958us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 736.903us Buffer pool: - AllocTime: 80.800us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 65.173us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.87K (3869) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 1s464ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s589ms - Open Started: 2s126ms (2s126ms) - Waiting for builder: 3s529ms (1s403ms) - Initial build available: 3s529ms (5.260us) - Open Finished: 3s529ms (108.585us) - First Batch Requested: 3s530ms (979.318us) - First Batch Returned: 3s531ms (86.302us) - Last Batch Returned: 3s589ms (58.214ms) - Closed: 3s589ms (663.928us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 3.87K (3869) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 235.786us - RowsReturned: 3.87K (3869) - RowsReturnedRate: 2.64 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 1s463ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s589ms - Open Started: 2s126ms (2s126ms) - Waiting for builder: 3s520ms (1s393ms) - Initial build available: 3s520ms (2.854us) - Open Finished: 3s529ms (9.726ms) - First Batch Requested: 3s529ms (114.441us) - First Batch Returned: 3s529ms (68.019us) - Last Batch Returned: 3s588ms (58.873ms) - Closed: 3s589ms (1.061ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.87K (3869) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 272.149us - RowsReturned: 3.87K (3869) - RowsReturnedRate: 2.64 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 1s425ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 1s393ms. Maximum arrival delay: 3s272ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):156 Node Lifecycle Event Timeline: 3s589ms - Closed: 3s589ms (3s589ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 3.486ms ; Min: 2.081ms ; Max: 4.890ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.15 KB (4248) ; Min: 1.42 KB (1453) ; Max: 5.52 KB (5649) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.07 KB (2124) ; Min: 708.00 B (708) ; Max: 2.92 KB (2990) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.17 KB (4265) ; Min: 1.46 KB (1493) ; Max: 5.52 KB (5653) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.08 KB (2132) ; Min: 731.00 B (731) ; Max: 2.92 KB (2994) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 242.52 KB (248336) - BytesReadDataNodeCache: 0 - BytesReadLocal: 242.52 KB (248336) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 242.52 KB (248336) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 43.259us - MaterializeTupleTime: 1.842ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163500) - PerReadThreadRawHdfsThroughput: 131.01 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.97K (3966) - RowsReturned: 3.87K (3869) - RowsReturnedRate: 2.71 K/sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 25.774ms - TotalRawHdfsOpenFileTime: 43.210us - TotalRawHdfsReadTime: 1.807ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 20.617us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.344us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.97K (3966) - Rows rejected: 97 (97) - Rows total: 3.97K (3966) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 158 (158) - Files rejected: 156 (156) - Files total: 158 (158) - RowGroups processed: 3 (3) - RowGroups rejected: 0 (0) - RowGroups total: 3 (3) - Rows processed: 3.87K (3869) - Rows rejected: 0 (0) - Rows total: 3.87K (3869) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b40000000c (host=tarmstrong-Precision-7540:22002):(Total: 3s311ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.135 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 3s593ms - Prepare Finished: 300.620ms (300.620ms) - Open Finished: 3s527ms (3s226ms) - First Batch Produced: 3s591ms (63.910ms) - First Batch Sent: 3s591ms (4.151us) - ExecInternal Finished: 3s593ms (2.521ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.27 MB (4480976) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.777ms - TotalStorageWaitTime: 22.920ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 3s293ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 11.167ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 66.270ms - ExecTreeExecTime: 64.175ms - OpenTime: 3s226ms - ExecTreeOpenTime: 1s400ms - PrepareTime: 18.105ms - ExecTreePrepareTime: 1.823ms KrpcDataStreamSender (dst_id=118):(Total: 2.200ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 39.73 KB/sec ; Min: 27.97 KB/sec ; Max: 52.28 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 839.986us ; Min: 408.548us ; Max: 1.305ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -137962.000ns ; Min: -366619.000ns ; Max: -32118.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.124us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 1s466ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s591ms - Open Started: 2s127ms (2s127ms) - Open Finished: 3s527ms (1s400ms) - First Batch Requested: 3s527ms (27.102us) - First Batch Returned: 3s591ms (63.905ms) - Last Batch Returned: 3s591ms (324.260us) - Closed: 3s591ms (62.147us) - PeakMemoryUsage: 2.09 MB (2187392) - RowsReturned: 6 (6) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 160.000us - HTResizeTime: 286.135us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 613.545us Buffer pool: - AllocTime: 68.481us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 54.863us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.86K (3856) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 1s464ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s590ms - Open Started: 2s127ms (2s127ms) - Waiting for builder: 3s526ms (1s399ms) - Initial build available: 3s526ms (5.371us) - Open Finished: 3s526ms (97.663us) - First Batch Requested: 3s527ms (821.318us) - First Batch Returned: 3s527ms (61.664us) - Last Batch Returned: 3s589ms (61.903ms) - Closed: 3s590ms (1.591ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 84.12 KB (86144) - ProbeRows: 3.86K (3856) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.828ms - RowsReturned: 3.86K (3856) - RowsReturnedRate: 2.63 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 1s460ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s590ms - Open Started: 2s127ms (2s127ms) - Waiting for builder: 3s520ms (1s393ms) - Initial build available: 3s520ms (2.661us) - Open Finished: 3s526ms (5.745ms) - First Batch Requested: 3s526ms (100.158us) - First Batch Returned: 3s526ms (65.078us) - Last Batch Returned: 3s588ms (62.310ms) - Closed: 3s590ms (2.060ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 3.86K (3856) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 215.312us - RowsReturned: 3.86K (3856) - RowsReturnedRate: 2.64 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 1s423ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 1s392ms. Maximum arrival delay: 3s272ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):156 Node Lifecycle Event Timeline: 3s590ms - Closed: 3s590ms (3s590ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 4.618ms ; Min: 1.080ms ; Max: 8.155ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.08 KB (4174) ; Min: 1.29 KB (1325) ; Max: 5.47 KB (5605) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.04 KB (2087) ; Min: 596.00 B (596) ; Max: 2.88 KB (2953) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.09 KB (4184) ; Min: 1.31 KB (1340) ; Max: 5.48 KB (5609) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2092) ; Min: 602.00 B (602) ; Max: 2.89 KB (2958) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 242.20 KB (248008) - BytesReadDataNodeCache: 0 - BytesReadLocal: 242.20 KB (248008) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 242.20 KB (248008) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 47.911us - MaterializeTupleTime: 1.737ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163300) - PerReadThreadRawHdfsThroughput: 122.20 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.94K (3939) - RowsReturned: 3.86K (3856) - RowsReturnedRate: 2.71 K/sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 22.920ms - TotalRawHdfsOpenFileTime: 44.207us - TotalRawHdfsReadTime: 1.935ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 20.027us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.439us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.94K (3939) - Rows rejected: 83 (83) - Rows total: 3.94K (3939) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 158 (158) - Files rejected: 156 (156) - Files total: 158 (158) - RowGroups processed: 3 (3) - RowGroups rejected: 0 (0) - RowGroups total: 3 (3) - Rows processed: 3.86K (3856) - Rows rejected: 0 (0) - Rows total: 3.86K (3856) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000005 (host=tarmstrong-Precision-7540:22000):(Total: 2s770ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.218 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s634ms - Prepare Finished: 865.812ms (865.812ms) - Open Finished: 3s544ms (2s678ms) - First Batch Produced: 3s631ms (86.974ms) - First Batch Sent: 3s631ms (3.523us) - ExecInternal Finished: 3s634ms (2.833ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4461788) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.161ms - TotalStorageWaitTime: 35.004ms - TotalThreadsInvoluntaryContextSwitches: 161 (161) - TotalThreadsTotalWallClockTime: 2s768ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 471.370ms - TotalThreadsVoluntaryContextSwitches: 45 (45) Fragment Instance Lifecycle Timings: - ExecTime: 89.727ms - ExecTreeExecTime: 87.262ms - OpenTime: 2s678ms - ExecTreeOpenTime: 689.046ms - PrepareTime: 2.279ms - ExecTreePrepareTime: 1.897ms KrpcDataStreamSender (dst_id=118):(Total: 2.531ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 39.40 KB/sec ; Min: 14.71 KB/sec ; Max: 79.19 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 733.850us ; Min: 489.391us ; Max: 1.725ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -176796.000ns ; Min: -338207.000ns ; Max: -40546.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.655us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 778.197ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s632ms - Open Started: 2s855ms (2s855ms) - Open Finished: 3s544ms (689.040ms) - First Batch Requested: 3s544ms (32.857us) - First Batch Returned: 3s631ms (86.968ms) - Last Batch Returned: 3s632ms (352.705us) - Closed: 3s632ms (69.811us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 186.012us - HTResizeTime: 269.388us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 596.737us Buffer pool: - AllocTime: 48.802us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.490us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.57K (3572) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 775.861ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s631ms - Open Started: 2s855ms (2s855ms) - Waiting for builder: 3s543ms (687.979ms) - Initial build available: 3s543ms (5.670us) - Open Finished: 3s543ms (125.617us) - First Batch Requested: 3s544ms (968.159us) - First Batch Returned: 3s544ms (92.274us) - Last Batch Returned: 3s629ms (84.774ms) - Closed: 3s631ms (1.754ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.57K (3572) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 268.982us - RowsReturned: 3.57K (3572) - RowsReturnedRate: 4.60 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 774.827ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s631ms - Open Started: 2s855ms (2s855ms) - Waiting for builder: 3s476ms (621.006ms) - Initial build available: 3s476ms (3.480us) - Open Finished: 3s543ms (66.872ms) - First Batch Requested: 3s543ms (117.228us) - First Batch Returned: 3s543ms (85.147us) - Last Batch Returned: 3s629ms (85.372ms) - Closed: 3s631ms (2.208ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.57K (3572) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 249.840us - RowsReturned: 3.57K (3572) - RowsReturnedRate: 4.61 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 719.868ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 620ms. Maximum arrival delay: 2s612ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s631ms - Closed: 3s631ms (3s631ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 3.898ms ; Min: 1.880ms ; Max: 5.917ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 3.79 KB (3883) ; Min: 1.22 KB (1253) ; Max: 5.08 KB (5205) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.90 KB (1941) ; Min: 551.00 B (551) ; Max: 2.79 KB (2862) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 3.81 KB (3904) ; Min: 1.25 KB (1285) ; Max: 5.10 KB (5226) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.91 KB (1952) ; Min: 559.00 B (559) ; Max: 2.81 KB (2876) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 239.04 KB (244781) - BytesReadDataNodeCache: 0 - BytesReadLocal: 239.04 KB (244781) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 239.04 KB (244781) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 43.579us - MaterializeTupleTime: 1.434ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162724) - PerReadThreadRawHdfsThroughput: 123.90 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.65K (3652) - RowsReturned: 3.57K (3572) - RowsReturnedRate: 4.96 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 35.004ms - TotalRawHdfsOpenFileTime: 39.921us - TotalRawHdfsReadTime: 1.884ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 34.513us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.318us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.65K (3652) - Rows rejected: 80 (80) - Rows total: 3.65K (3652) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.57K (3572) - Rows rejected: 0 (0) - Rows total: 3.57K (3572) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000006 (host=tarmstrong-Precision-7540:22000):(Total: 2s723ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.207 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s634ms - Prepare Finished: 912.785ms (912.785ms) - Open Finished: 3s548ms (2s635ms) - First Batch Produced: 3s630ms (82.350ms) - First Batch Sent: 3s630ms (4.097us) - ExecInternal Finished: 3s634ms (3.364ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4469604) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.615ms - TotalStorageWaitTime: 81.964ms - TotalThreadsInvoluntaryContextSwitches: 3 (3) - TotalThreadsTotalWallClockTime: 2s721ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 15.716ms - TotalThreadsVoluntaryContextSwitches: 27 (27) Fragment Instance Lifecycle Timings: - ExecTime: 85.614ms - ExecTreeExecTime: 82.680ms - OpenTime: 2s635ms - ExecTreeOpenTime: 692.707ms - PrepareTime: 2.622ms - ExecTreePrepareTime: 2.284ms KrpcDataStreamSender (dst_id=118):(Total: 3.034ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 30.46 KB/sec ; Min: 13.69 KB/sec ; Max: 62.89 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 942.061us ; Min: 354.493us ; Max: 1.965ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -167989.000ns ; Min: -803089.000ns ; Max: -38329.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.336us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 777.665ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s631ms - Open Started: 2s855ms (2s855ms) - Open Finished: 3s548ms (692.703ms) - First Batch Requested: 3s548ms (27.154us) - First Batch Returned: 3s630ms (82.345ms) - Last Batch Returned: 3s631ms (395.425us) - Closed: 3s631ms (67.499us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 210.577us - HTResizeTime: 278.202us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 842.247us Buffer pool: - AllocTime: 58.034us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 44.776us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 7.64K (7644) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 776.541ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s630ms - Open Started: 2s855ms (2s855ms) - Waiting for builder: 3s547ms (691.581ms) - Initial build available: 3s547ms (4.751us) - Open Finished: 3s547ms (128.090us) - First Batch Requested: 3s548ms (1.023ms) - First Batch Returned: 3s548ms (70.054us) - Last Batch Returned: 3s629ms (81.336ms) - Closed: 3s630ms (542.818us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 7.64K (7644) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 528.729us - RowsReturned: 7.64K (7644) - RowsReturnedRate: 9.84 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 775.187ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s630ms - Open Started: 2s855ms (2s855ms) - Waiting for builder: 3s476ms (621.016ms) - Initial build available: 3s476ms (2.731us) - Open Finished: 3s547ms (70.455ms) - First Batch Requested: 3s547ms (129.954us) - First Batch Returned: 3s547ms (85.459us) - Last Batch Returned: 3s629ms (81.964ms) - Closed: 3s630ms (998.750us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 7.64K (7644) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 509.909us - RowsReturned: 7.64K (7644) - RowsReturnedRate: 9.86 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 771.845ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 4 out of 4 Runtime filters: All filters arrived. Waited 619ms. Maximum arrival delay: 2s612ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:4 PARQUET/Unknown(Skipped):148 Node Lifecycle Event Timeline: 3s630ms - Closed: 3s630ms (3s630ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 8.123ms ; Min: 1.722ms ; Max: 16.188ms ; Number of samples: 4) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 4) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 4) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 8.20 KB (8398) ; Min: 2.63 KB (2693) ; Max: 11.13 KB (11400) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.05 KB (2099) ; Min: 621.00 B (621) ; Max: 3.21 KB (3283) ; Number of samples: 12) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 4) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 4) - ParquetUncompressedBytesReadPerColumn: (Avg: 8.25 KB (8443) ; Min: 2.68 KB (2744) ; Max: 11.16 KB (11428) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.06 KB (2110) ; Min: 634.00 B (634) ; Max: 3.21 KB (3288) ; Number of samples: 12) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 484.01 KB (495622) - BytesReadDataNodeCache: 0 - BytesReadLocal: 484.01 KB (495622) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 484.01 KB (495622) - CachedFileHandlesHitCount: 16 (16) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 71.601us - MaterializeTupleTime: 3.105ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 12 (12) - NumRowGroups: 4 (4) - NumRowGroupsWithPageIndex: 4 (4) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163748) - PerReadThreadRawHdfsThroughput: 81.18 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.82K (7822) - RowsReturned: 7.64K (7644) - RowsReturnedRate: 9.90 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 81.964ms - TotalRawHdfsOpenFileTime: 101.989us - TotalRawHdfsReadTime: 5.822ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 64.370us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 672.00 KB (688128) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 34.511us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 7.82K (7822) - Rows rejected: 178 (178) - Rows total: 7.82K (7822) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 148 (148) - Files total: 152 (152) - RowGroups processed: 5 (5) - RowGroups rejected: 0 (0) - RowGroups total: 5 (5) - Rows processed: 7.64K (7644) - Rows rejected: 0 (0) - Rows total: 7.64K (7644) - Splits processed: 4 (4) - Splits rejected: 0 (0) - Splits total: 4 (4) Instance 50467cb8e73eeac4:853461b400000007 (host=tarmstrong-Precision-7540:22000):(Total: 2s722ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.207 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s633ms - Prepare Finished: 922.040ms (922.040ms) - Open Finished: 3s551ms (2s629ms) - First Batch Produced: 3s630ms (78.999ms) - First Batch Sent: 3s630ms (3.241us) - ExecInternal Finished: 3s633ms (2.464ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4463276) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.653ms - TotalStorageWaitTime: 41.939ms - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 2s710ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.149ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 81.359ms - ExecTreeExecTime: 79.325ms - OpenTime: 2s629ms - ExecTreeOpenTime: 696.003ms - PrepareTime: 11.893ms - ExecTreePrepareTime: 11.478ms KrpcDataStreamSender (dst_id=118):(Total: 2.181ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 33.57 KB/sec ; Min: 22.09 KB/sec ; Max: 61.14 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 680.847us ; Min: 402.666us ; Max: 1.149ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -152225.000ns ; Min: -311848.000ns ; Max: -37760.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.555us - TotalBytesSent: 150.00 B (150) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 786.799ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s631ms - Open Started: 2s855ms (2s855ms) - Open Finished: 3s551ms (696.001ms) - First Batch Requested: 3s551ms (28.686us) - First Batch Returned: 3s630ms (78.994ms) - Last Batch Returned: 3s631ms (400.296us) - Closed: 3s631ms (62.830us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 186.644us - HTResizeTime: 290.866us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 618.240us Buffer pool: - AllocTime: 48.818us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.823us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.75K (3750) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 795.255ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s630ms - Open Started: 2s855ms (2s855ms) - Waiting for builder: 3s550ms (695.162ms) - Initial build available: 3s550ms (4.884us) - Open Finished: 3s550ms (103.141us) - First Batch Requested: 3s551ms (767.906us) - First Batch Returned: 3s552ms (604.275us) - Last Batch Returned: 3s629ms (77.312ms) - Closed: 3s630ms (726.372us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 758.264us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.71 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 793.734ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s630ms - Open Started: 2s855ms (2s855ms) - Waiting for builder: 3s476ms (621.101ms) - Initial build available: 3s476ms (2.379us) - Open Finished: 3s550ms (73.946ms) - First Batch Requested: 3s550ms (127.178us) - First Batch Returned: 3s550ms (67.750us) - Last Batch Returned: 3s629ms (78.220ms) - Closed: 3s630ms (1.180ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 252.094us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.72 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 737.340ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 619ms. Maximum arrival delay: 2s612ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s630ms - Closed: 3s630ms (3s630ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 7.666ms ; Min: 2.157ms ; Max: 13.176ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.00 KB (4091) ; Min: 1.32 KB (1352) ; Max: 5.34 KB (5468) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.00 KB (2045) ; Min: 644.00 B (644) ; Max: 2.79 KB (2852) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.01 KB (4109) ; Min: 1.34 KB (1374) ; Max: 5.36 KB (5484) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.01 KB (2054) ; Min: 661.00 B (661) ; Max: 2.79 KB (2858) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 241.22 KB (247008) - BytesReadDataNodeCache: 0 - BytesReadLocal: 241.22 KB (247008) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 241.22 KB (247008) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 48.721us - MaterializeTupleTime: 1.490ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162840) - PerReadThreadRawHdfsThroughput: 116.19 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.84K (3841) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 5.08 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 41.939ms - TotalRawHdfsOpenFileTime: 51.599us - TotalRawHdfsReadTime: 2.027ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 29.853us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 17.501us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.84K (3841) - Rows rejected: 91 (91) - Rows total: 3.84K (3841) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.75K (3750) - Rows rejected: 0 (0) - Rows total: 3.75K (3750) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000008 (host=tarmstrong-Precision-7540:22000):(Total: 2s712ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.207 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s635ms - Prepare Finished: 1s000ms (1s000ms) - Open Finished: 3s572ms (2s571ms) - First Batch Produced: 3s632ms (60.377ms) - First Batch Sent: 3s632ms (2.785us) - ExecInternal Finished: 3s635ms (2.314ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4463844) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.591ms - TotalStorageWaitTime: 70.525ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s634ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.883ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 62.602ms - ExecTreeExecTime: 60.661ms - OpenTime: 2s571ms - ExecTreeOpenTime: 716.276ms - PrepareTime: 78.371ms - ExecTreePrepareTime: 78.006ms KrpcDataStreamSender (dst_id=118):(Total: 2.027ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 63.07 KB/sec ; Min: 40.11 KB/sec ; Max: 101.43 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 642.670us ; Min: 250.335us ; Max: 1.016ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -119329.000ns ; Min: -239301.000ns ; Max: -52319.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.086us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 854.938ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s633ms - Open Started: 2s856ms (2s856ms) - Open Finished: 3s572ms (716.273ms) - First Batch Requested: 3s572ms (33.527us) - First Batch Returned: 3s632ms (60.371ms) - Last Batch Returned: 3s633ms (347.719us) - Closed: 3s633ms (58.805us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 170.645us - HTResizeTime: 321.389us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 689.116us Buffer pool: - AllocTime: 86.168us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 66.994us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.75K (3750) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 927.310ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s632ms - Open Started: 2s856ms (2s856ms) - Waiting for builder: 3s571ms (715.082ms) - Initial build available: 3s571ms (5.998us) - Open Finished: 3s571ms (130.852us) - First Batch Requested: 3s572ms (1.096ms) - First Batch Returned: 3s572ms (84.314us) - Last Batch Returned: 3s629ms (57.049ms) - Closed: 3s632ms (2.939ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 255.519us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.04 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 926.268ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s632ms - Open Started: 2s856ms (2s856ms) - Waiting for builder: 3s477ms (620.900ms) - Initial build available: 3s477ms (2.727us) - Open Finished: 3s571ms (94.085ms) - First Batch Requested: 3s571ms (129.828us) - First Batch Returned: 3s571ms (87.543us) - Last Batch Returned: 3s629ms (57.780ms) - Closed: 3s632ms (3.383ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 258.880us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.05 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 831.807ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 620ms. Maximum arrival delay: 2s612ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s632ms - Closed: 3s632ms (3s632ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 9.757ms ; Min: 8.555ms ; Max: 10.960ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.03 KB (4126) ; Min: 1.40 KB (1433) ; Max: 5.35 KB (5478) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.01 KB (2063) ; Min: 709.00 B (709) ; Max: 2.70 KB (2763) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.05 KB (4145) ; Min: 1.42 KB (1455) ; Max: 5.37 KB (5500) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.02 KB (2072) ; Min: 721.00 B (721) ; Max: 2.72 KB (2781) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 241.40 KB (247192) - BytesReadDataNodeCache: 0 - BytesReadLocal: 241.40 KB (247192) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 241.40 KB (247192) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 46.807us - MaterializeTupleTime: 1.574ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162352) - PerReadThreadRawHdfsThroughput: 129.19 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.85K (3847) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.51 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 70.525ms - TotalRawHdfsOpenFileTime: 45.043us - TotalRawHdfsReadTime: 1.824ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.789us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.85K (3847) - Rows rejected: 97 (97) - Rows total: 3.85K (3847) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.75K (3750) - Rows rejected: 0 (0) - Rows total: 3.75K (3750) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000001 (host=tarmstrong-Precision-7540:22001):(Total: 1s901ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.948 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 3s870ms - Prepare Finished: 1s979ms (1s979ms) - Open Finished: 3s828ms (1s848ms) - First Batch Produced: 3s868ms (39.759ms) - First Batch Sent: 3s868ms (9.788us) - ExecInternal Finished: 3s870ms (2.284ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4484616) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.359ms - TotalStorageWaitTime: 88.483ms - TotalThreadsInvoluntaryContextSwitches: 282 (282) - TotalThreadsTotalWallClockTime: 1s890ms - TotalThreadsSysTime: 3.961ms - TotalThreadsUserTime: 474.996ms - TotalThreadsVoluntaryContextSwitches: 43 (43) Fragment Instance Lifecycle Timings: - ExecTime: 41.917ms - ExecTreeExecTime: 40.197ms - OpenTime: 1s848ms - ExecTreeOpenTime: 131.249ms - PrepareTime: 10.896ms - ExecTreePrepareTime: 3.471ms KrpcDataStreamSender (dst_id=118):(Total: 8.737ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 63.76 KB/sec ; Min: 29.75 KB/sec ; Max: 114.75 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 607.071us ; Min: 305.439us ; Max: 1.286ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -138357.000ns ; Min: -336376.000ns ; Max: -33211.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.431us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 174.909ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s868ms - Open Started: 3s697ms (3s697ms) - Open Finished: 3s828ms (131.244ms) - First Batch Requested: 3s828ms (28.595us) - First Batch Returned: 3s868ms (39.754ms) - Last Batch Returned: 3s868ms (520.917us) - Closed: 3s868ms (82.197us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 34.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 281.874us - HTResizeTime: 207.987us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 645.916us Buffer pool: - AllocTime: 24.074us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.010us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 5.74K (5737) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 171.295ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s867ms - Open Started: 3s697ms (3s697ms) - Waiting for builder: 3s823ms (126.164ms) - Initial build available: 3s823ms (3.237us) - Open Finished: 3s823ms (105.695us) - First Batch Requested: 3s828ms (5.004ms) - First Batch Returned: 3s828ms (80.115us) - Last Batch Returned: 3s867ms (38.958ms) - Closed: 3s867ms (110.295us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 5.74K (5737) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 407.558us - RowsReturned: 5.74K (5737) - RowsReturnedRate: 33.49 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 169.971ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s867ms - Open Started: 3s697ms (3s697ms) - Waiting for builder: 3s698ms (1.275ms) - Initial build available: 3s698ms (5.203us) - Open Finished: 3s823ms (124.810ms) - First Batch Requested: 3s823ms (96.522us) - First Batch Returned: 3s823ms (72.774us) - Last Batch Returned: 3s866ms (43.421ms) - Closed: 3s867ms (725.128us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 5.74K (5737) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 380.477us - RowsReturned: 5.74K (5737) - RowsReturnedRate: 33.75 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 165.840ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 3 out of 3 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s518ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:3 PARQUET/Unknown(Skipped):149 Node Lifecycle Event Timeline: 3s867ms - Closed: 3s867ms (3s867ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0 - FooterProcessingTime: (Avg: 13.348ms ; Min: 7.226ms ; Max: 22.537ms ; Number of samples: 3) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 3) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 3) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 6.09 KB (6239) ; Min: 2.00 KB (2045) ; Max: 8.15 KB (8345) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.03 KB (2079) ; Min: 625.00 B (625) ; Max: 2.88 KB (2954) ; Number of samples: 9) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 3) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 3) - ParquetUncompressedBytesReadPerColumn: (Avg: 6.12 KB (6266) ; Min: 2.04 KB (2094) ; Max: 8.17 KB (8371) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2088) ; Min: 633.00 B (633) ; Max: 2.90 KB (2965) ; Number of samples: 9) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 362.93 KB (371642) - BytesReadDataNodeCache: 0 - BytesReadLocal: 362.93 KB (371642) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 362.93 KB (371642) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 3 (3) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 52.821us - MaterializeTupleTime: 2.792ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 9 (9) - NumRowGroups: 3 (3) - NumRowGroupsWithPageIndex: 3 (3) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163344) - PerReadThreadRawHdfsThroughput: 67.37 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 5.87K (5872) - RowsReturned: 5.74K (5737) - RowsReturnedRate: 34.59 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 88.483ms - TotalRawHdfsOpenFileTime: 5.327ms - TotalRawHdfsReadTime: 5.260ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 28.061us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 504.00 KB (516096) - CumulativeAllocations: 12 (12) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.163us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 5.87K (5872) - Rows rejected: 135 (135) - Rows total: 5.87K (5872) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 149 (149) - Files total: 152 (152) - RowGroups processed: 4 (4) - RowGroups rejected: 0 (0) - RowGroups total: 4 (4) - Rows processed: 5.74K (5737) - Rows rejected: 0 (0) - Rows total: 5.74K (5737) - Splits processed: 3 (3) - Splits rejected: 0 (0) - Splits total: 3 (3) Instance 50467cb8e73eeac4:853461b400000002 (host=tarmstrong-Precision-7540:22001):(Total: 1s885ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.954 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 3s873ms - Prepare Finished: 2s003ms (2s003ms) - Open Finished: 3s826ms (1s823ms) - First Batch Produced: 3s871ms (44.359ms) - First Batch Sent: 3s871ms (2.858us) - ExecInternal Finished: 3s873ms (1.947ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.21 MB (4412132) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.247ms - TotalStorageWaitTime: 122.828ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1s869ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 6.421ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 46.198ms - ExecTreeExecTime: 44.638ms - OpenTime: 1s823ms - ExecTreeOpenTime: 131.219ms - PrepareTime: 15.083ms - ExecTreePrepareTime: 14.693ms KrpcDataStreamSender (dst_id=118):(Total: 1.654ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 88.13 KB/sec ; Min: 64.92 KB/sec ; Max: 136.55 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 694.356us ; Min: 285.997us ; Max: 1.055ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -108232.000ns ; Min: -330119.000ns ; Max: -26853.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.913us - TotalBytesSent: 155.00 B (155) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 190.543ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s871ms - Open Started: 3s695ms (3s695ms) - Open Finished: 3s826ms (131.214ms) - First Batch Requested: 3s826ms (32.323us) - First Batch Returned: 3s871ms (44.354ms) - Last Batch Returned: 3s871ms (339.017us) - Closed: 3s871ms (72.560us) - PeakMemoryUsage: 2.07 MB (2174080) - RowsReturned: 6 (6) - RowsReturnedRate: 31.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 172.887us - HTResizeTime: 175.305us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 366.191us Buffer pool: - AllocTime: 25.051us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.964us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 1.80K (1798) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 195.130ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s870ms - Open Started: 3s695ms (3s695ms) - Waiting for builder: 3s821ms (125.956ms) - Initial build available: 3s821ms (2.725us) - Open Finished: 3s821ms (105.598us) - First Batch Requested: 3s826ms (5.187ms) - First Batch Returned: 3s827ms (67.629us) - Last Batch Returned: 3s867ms (40.268ms) - Closed: 3s870ms (3.686ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 1.80K (1798) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 117.737us - RowsReturned: 1.80K (1798) - RowsReturnedRate: 9.21 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 194.229ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s870ms - Open Started: 3s695ms (3s695ms) - Waiting for builder: 3s696ms (1.073ms) - Initial build available: 3s696ms (4.680us) - Open Finished: 3s821ms (124.801ms) - First Batch Requested: 3s821ms (88.712us) - First Batch Returned: 3s821ms (75.931us) - Last Batch Returned: 3s866ms (45.018ms) - Closed: 3s870ms (4.184ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 1.80K (1798) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 137.811us - RowsReturned: 1.80K (1798) - RowsReturnedRate: 9.26 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 152.905ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s518ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 PARQUET/Unknown(Skipped):151 Node Lifecycle Event Timeline: 3s870ms - Closed: 3s870ms (3s870ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0 - FooterProcessingTime: (Avg: 67.766ms ; Min: 67.766ms ; Max: 67.766ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.88 KB (1926) ; Min: 556.00 B (556) ; Max: 2.56 KB (2618) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.88 KB (1926) ; Min: 556.00 B (556) ; Max: 2.56 KB (2618) ; Number of samples: 3) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.89 KB (1931) ; Min: 571.00 B (571) ; Max: 2.55 KB (2613) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.89 KB (1931) ; Min: 571.00 B (571) ; Max: 2.55 KB (2613) ; Number of samples: 3) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 119.67 KB (122541) - BytesReadDataNodeCache: 0 - BytesReadLocal: 119.67 KB (122541) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 119.67 KB (122541) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 23.402us - MaterializeTupleTime: 705.166us - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2161572) - PerReadThreadRawHdfsThroughput: 4.18 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 1.83K (1835) - RowsReturned: 1.80K (1798) - RowsReturnedRate: 11.76 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 122.828ms - TotalRawHdfsOpenFileTime: 35.317ms - TotalRawHdfsReadTime: 27.956ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 12.262us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.283us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 1.83K (1835) - Rows rejected: 37 (37) - Rows total: 1.83K (1835) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 151 (151) - Files total: 152 (152) - RowGroups processed: 1 (1) - RowGroups rejected: 0 (0) - RowGroups total: 1 (1) - Rows processed: 1.80K (1798) - Rows rejected: 0 (0) - Rows total: 1.80K (1798) - Splits processed: 1 (1) - Splits rejected: 0 (0) - Splits total: 1 (1) Instance 50467cb8e73eeac4:853461b400000003 (host=tarmstrong-Precision-7540:22001):(Total: 1s872ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.932 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 3s872ms - Prepare Finished: 2s008ms (2s008ms) - Open Finished: 3s767ms (1s759ms) - First Batch Produced: 3s869ms (101.618ms) - First Batch Sent: 3s869ms (4.476us) - ExecInternal Finished: 3s872ms (2.979ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4487424) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.259ms - TotalStorageWaitTime: 151.498ms - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1s863ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 17.642ms - TotalThreadsVoluntaryContextSwitches: 23 (23) Fragment Instance Lifecycle Timings: - ExecTime: 104.472ms - ExecTreeExecTime: 101.906ms - OpenTime: 1s759ms - ExecTreeOpenTime: 71.840ms - PrepareTime: 8.179ms - ExecTreePrepareTime: 7.809ms KrpcDataStreamSender (dst_id=118):(Total: 2.641ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 54.86 KB/sec ; Min: 10.30 KB/sec ; Max: 112.76 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 724.366us ; Min: 330.688us ; Max: 2.463ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -188068.000ns ; Min: -1061001.000ns ; Max: -28995.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.814us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 181.549ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s869ms - Open Started: 3s695ms (3s695ms) - Open Finished: 3s767ms (71.837ms) - First Batch Requested: 3s767ms (33.237us) - First Batch Returned: 3s869ms (101.612ms) - Last Batch Returned: 3s869ms (351.219us) - Closed: 3s869ms (67.429us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 33.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 179.566us - HTResizeTime: 185.390us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 745.136us Buffer pool: - AllocTime: 25.895us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 7.96K (7959) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 184.808ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s868ms - Open Started: 3s695ms (3s695ms) - Waiting for builder: 3s766ms (70.613ms) - Initial build available: 3s766ms (4.344us) - Open Finished: 3s766ms (100.595us) - First Batch Requested: 3s767ms (1.170ms) - First Batch Returned: 3s767ms (65.331us) - Last Batch Returned: 3s867ms (99.486ms) - Closed: 3s868ms (1.684ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 7.96K (7959) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 528.975us - RowsReturned: 7.96K (7959) - RowsReturnedRate: 43.07 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 183.711ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s868ms - Open Started: 3s695ms (3s695ms) - Waiting for builder: 3s696ms (1.083ms) - Initial build available: 3s696ms (2.739us) - Open Finished: 3s766ms (69.459ms) - First Batch Requested: 3s766ms (92.000us) - First Batch Returned: 3s766ms (64.943us) - Last Batch Returned: 3s866ms (100.461ms) - Closed: 3s868ms (1.938ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 7.96K (7959) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 536.349us - RowsReturned: 7.96K (7959) - RowsReturnedRate: 43.32 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 178.504ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 4 out of 4 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s518ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:4 PARQUET/Unknown(Skipped):148 Node Lifecycle Event Timeline: 3s868ms - Closed: 3s868ms (3s868ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0 - FooterProcessingTime: (Avg: 12.822ms ; Min: 4.588ms ; Max: 22.980ms ; Number of samples: 4) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 4) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 4) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 8.64 KB (8846) ; Min: 2.73 KB (2793) ; Max: 11.60 KB (11876) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.16 KB (2211) ; Min: 630.00 B (630) ; Max: 3.30 KB (3383) ; Number of samples: 12) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 4) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 4) - ParquetUncompressedBytesReadPerColumn: (Avg: 8.67 KB (8879) ; Min: 2.80 KB (2863) ; Max: 11.62 KB (11895) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.17 KB (2219) ; Min: 638.00 B (638) ; Max: 3.31 KB (3386) ; Number of samples: 12) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 487.99 KB (499703) - BytesReadDataNodeCache: 0 - BytesReadLocal: 487.99 KB (499703) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 487.99 KB (499703) - CachedFileHandlesHitCount: 12 (12) - CachedFileHandlesMissCount: 4 (4) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 83.191us - MaterializeTupleTime: 3.776ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 12 (12) - NumRowGroups: 4 (4) - NumRowGroupsWithPageIndex: 4 (4) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2164160) - PerReadThreadRawHdfsThroughput: 41.44 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 8.17K (8171) - RowsReturned: 7.96K (7959) - RowsReturnedRate: 44.59 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 151.498ms - TotalRawHdfsOpenFileTime: 9.332ms - TotalRawHdfsReadTime: 11.499ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 62.102us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 672.00 KB (688128) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.534us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 8.17K (8171) - Rows rejected: 212 (212) - Rows total: 8.17K (8171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 148 (148) - Files total: 152 (152) - RowGroups processed: 6 (6) - RowGroups rejected: 0 (0) - RowGroups total: 6 (6) - Rows processed: 7.96K (7959) - Rows rejected: 0 (0) - Rows total: 7.96K (7959) - Splits processed: 4 (4) - Splits rejected: 0 (0) - Splits total: 4 (4) Instance 50467cb8e73eeac4:853461b400000004 (host=tarmstrong-Precision-7540:22001):(Total: 1s847ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.945 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.92 MB Fragment Instance Lifecycle Event Timeline: 3s873ms - Prepare Finished: 2s061ms (2s061ms) - Open Finished: 3s822ms (1s760ms) - First Batch Produced: 3s870ms (47.994ms) - First Batch Sent: 3s870ms (2.625us) - ExecInternal Finished: 3s873ms (3.100ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4463096) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.265ms - TotalStorageWaitTime: 75.926ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1s811ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.755ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 50.963ms - ExecTreeExecTime: 48.292ms - OpenTime: 1s760ms - ExecTreeOpenTime: 126.321ms - PrepareTime: 36.386ms - ExecTreePrepareTime: 36.032ms KrpcDataStreamSender (dst_id=118):(Total: 2.736ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 61.26 KB/sec ; Min: 35.27 KB/sec ; Max: 100.02 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 777.570us ; Min: 343.250us ; Max: 1.066ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -169437.000ns ; Min: -356231.000ns ; Max: -46024.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 38.085us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=7):(Total: 210.639ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s870ms - Open Started: 3s695ms (3s695ms) - Open Finished: 3s822ms (126.318ms) - First Batch Requested: 3s822ms (27.908us) - First Batch Returned: 3s870ms (47.989ms) - Last Batch Returned: 3s870ms (364.166us) - Closed: 3s870ms (80.667us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 28.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 180.933us - HTResizeTime: 179.182us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 496.877us Buffer pool: - AllocTime: 27.124us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.366us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.57K (3571) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=6):(Total: 241.909ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s869ms - Open Started: 3s695ms (3s695ms) - Waiting for builder: 3s821ms (125.357ms) - Initial build available: 3s821ms (6.658us) - Open Finished: 3s821ms (115.441us) - First Batch Requested: 3s822ms (871.025us) - First Batch Returned: 3s822ms (65.259us) - Last Batch Returned: 3s867ms (45.104ms) - Closed: 3s869ms (2.507ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.57K (3571) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 271.005us - RowsReturned: 3.57K (3571) - RowsReturnedRate: 14.76 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=5):(Total: 240.938ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s869ms - Open Started: 3s695ms (3s695ms) - Waiting for builder: 3s697ms (1.273ms) - Initial build available: 3s697ms (3.775us) - Open Finished: 3s821ms (123.987ms) - First Batch Requested: 3s821ms (124.722us) - First Batch Returned: 3s821ms (73.908us) - Last Batch Returned: 3s866ms (45.645ms) - Closed: 3s869ms (2.896ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.57K (3571) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 259.808us - RowsReturned: 3.57K (3571) - RowsReturnedRate: 14.82 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=2):(Total: 184.636ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.92 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s518ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s869ms - Closed: 3s869ms (3s869ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0 - FooterProcessingTime: (Avg: 15.215ms ; Min: 11.363ms ; Max: 19.068ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 3.77 KB (3862) ; Min: 1.18 KB (1208) ; Max: 5.07 KB (5195) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.89 KB (1931) ; Min: 572.00 B (572) ; Max: 2.57 KB (2633) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 3.78 KB (3866) ; Min: 1.18 KB (1208) ; Max: 5.08 KB (5200) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.89 KB (1933) ; Min: 569.00 B (569) ; Max: 2.58 KB (2638) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 239.12 KB (244858) - BytesReadDataNodeCache: 0 - BytesReadLocal: 239.12 KB (244858) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 239.12 KB (244858) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 36.673us - MaterializeTupleTime: 1.406ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2161556) - PerReadThreadRawHdfsThroughput: 34.55 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.65K (3649) - RowsReturned: 3.57K (3571) - RowsReturnedRate: 19.34 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 75.926ms - TotalRawHdfsOpenFileTime: 6.827ms - TotalRawHdfsReadTime: 6.758ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 21.725us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.768us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 0 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.65K (3649) - Rows rejected: 78 (78) - Rows total: 3.65K (3649) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.57K (3571) - Rows rejected: 0 (0) - Rows total: 3.57K (3571) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Averaged Fragment F08:(Total: 2s885ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.71 MB, max: 43.58 MB, avg: 32.21 MB, stddev: 15.91 MB completion times: min:6s264ms max:8s043ms mean: 7s206ms stddev:730.117ms execution rates: min:1.55 MB/sec max:5.93 MB/sec mean:4.30 MB/sec stddev:1.95 MB/sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.39 MB (10897352) - PeakReservation: 10.10 MB (10594986) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.433ms - TotalStorageWaitTime: 10.438ms - TotalThreadsInvoluntaryContextSwitches: 451 (451) - TotalThreadsTotalWallClockTime: 2s883ms - TotalThreadsSysTime: 13.873ms - TotalThreadsUserTime: 513.867ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 151.905ms - ExecTreeExecTime: 149.734ms - OpenTime: 2s731ms - ExecTreeOpenTime: 1s376ms - PrepareTime: 2.614ms - ExecTreePrepareTime: 2.287ms KrpcDataStreamSender (dst_id=125):(Total: 2.255ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 46.77 KB (47893) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.367us - TotalBytesSent: 34.00 B (34) - UncompressedRowBatchSize: 60.00 B (60) AGGREGATION_NODE (id=18):(Total: 1s528ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.05 MB (2150186) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 34.137us - HTResizeTime: 95.815us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 1.397ms Buffer pool: - AllocTime: 27.001us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 18.022us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.73K (2730) - HashCollisions: 0 (0) - Probes: 10.56K (10564) - Resizes: 5 (5) - Travel: 0 (0) HASH_JOIN_NODE (id=17):(Total: 1s527ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 47.79 KB (48938) - ProbeRows: 10.56K (10564) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 671.116us - RowsReturned: 10.56K (10564) - RowsReturnedRate: 6.45 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=15):(Total: 1s525ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.97 MB (4161220) - BytesReadDataNodeCache: 0 - BytesReadLocal: 3.97 MB (4161220) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.97 MB (4161220) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.371ms - MaterializeTupleTime: 354.198ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 69 (69) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.61 MB (9025709) - PerReadThreadRawHdfsThroughput: 988.05 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 480.52K (480516) - RowsReturned: 10.56K (10564) - RowsReturnedRate: 6.46 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.438ms - TotalRawHdfsOpenFileTime: 643.870us - TotalRawHdfsReadTime: 4.318ms - TotalReadThroughput: 1.48 MB/sec Buffer pool: - AllocTime: 38.246us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.24 MB (6545408) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.10 MB (8497834) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.12 MB (6414336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 27.848us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 8 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 480.52K (480516) - Rows rejected: 469.95K (469951) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F08: Instance 50467cb8e73eeac4:853461b40000000f (host=tarmstrong-Precision-7540:22002):(Total: 3s518ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.134 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.71 MB Fragment Instance Lifecycle Event Timeline: 3s726ms - Prepare Finished: 209.448ms (209.448ms) - Open Finished: 3s724ms (3s514ms) - First Batch Produced: 3s725ms (958.450us) - First Batch Sent: 3s725ms (3.008us) - ExecInternal Finished: 3s726ms (1.238ms) - MemoryUsage (500.000ms): 87.69 KB, 87.69 KB, 87.69 KB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.10 MB (10591936) - PeakReservation: 10.00 MB (10485760) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 134.607us - TotalStorageWaitTime: 5.921ms - TotalThreadsInvoluntaryContextSwitches: 327 (327) - TotalThreadsTotalWallClockTime: 3s516ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 362.417ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 2.075ms - ExecTreeExecTime: 960.468us - OpenTime: 3s514ms - ExecTreeOpenTime: 2s186ms - PrepareTime: 1.439ms - ExecTreePrepareTime: 1.130ms KrpcDataStreamSender (dst_id=125):(Total: 1.221ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: 0.00 /sec (Number of samples: 0) - RpcNetworkTime: (Avg: 362.387us ; Min: 173.618us ; Max: 746.255us ; Number of samples: 12) - RpcRecvrTime: (Avg: -96935.000ns ; Min: -450605.000ns ; Max: -38306.000ns ; Number of samples: 12) - EosSent: 12 (12) - PeakMemoryUsage: 41.44 KB (42432) - RowsSent: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - TotalBytesSent: 0 - UncompressedRowBatchSize: 0 AGGREGATION_NODE (id=18):(Total: 2s188ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s725ms - Open Started: 1s537ms (1s537ms) - Open Finished: 3s724ms (2s186ms) - First Batch Requested: 3s724ms (28.662us) - First Batch Returned: 3s725ms (953.112us) - Last Batch Returned: 3s725ms (10.259us) - Closed: 3s725ms (65.179us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 0 (0) - StreamingTime: 6.481us Buffer pool: - AllocTime: 10.545us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.683us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) HASH_JOIN_NODE (id=17):(Total: 2s187ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s724ms - Open Started: 1s537ms (1s537ms) - Waiting for builder: 3s537ms (1s999ms) - Initial build available: 3s538ms (441.869us) - Open Finished: 3s723ms (185.276ms) - First Batch Requested: 3s724ms (909.682us) - First Batch Returned: 3s724ms (11.785us) - Last Batch Returned: 3s724ms (359.757us) - Closed: 3s724ms (88.091us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 637.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=15):(Total: 2s186ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 2s000ms. Maximum arrival delay: 3s330ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s724ms - Closed: 3s724ms (3s724ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 1.434ms ; Min: 1.434ms ; Max: 1.434ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 219.08 KB (224336) ; Min: 2.55 KB (2612) ; Max: 429.76 KB (440072) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 46.12 KB (47228) ; Min: 1007.00 B (1007) ; Max: 64.62 KB (66173) ; Number of samples: 19) - ParquetRowGroupActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 2.04 MB (2138112) ; Min: 2.04 MB (2138112) ; Max: 2.04 MB (2138112) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 220.50 KB (225794) ; Min: 3.36 KB (3436) ; Max: 429.71 KB (440019) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 46.42 KB (47535) ; Min: 1.24 KB (1266) ; Max: 64.80 KB (66354) ; Number of samples: 19) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.26 MB (1320693) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.26 MB (1320693) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.26 MB (1320693) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 353.976us - MaterializeTupleTime: 162.798ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 19 (19) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.49 MB (8898933) - PerReadThreadRawHdfsThroughput: 248.60 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 5.921ms - TotalRawHdfsOpenFileTime: 33.527us - TotalRawHdfsReadTime: 5.066ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 33.333us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.16 MB (2269184) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.04 MB (2138112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.539us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 8 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b40000000e (host=tarmstrong-Precision-7540:22000):(Total: 3s204ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.217 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.33 MB Fragment Instance Lifecycle Event Timeline: 4s031ms - Prepare Finished: 832.563ms (832.563ms) - Open Finished: 3s579ms (2s746ms) - First Batch Produced: 4s026ms (446.748ms) - First Batch Sent: 4s026ms (3.606us) - ExecInternal Finished: 4s031ms (5.046ms) - MemoryUsage (500.000ms): 87.69 KB, 87.69 KB, 87.69 KB, 8.09 MB, 8.09 MB, 10.82 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.82 MB (11344346) - PeakReservation: 10.16 MB (10649600) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.749ms - TotalStorageWaitTime: 18.692ms - TotalThreadsInvoluntaryContextSwitches: 596 (596) - TotalThreadsTotalWallClockTime: 3s198ms - TotalThreadsSysTime: 34.634ms - TotalThreadsUserTime: 580.751ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 451.717ms - ExecTreeExecTime: 446.924ms - OpenTime: 2s746ms - ExecTreeOpenTime: 1s187ms - PrepareTime: 5.642ms - ExecTreePrepareTime: 5.328ms KrpcDataStreamSender (dst_id=125):(Total: 4.860ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 59.65 KB/sec ; Min: 50.99 KB/sec ; Max: 71.89 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 514.438us ; Min: 194.335us ; Max: 1.059ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -75488.000ns ; Min: -205620.000ns ; Max: -29806.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 57.44 KB (58816) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.103us - TotalBytesSent: 102.00 B (102) - UncompressedRowBatchSize: 180.00 B (180) AGGREGATION_NODE (id=18):(Total: 1s640ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s026ms - Open Started: 2s391ms (2s391ms) - Open Finished: 3s579ms (1s187ms) - First Batch Requested: 3s579ms (28.792us) - First Batch Returned: 4s026ms (446.742ms) - Last Batch Returned: 4s026ms (225.604us) - Closed: 4s026ms (63.135us) - PeakMemoryUsage: 2.09 MB (2196608) - RowsReturned: 4 (4) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 102.412us - HTResizeTime: 287.445us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 4.179ms Buffer pool: - AllocTime: 62.004us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 48.385us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 31.69K (31693) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=17):(Total: 1s638ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s025ms - Open Started: 2s391ms (2s391ms) - Waiting for builder: 3s520ms (1s128ms) - Initial build available: 3s520ms (380.363us) - Open Finished: 3s578ms (58.010ms) - First Batch Requested: 3s579ms (1.082ms) - First Batch Returned: 3s579ms (63.089us) - Last Batch Returned: 4s025ms (446.076ms) - Closed: 4s025ms (96.224us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 31.69K (31693) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.012ms - RowsReturned: 31.69K (31693) - RowsReturnedRate: 19.34 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=15):(Total: 1s635ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.33 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 1s128ms. Maximum arrival delay: 2s688ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 4s025ms - Closed: 4s025ms (4s025ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 5.31 MB - FooterProcessingTime: (Avg: 2.059ms ; Min: 2.059ms ; Max: 2.059ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.23 MB (1284633) ; Min: 13.91 KB (14239) ; Max: 2.40 MB (2516023) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 53.38 KB (54665) ; Min: 242.00 B (242) ; Max: 64.61 KB (66164) ; Number of samples: 94) - ParquetRowGroupActualReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.23 MB (1293391) ; Min: 17.39 KB (17806) ; Max: 2.40 MB (2515748) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 53.75 KB (55037) ; Min: 262.00 B (262) ; Max: 64.76 KB (66315) ; Number of samples: 94) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.31 MB (5566485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.31 MB (5566485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.31 MB (5566485) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.223ms - MaterializeTupleTime: 445.241ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 94 (94) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.67 MB (9089102) - PerReadThreadRawHdfsThroughput: 1.43 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 652.17K (652171) - RowsReturned: 31.69K (31693) - RowsReturnedRate: 19.38 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 18.692ms - TotalRawHdfsOpenFileTime: 24.534us - TotalRawHdfsReadTime: 3.630ms - TotalReadThroughput: 1.77 MB/sec Buffer pool: - AllocTime: 39.088us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.28 MB (8683520) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.16 MB (8552448) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.16 MB (8552448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.067us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 8 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 652.17K (652171) - Rows rejected: 620.48K (620478) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b40000000d (host=tarmstrong-Precision-7540:22001):(Total: 1s934ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.932 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.58 MB Fragment Instance Lifecycle Event Timeline: 3s984ms - Prepare Finished: 2s050ms (2s050ms) - Open Finished: 3s982ms (1s932ms) - First Batch Produced: 3s983ms (1.316ms) - First Batch Sent: 3s983ms (3.220us) - ExecInternal Finished: 3s984ms (685.050us) - MemoryUsage (500.000ms): 87.69 KB, 87.69 KB, 87.69 KB, 8.75 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.26 MB (10755776) - PeakReservation: 10.16 MB (10649600) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 416.976us - TotalStorageWaitTime: 6.699ms - TotalThreadsInvoluntaryContextSwitches: 431 (431) - TotalThreadsTotalWallClockTime: 1s933ms - TotalThreadsSysTime: 6.986ms - TotalThreadsUserTime: 598.435ms - TotalThreadsVoluntaryContextSwitches: 33 (33) Fragment Instance Lifecycle Timings: - ExecTime: 1.923ms - ExecTreeExecTime: 1.318ms - OpenTime: 1s932ms - ExecTreeOpenTime: 756.650ms - PrepareTime: 761.179us - ExecTreePrepareTime: 404.223us KrpcDataStreamSender (dst_id=125):(Total: 685.236us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: 0.00 /sec (Number of samples: 0) - RpcNetworkTime: (Avg: 374.686us ; Min: 276.982us ; Max: 429.487us ; Number of samples: 12) - RpcRecvrTime: (Avg: -97742.000ns ; Min: -197561.000ns ; Max: -32225.000ns ; Number of samples: 12) - EosSent: 12 (12) - PeakMemoryUsage: 41.44 KB (42432) - RowsSent: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - TotalBytesSent: 0 - UncompressedRowBatchSize: 0 AGGREGATION_NODE (id=18):(Total: 758.369ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s983ms - Open Started: 3s225ms (3s225ms) - Open Finished: 3s982ms (756.647ms) - First Batch Requested: 3s982ms (27.272us) - First Batch Returned: 3s983ms (1.311ms) - Last Batch Returned: 3s983ms (10.759us) - Closed: 3s983ms (70.704us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 0 (0) - StreamingTime: 7.719us Buffer pool: - AllocTime: 8.455us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) HASH_JOIN_NODE (id=17):(Total: 756.684ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s983ms - Open Started: 3s225ms (3s225ms) - Waiting for builder: 3s504ms (278.307ms) - Initial build available: 3s504ms (529.094us) - Open Finished: 3s981ms (476.924ms) - First Batch Requested: 3s982ms (918.366us) - First Batch Returned: 3s982ms (10.221us) - Last Batch Returned: 3s982ms (448.848us) - Closed: 3s983ms (130.275us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 686.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=15):(Total: 755.423ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.58 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 278ms. Maximum arrival delay: 1s454ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s983ms - Closed: 3s983ms (3s983ms) - BytesReadSeries (500.000ms): 0, 0, 0, 5.34 MB - FooterProcessingTime: (Avg: 3.665ms ; Min: 3.665ms ; Max: 3.665ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.23 MB (1292048) ; Min: 14.06 KB (14395) ; Max: 2.41 MB (2532089) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 53.13 KB (54402) ; Min: 101.00 B (101) ; Max: 64.64 KB (66191) ; Number of samples: 95) - ParquetRowGroupActualReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.24 MB (1299260) ; Min: 17.34 KB (17761) ; Max: 2.41 MB (2531811) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 53.42 KB (54705) ; Min: 98.00 B (98) ; Max: 64.80 KB (66358) ; Number of samples: 95) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.34 MB (5596483) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.34 MB (5596483) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.34 MB (5596483) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.537ms - MaterializeTupleTime: 454.557ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 95 (95) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.67 MB (9089093) - PerReadThreadRawHdfsThroughput: 1.22 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 656.13K (656132) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 6.699ms - TotalRawHdfsOpenFileTime: 1.873ms - TotalRawHdfsReadTime: 4.258ms - TotalReadThroughput: 2.67 MB/sec Buffer pool: - AllocTime: 42.319us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.28 MB (8683520) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.16 MB (8552448) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.16 MB (8552448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 29.938us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 8 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 656.13K (656132) - Rows rejected: 656.13K (656132) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F14:(Total: 2s552ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 4.68 MB, max: 40.42 MB, avg: 22.55 MB, stddev: 17.87 MB completion times: min:7s311ms max:8s043ms mean: 7s677ms stddev:365.780ms execution rates: min:655.06 KB/sec max:5.03 MB/sec mean:2.83 MB/sec stddev:2.19 MB/sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 11.16 MB (11700216) - PeakReservation: 10.38 MB (10878976) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.880ms - TotalStorageWaitTime: 13.868ms - TotalThreadsInvoluntaryContextSwitches: 276 (276) - TotalThreadsTotalWallClockTime: 2s531ms - TotalThreadsSysTime: 5.757ms - TotalThreadsUserTime: 588.543ms - TotalThreadsVoluntaryContextSwitches: 34 (34) Fragment Instance Lifecycle Timings: - ExecTime: 145.653ms - ExecTreeExecTime: 141.868ms - OpenTime: 2s386ms - ExecTreeOpenTime: 640.629ms - PrepareTime: 20.531ms - ExecTreePrepareTime: 509.782us KrpcDataStreamSender (dst_id=133):(Total: 3.821ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 47.796us - TotalBytesSent: 707.00 B (707) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=29):(Total: 782.996ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.16 MB (2268288) - RowsReturned: 30 (30) - RowsReturnedRate: 52.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 395.486us - HTResizeTime: 261.093us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 9.004ms Buffer pool: - AllocTime: 8.068ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.030ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 7.80K (7796) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=28):(Total: 766.127ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 123.62 KB (126592) - ProbeRows: 7.80K (7796) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.760ms - RowsReturned: 7.80K (7796) - RowsReturnedRate: 19.61 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=27):(Total: 763.354ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 87.62 KB (89728) - ProbeRows: 7.80K (7796) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 539.159us - RowsReturned: 7.80K (7796) - RowsReturnedRate: 19.86 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=24):(Total: 762.026ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.32 MB (3479738) - BytesReadDataNodeCache: 0 - BytesReadLocal: 3.32 MB (3479738) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.32 MB (3479738) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 702.684us - MaterializeTupleTime: 146.353ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 56 (56) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.91 MB (9337779) - PerReadThreadRawHdfsThroughput: 757.10 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 359.69K (359692) - RowsReturned: 7.80K (7796) - RowsReturnedRate: 19.96 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 13.868ms - TotalRawHdfsOpenFileTime: 4.899ms - TotalRawHdfsReadTime: 3.727ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 38.666us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 5.05 MB (5292032) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.38 MB (8781824) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.92 MB (5160960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.461us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 12 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 359.69K (359692) - Rows rejected: 94 (94) - Rows total: 359.69K (359692) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 14 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 359.60K (359598) - Rows rejected: 351.80K (351801) - Rows total: 359.60K (359598) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F14: Instance 50467cb8e73eeac4:853461b400000011 (host=tarmstrong-Precision-7540:22000):(Total: 3s010ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.217 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB Fragment Instance Lifecycle Event Timeline: 3s684ms - Prepare Finished: 675.170ms (675.170ms) - Open Finished: 3s646ms (2s971ms) - First Batch Produced: 3s680ms (33.308ms) - First Batch Sent: 3s680ms (3.635us) - ExecInternal Finished: 3s684ms (4.388ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 8.12 MB, 8.12 MB, 57.44 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.71 MB (11225670) - PeakReservation: 10.00 MB (10485760) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 179.900us - TotalStorageWaitTime: 13.788ms - TotalThreadsInvoluntaryContextSwitches: 153 (153) - TotalThreadsTotalWallClockTime: 3s009ms - TotalThreadsSysTime: 7.611ms - TotalThreadsUserTime: 487.071ms - TotalThreadsVoluntaryContextSwitches: 34 (34) Fragment Instance Lifecycle Timings: - ExecTime: 37.607ms - ExecTreeExecTime: 34.008ms - OpenTime: 2s971ms - ExecTreeOpenTime: 1s152ms - PrepareTime: 877.684us - ExecTreePrepareTime: 558.929us KrpcDataStreamSender (dst_id=133):(Total: 3.606ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 567.00 B - NetworkThroughput: (Avg: 202.82 KB/sec ; Min: 44.67 KB/sec ; Max: 489.45 KB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 338.681us ; Min: 221.553us ; Max: 575.820us ; Number of samples: 23) - RpcRecvrTime: (Avg: -83430.000ns ; Min: -171526.000ns ; Max: -31189.000ns ; Number of samples: 23) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 61.451us - TotalBytesSent: 710.00 B (710) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=29):(Total: 1s186ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s680ms - Open Started: 2s494ms (2s494ms) - Open Finished: 3s646ms (1s152ms) - First Batch Requested: 3s646ms (28.366us) - First Batch Returned: 3s680ms (33.302ms) - Last Batch Returned: 3s680ms (860.470us) - Closed: 3s680ms (72.488us) - PeakMemoryUsage: 2.11 MB (2210944) - RowsReturned: 30 (30) - RowsReturnedRate: 25.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 460.596us - HTResizeTime: 180.512us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 16.551ms Buffer pool: - AllocTime: 16.084ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 16.061ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.41K (1414) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=28):(Total: 1s159ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s679ms - Open Started: 2s494ms (2s494ms) - Waiting for builder: 3s645ms (1s151ms) - Initial build available: 3s645ms (6.409us) - Open Finished: 3s645ms (139.697us) - First Batch Requested: 3s646ms (840.330us) - First Batch Returned: 3s646ms (78.099us) - Last Batch Returned: 3s670ms (23.587ms) - Closed: 3s679ms (9.551ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 107.12 KB (109696) - ProbeRows: 1.41K (1414) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 110.448us - RowsReturned: 1.41K (1414) - RowsReturnedRate: 1.22 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=27):(Total: 1s158ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s679ms - Open Started: 2s494ms (2s494ms) - Waiting for builder: 3s585ms (1s090ms) - Initial build available: 3s585ms (83.386us) - Open Finished: 3s645ms (60.033ms) - First Batch Requested: 3s645ms (150.730us) - First Batch Returned: 3s645ms (81.084us) - Last Batch Returned: 3s670ms (24.166ms) - Closed: 3s679ms (9.882ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 1.41K (1414) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 106.627us - RowsReturned: 1.41K (1414) - RowsReturnedRate: 1.22 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=24):(Total: 1s157ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 1s091ms. Maximum arrival delay: 2s910ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s679ms - Closed: 3s679ms (3s679ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 13.457ms ; Min: 13.457ms ; Max: 13.457ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 89.57 KB (91718) ; Min: 15.23 KB (15596) ; Max: 151.01 KB (154639) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 35.83 KB (36687) ; Min: 3.65 KB (3737) ; Max: 64.03 KB (65566) ; Number of samples: 10) - ParquetRowGroupActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 1.09 MB (1146880) ; Min: 1.09 MB (1146880) ; Max: 1.09 MB (1146880) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 89.55 KB (91704) ; Min: 15.22 KB (15588) ; Max: 150.99 KB (154615) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 35.82 KB (36681) ; Min: 3.65 KB (3733) ; Max: 64.02 KB (65559) ; Number of samples: 10) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 777.63 KB (796295) - BytesReadDataNodeCache: 0 - BytesReadLocal: 777.63 KB (796295) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 777.63 KB (796295) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 155.832us - MaterializeTupleTime: 23.005ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.52 MB (8934578) - PerReadThreadRawHdfsThroughput: 283.51 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 61.94K (61940) - RowsReturned: 1.41K (1414) - RowsReturnedRate: 1.22 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 13.788ms - TotalRawHdfsOpenFileTime: 9.767ms - TotalRawHdfsReadTime: 2.678ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 43.827us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.22 MB (1277952) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.09 MB (1146880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 35.803us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 12 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 61.94K (61940) - Rows rejected: 13 (13) - Rows total: 61.94K (61940) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 14 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 61.93K (61927) - Rows rejected: 60.51K (60513) - Rows total: 61.93K (61927) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b400000010 (host=tarmstrong-Precision-7540:22001):(Total: 2s094ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.932 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB Fragment Instance Lifecycle Event Timeline: 4s157ms - Prepare Finished: 2s102ms (2s102ms) - Open Finished: 3s903ms (1s801ms) - First Batch Produced: 4s152ms (249.211ms) - First Batch Sent: 4s152ms (2.584us) - ExecInternal Finished: 4s157ms (4.611ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 11.61 MB (12174763) - PeakReservation: 10.75 MB (11272192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.581ms - TotalStorageWaitTime: 13.949ms - TotalThreadsInvoluntaryContextSwitches: 400 (400) - TotalThreadsTotalWallClockTime: 2s054ms - TotalThreadsSysTime: 3.903ms - TotalThreadsUserTime: 690.015ms - TotalThreadsVoluntaryContextSwitches: 35 (35) Fragment Instance Lifecycle Timings: - ExecTime: 253.698ms - ExecTreeExecTime: 249.729ms - OpenTime: 1s801ms - ExecTreeOpenTime: 129.087ms - PrepareTime: 40.184ms - ExecTreePrepareTime: 460.636us KrpcDataStreamSender (dst_id=133):(Total: 4.037ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 132.60 KB/sec ; Min: 42.35 KB/sec ; Max: 202.18 KB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 1.349ms ; Min: 281.325us ; Max: 2.927ms ; Number of samples: 23) - RpcRecvrTime: (Avg: -170984.000ns ; Min: -1890350.000ns ; Max: -27619.000ns ; Number of samples: 23) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 34.141us - TotalBytesSent: 704.00 B (704) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=29):(Total: 379.266ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s153ms - Open Started: 3s774ms (3s774ms) - Open Finished: 3s903ms (129.082ms) - First Batch Requested: 3s903ms (39.038us) - First Batch Returned: 4s152ms (249.204ms) - Last Batch Returned: 4s153ms (631.616us) - Closed: 4s153ms (44.525us) - PeakMemoryUsage: 2.22 MB (2325632) - RowsReturned: 30 (30) - RowsReturnedRate: 79.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 330.377us - HTResizeTime: 341.674us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 1.458ms Buffer pool: - AllocTime: 52.343us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 14.18K (14179) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=28):(Total: 373.041ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s152ms - Open Started: 3s774ms (3s774ms) - Waiting for builder: 3s901ms (127.050ms) - Initial build available: 3s901ms (6.126us) - Open Finished: 3s901ms (140.286us) - First Batch Requested: 3s903ms (1.930ms) - First Batch Returned: 3s905ms (2.325ms) - Last Batch Returned: 4s152ms (246.710ms) - Closed: 4s152ms (111.460us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 140.12 KB (143488) - ProbeRows: 14.18K (14179) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.411ms - RowsReturned: 14.18K (14179) - RowsReturnedRate: 38.01 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=27):(Total: 368.246ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s152ms - Open Started: 3s774ms (3s774ms) - Waiting for builder: 3s775ms (458.878us) - Initial build available: 3s775ms (3.934us) - Open Finished: 3s900ms (125.832ms) - First Batch Requested: 3s901ms (795.262us) - First Batch Returned: 3s901ms (84.485us) - Last Batch Returned: 4s152ms (250.726ms) - Closed: 4s152ms (338.819us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 104.12 KB (106624) - ProbeRows: 14.18K (14179) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 971.692us - RowsReturned: 14.18K (14179) - RowsReturnedRate: 38.50 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=24):(Total: 366.464ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s535ms. Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 4s152ms - Closed: 4s152ms (4s152ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0 - FooterProcessingTime: (Avg: 11.099ms ; Min: 11.099ms ; Max: 11.099ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.37 MB (1432701) ; Min: 161.78 KB (165666) ; Max: 2.42 MB (2537281) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 54.87 KB (56184) ; Min: 10.80 KB (11060) ; Max: 64.10 KB (65643) ; Number of samples: 102) - ParquetRowGroupActualReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.37 MB (1432544) ; Min: 161.74 KB (165624) ; Max: 2.42 MB (2537003) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 54.86 KB (56178) ; Min: 10.80 KB (11055) ; Max: 64.11 KB (65646) ; Number of samples: 102) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.88 MB (6163182) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.88 MB (6163182) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.88 MB (6163182) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.249ms - MaterializeTupleTime: 269.701ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 102 (102) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.29 MB (9740981) - PerReadThreadRawHdfsThroughput: 1.20 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 657.44K (657444) - RowsReturned: 14.18K (14179) - RowsReturnedRate: 38.69 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 13.949ms - TotalRawHdfsOpenFileTime: 30.904us - TotalRawHdfsReadTime: 4.775ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 33.505us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.88 MB (9306112) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.75 MB (9175040) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.75 MB (9175040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.119us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 12 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 657.44K (657444) - Rows rejected: 175 (175) - Rows total: 657.44K (657444) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 14 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 657.27K (657269) - Rows rejected: 643.09K (643090) - Rows total: 657.27K (657269) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F47:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:418.264ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 2.304ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 40 (40) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 1.328ms - TotalThreadsUserTime: 72.366ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 3.622ms - ExecTreeExecTime: 1.092ms - OpenTime: 1m2s - ExecTreeOpenTime: 1m - PrepareTime: 1.217ms - ExecTreePrepareTime: 887.641us KrpcDataStreamSender (dst_id=166):(Total: 2.626ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 30.12 KB (30848) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.417us - TotalBytesSent: 77.00 B (77) - UncompressedRowBatchSize: 122.00 B (122) AGGREGATION_NODE (id=75):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 39.211us - HTResizeTime: 0.000ns - LargestPartitionPercent: 47 (47) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 31.700us Buffer pool: - AllocTime: 10.166us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 352.00 KB (360448) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 352.00 KB (360448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.835us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.54K (1536) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 58.628us - GetResultsTime: 83.737us - HTResizeTime: 2.673us - LargestPartitionPercent: 55 (55) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.924us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 442.67 KB (453290) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 442.67 KB (453290) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.224us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.99K (2986) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 9.263us - PeakMemoryUsage: 28.00 KB (28672) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 8.271us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 40.00 KB (40960) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 28.00 KB (28672) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 28.00 KB (28672) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 82.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1m - TotalBytesDequeued: 282.00 B (282) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - DeserializeRowBatchTime: 43.969us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 178.00 B (178) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F47: Instance 50467cb8e73eeac4:853461b40000003b (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.114 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 158.894ms (158.894ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (694.597us) - First Batch Sent: 1m3s (6.668us) - ExecInternal Finished: 1m3s (5.980ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 5.623ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 104 (104) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.849ms - TotalThreadsUserTime: 272.499ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 6.593ms - ExecTreeExecTime: 743.714us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 805.124us - ExecTreePrepareTime: 388.908us KrpcDataStreamSender (dst_id=166):(Total: 6.036ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 56.97 KB/sec ; Min: 56.97 KB/sec ; Max: 56.97 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 358.478us ; Min: 226.447us ; Max: 857.005us ; Number of samples: 13) - RpcRecvrTime: (Avg: -91651.000ns ; Min: -301422.000ns ; Max: -30220.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.946us - TotalBytesSent: 50.00 B (50) - UncompressedRowBatchSize: 80.00 B (80) AGGREGATION_NODE (id=75):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (24.676us) - First Batch Returned: 1m3s (689.368us) - Last Batch Returned: 1m3s (65.400us) - Closed: 1m3s (77.441us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 23.327us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 22.424us Buffer pool: - AllocTime: 9.845us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.239us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (864.127us) - First Batch Returned: 1m3s (40.552us) - Last Batch Returned: 1m3s (67.951us) - Closed: 1m3s (86.853us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 35.733us - GetResultsTime: 32.843us - HTResizeTime: 2.666us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.494us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.063ms) - First Batch Returned: 1m3s (1.379ms) - Last Batch Returned: 1m3s (1.080us) - Closed: 1m3s (102.773us) - ConvertRowBatchTime: 2.847us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.230us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -393992.000ns ; Min: -393992.000ns ; Max: -393992.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.605us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 51.00 B (51) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000003c (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 169.482ms (169.482ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (1.093ms) - First Batch Sent: 1m3s (2.931us) - ExecInternal Finished: 1m3s (1.427ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 1.046ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 5.057ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 2.455ms - ExecTreeExecTime: 1.180ms - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 620.568us - ExecTreePrepareTime: 344.118us KrpcDataStreamSender (dst_id=166):(Total: 1.323ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 269.07 KB/sec ; Min: 269.07 KB/sec ; Max: 269.07 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 522.158us ; Min: 336.710us ; Max: 789.737us ; Number of samples: 13) - RpcRecvrTime: (Avg: -92303.000ns ; Min: -301685.000ns ; Max: -25440.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.365us - TotalBytesSent: 105.00 B (105) - UncompressedRowBatchSize: 162.00 B (162) AGGREGATION_NODE (id=75):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (20.660us) - First Batch Returned: 1m3s (1.089ms) - Last Batch Returned: 1m3s (114.169us) - Closed: 1m3s (70.787us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 49.090us - HTResizeTime: 0.000ns - LargestPartitionPercent: 10 (10) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 49.915us Buffer pool: - AllocTime: 10.742us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.838us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (870.066us) - First Batch Returned: 1m3s (34.840us) - Last Batch Returned: 1m3s (591.607us) - Closed: 1m3s (71.755us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 10 (10) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 120.818us - GetResultsTime: 240.003us - HTResizeTime: 2.417us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 10 (10) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 21.484us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 768.00 KB (786432) - CumulativeAllocations: 12 (12) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 768.00 KB (786432) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.716us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.253ms) - First Batch Returned: 1m3s (8.015ms) - Last Batch Returned: 1m3s (1.873us) - Closed: 1m3s (165.451us) - ConvertRowBatchTime: 19.458us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 10 (10) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 14.156us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 48.00 KB (49152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 48.00 KB (49152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 844.00 B (844) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -55199.000ns ; Min: -116359.000ns ; Max: -28812.000ns ; Number of samples: 5) - DeserializeRowBatchTime: 83.234us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 515.00 B (515) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000003d (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.115 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 179.365ms (179.365ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (4.069ms) - First Batch Sent: 1m3s (2.819us) - ExecInternal Finished: 1m3s (1.229ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 822.389us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 5.281ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 5.246ms - ExecTreeExecTime: 4.188ms - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 743.592us - ExecTreePrepareTime: 413.002us KrpcDataStreamSender (dst_id=166):(Total: 1.138ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 213.05 KB/sec ; Min: 208.86 KB/sec ; Max: 217.23 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 445.591us ; Min: 224.430us ; Max: 611.638us ; Number of samples: 14) - RpcRecvrTime: (Avg: -45306.000ns ; Min: -150421.000ns ; Max: -17960.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 33.12 KB (33920) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.309us - TotalBytesSent: 101.00 B (101) - UncompressedRowBatchSize: 164.00 B (164) AGGREGATION_NODE (id=75):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (22.781us) - First Batch Returned: 1m3s (4.064ms) - Last Batch Returned: 1m3s (152.769us) - Closed: 1m3s (68.985us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 75.716us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 44.897us Buffer pool: - AllocTime: 10.136us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (894.146us) - First Batch Returned: 1m3s (37.870us) - Last Batch Returned: 1m3s (346.472us) - Closed: 1m3s (86.744us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 84.519us - GetResultsTime: 135.495us - HTResizeTime: 3.609us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.882us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.165us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.273ms) - First Batch Returned: 1m3s (7.863ms) - Last Batch Returned: 1m3s (807.000ns) - Closed: 1m3s (128.598us) - ConvertRowBatchTime: 10.696us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 5 (5) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.363us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 424.00 B (424) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -115543.000ns ; Min: -278306.000ns ; Max: -33313.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 53.726us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 273.00 B (273) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000003e (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.112 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 189.677ms (189.677ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (911.404us) - First Batch Sent: 1m3s (3.933us) - ExecInternal Finished: 1m3s (1.937ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 1.611ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.927ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 2.799ms - ExecTreeExecTime: 962.431us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 679.774us - ExecTreePrepareTime: 379.585us KrpcDataStreamSender (dst_id=166):(Total: 1.898ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 21.70 KB/sec ; Min: 21.70 KB/sec ; Max: 21.70 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 546.910us ; Min: 228.985us ; Max: 2.295ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -165138.000ns ; Min: -1038884.000ns ; Max: -25552.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.686us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 80.00 B (80) AGGREGATION_NODE (id=75):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (22.490us) - First Batch Returned: 1m3s (906.810us) - Last Batch Returned: 1m3s (70.701us) - Closed: 1m3s (70.673us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 24.738us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 28.955us Buffer pool: - AllocTime: 10.056us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.070us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (888.622us) - First Batch Returned: 1m3s (38.781us) - Last Batch Returned: 1m3s (270.003us) - Closed: 1m3s (88.504us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 64.605us - GetResultsTime: 109.521us - HTResizeTime: 2.218us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.579us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s224ms (1s224ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.211ms) - First Batch Returned: 1m3s (7.911ms) - Last Batch Returned: 1m3s (573.000ns) - Closed: 1m3s (106.133us) - ConvertRowBatchTime: 11.038us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 4 (4) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 9.519us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 992.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 336.00 B (336) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -39583.000ns ; Min: -51595.000ns ; Max: -29399.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 51.061us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 216.00 B (216) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000003f (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.032 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 648.241ms (648.241ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (773.554us) - First Batch Sent: 1m3s (3.012us) - ExecInternal Finished: 1m3s (3.521ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 3.194ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 218 (218) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 285.977ms - TotalThreadsVoluntaryContextSwitches: 38 (38) Fragment Instance Lifecycle Timings: - ExecTime: 4.226ms - ExecTreeExecTime: 819.548us - OpenTime: 1m2s - ExecTreeOpenTime: 1m - PrepareTime: 683.194us - ExecTreePrepareTime: 393.218us KrpcDataStreamSender (dst_id=166):(Total: 3.477ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 194.83 KB/sec ; Min: 194.83 KB/sec ; Max: 194.83 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 701.594us ; Min: 255.634us ; Max: 2.922ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -271740.000ns ; Min: -2546860.000ns ; Max: -28113.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.043us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 80.00 B (80) AGGREGATION_NODE (id=75):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (22.925us) - First Batch Returned: 1m3s (768.473us) - Last Batch Returned: 1m3s (66.273us) - Closed: 1m3s (78.124us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 24.156us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 26.909us Buffer pool: - AllocTime: 9.117us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (919.584us) - First Batch Returned: 1m3s (36.587us) - Last Batch Returned: 1m3s (198.266us) - Closed: 1m3s (82.430us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 63.777us - GetResultsTime: 81.292us - HTResizeTime: 2.178us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.900us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.410ms) - First Batch Returned: 1m3s (6.143ms) - Last Batch Returned: 1m3s (799.000ns) - Closed: 1m3s (113.681us) - ConvertRowBatchTime: 11.174us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.562us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -101818.000ns ; Min: -199045.000ns ; Max: -40053.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 51.889us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000040 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.032 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 660.561ms (660.561ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (740.305us) - First Batch Sent: 1m3s (4.112us) - ExecInternal Finished: 1m3s (1.356ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 1.010ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 3 (3) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 5.240ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 2.018ms - ExecTreeExecTime: 785.323us - OpenTime: 1m2s - ExecTreeOpenTime: 1m - PrepareTime: 765.213us - ExecTreePrepareTime: 432.870us KrpcDataStreamSender (dst_id=166):(Total: 1.330ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 76.29 KB/sec ; Min: 76.29 KB/sec ; Max: 76.29 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 410.872us ; Min: 265.325us ; Max: 652.804us ; Number of samples: 13) - RpcRecvrTime: (Avg: -62937.000ns ; Min: -172245.000ns ; Max: -28567.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.984us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 80.00 B (80) AGGREGATION_NODE (id=75):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (23.461us) - First Batch Returned: 1m3s (735.141us) - Last Batch Returned: 1m3s (62.004us) - Closed: 1m3s (69.776us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 22.068us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 24.396us Buffer pool: - AllocTime: 11.142us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.101us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (856.810us) - First Batch Returned: 1m3s (36.580us) - Last Batch Returned: 1m3s (132.651us) - Closed: 1m3s (94.807us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 44.637us - GetResultsTime: 60.306us - HTResizeTime: 2.367us - LargestPartitionPercent: 66 (66) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.915us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.386ms) - First Batch Returned: 1m3s (6.221ms) - Last Batch Returned: 1m3s (827.000ns) - Closed: 1m3s (110.760us) - ConvertRowBatchTime: 9.784us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 9.334us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -50686.000ns ; Min: -91395.000ns ; Max: -28507.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 49.178us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000041 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 672.831ms (672.831ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (637.803us) - First Batch Sent: 1m3s (2.580us) - ExecInternal Finished: 1m3s (3.595ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 3.261ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.056ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 4.171ms - ExecTreeExecTime: 686.035us - OpenTime: 1m2s - ExecTreeOpenTime: 1m - PrepareTime: 704.054us - ExecTreePrepareTime: 368.966us KrpcDataStreamSender (dst_id=166):(Total: 3.586ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 207.72 KB/sec ; Min: 207.72 KB/sec ; Max: 207.72 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1.742ms ; Min: 229.536us ; Max: 3.077ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -362546.000ns ; Min: -1899735.000ns ; Max: -32811.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.453us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 80.00 B (80) AGGREGATION_NODE (id=75):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (29.073us) - First Batch Returned: 1m3s (632.471us) - Last Batch Returned: 1m3s (68.312us) - Closed: 1m3s (74.885us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 25.012us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 23.891us Buffer pool: - AllocTime: 8.293us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (915.492us) - First Batch Returned: 1m3s (43.471us) - Last Batch Returned: 1m3s (65.010us) - Closed: 1m3s (87.059us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 29.076us - GetResultsTime: 35.827us - HTResizeTime: 1.824us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.486us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.151ms) - First Batch Returned: 1m3s (6.833ms) - Last Batch Returned: 1m3s (763.000ns) - Closed: 1m3s (75.588us) - ConvertRowBatchTime: 4.434us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.010us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -103998.000ns ; Min: -103998.000ns ; Max: -103998.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 16.967us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 55.00 B (55) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000042 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 674.058ms (674.058ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (673.962us) - First Batch Sent: 1m3s (4.637us) - ExecInternal Finished: 1m3s (1.847ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 1.520ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.164ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 2.462ms - ExecTreeExecTime: 722.000us - OpenTime: 1m2s - ExecTreeOpenTime: 1m - PrepareTime: 740.785us - ExecTreePrepareTime: 405.805us KrpcDataStreamSender (dst_id=166):(Total: 1.842ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 58.17 KB/sec ; Min: 58.17 KB/sec ; Max: 58.17 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 404.912us ; Min: 205.086us ; Max: 918.195us ; Number of samples: 13) - RpcRecvrTime: (Avg: -79673.000ns ; Min: -204720.000ns ; Max: -26933.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.437us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=75):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (24.861us) - First Batch Returned: 1m3s (668.778us) - Last Batch Returned: 1m3s (66.689us) - Closed: 1m3s (70.190us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 24.676us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 23.093us Buffer pool: - AllocTime: 9.196us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (832.551us) - First Batch Returned: 1m3s (49.969us) - Last Batch Returned: 1m3s (66.611us) - Closed: 1m3s (92.053us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 44.449us - GetResultsTime: 40.182us - HTResizeTime: 4.139us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.673us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s127ms (2s127ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.179ms) - First Batch Returned: 1m3s (8.585ms) - Last Batch Returned: 1m3s (2.537us) - Closed: 1m3s (102.169us) - ConvertRowBatchTime: 3.597us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.126us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 88.00 B (88) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -40582.000ns ; Min: -40582.000ns ; Max: -40582.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.815us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 52.00 B (52) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000043 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.120 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s102ms (2s102ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (622.780us) - First Batch Sent: 1m3s (2.624us) - ExecInternal Finished: 1m3s (2.866ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 59s858ms - TotalNetworkSendTime: 2.510ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 157 (157) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 12.088ms - TotalThreadsUserTime: 266.773ms - TotalThreadsVoluntaryContextSwitches: 23 (23) Fragment Instance Lifecycle Timings: - ExecTime: 3.388ms - ExecTreeExecTime: 671.711us - OpenTime: 1m - ExecTreeOpenTime: 59s861ms - PrepareTime: 6.474ms - ExecTreePrepareTime: 6.183ms KrpcDataStreamSender (dst_id=166):(Total: 2.806ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 140.13 KB/sec ; Min: 140.13 KB/sec ; Max: 140.13 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 492.578us ; Min: 270.051us ; Max: 2.264ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -228839.000ns ; Min: -2066460.000ns ; Max: -30321.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.894us - TotalBytesSent: 51.00 B (51) - UncompressedRowBatchSize: 80.00 B (80) AGGREGATION_NODE (id=75):(Total: 59s868ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s168ms (3s168ms) - Open Finished: 1m3s (59s861ms) - First Batch Requested: 1m3s (21.848us) - First Batch Returned: 1m3s (617.634us) - Last Batch Returned: 1m3s (69.279us) - Closed: 1m3s (74.842us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 26.595us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 17.051us Buffer pool: - AllocTime: 10.744us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.778us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 59s866ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s168ms (3s168ms) - Open Finished: 1m3s (59s860ms) - First Batch Requested: 1m3s (919.356us) - First Batch Returned: 1m3s (31.214us) - Last Batch Returned: 1m3s (94.834us) - Closed: 1m3s (65.822us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 45.345us - GetResultsTime: 43.360us - HTResizeTime: 2.662us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.037us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.812us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 59s858ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s168ms (3s168ms) - Open Finished: 1m3s (59s847ms) - First Batch Requested: 1m3s (1.207ms) - First Batch Returned: 1m3s (10.350ms) - Last Batch Returned: 1m3s (812.000ns) - Closed: 1m3s (92.408us) - ConvertRowBatchTime: 4.123us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.286us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s847ms - TotalBytesDequeued: 168.00 B (168) - TotalGetBatchTime: 59s858ms - DataWaitTime: 59s858ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -36101.000ns ; Min: -36101.000ns ; Max: -36101.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.361us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 104.00 B (104) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000044 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.126 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s115ms (2s115ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (505.092us) - First Batch Sent: 1m3s (2.659us) - ExecInternal Finished: 1m3s (3.686ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 59s857ms - TotalNetworkSendTime: 3.281ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.550ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 4.108ms - ExecTreeExecTime: 603.971us - OpenTime: 1m - ExecTreeOpenTime: 59s859ms - PrepareTime: 791.649us - ExecTreePrepareTime: 438.660us KrpcDataStreamSender (dst_id=166):(Total: 3.617ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 156.38 KB/sec ; Min: 19.72 KB/sec ; Max: 293.03 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 622.795us ; Min: 353.256us ; Max: 2.624ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -79375.000ns ; Min: -315686.000ns ; Max: -26098.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 33.12 KB (33920) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.584us - TotalBytesSent: 159.00 B (159) - UncompressedRowBatchSize: 246.00 B (246) AGGREGATION_NODE (id=75):(Total: 59s860ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s859ms) - First Batch Requested: 1m3s (23.132us) - First Batch Returned: 1m3s (501.265us) - Last Batch Returned: 1m3s (126.568us) - Closed: 1m3s (53.312us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 58.183us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 36.849us Buffer pool: - AllocTime: 9.150us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 59s859ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s859ms) - First Batch Requested: 1m3s (761.824us) - First Batch Returned: 1m3s (35.970us) - Last Batch Returned: 1m3s (116.526us) - Closed: 1m3s (81.342us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 56.266us - GetResultsTime: 51.393us - HTResizeTime: 2.624us - LargestPartitionPercent: 66 (66) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.735us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 59s857ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s848ms) - First Batch Requested: 1m3s (1.188ms) - First Batch Returned: 1m3s (8.796ms) - Last Batch Returned: 1m3s (827.000ns) - Closed: 1m3s (107.643us) - ConvertRowBatchTime: 12.313us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.610us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s848ms - TotalBytesDequeued: 258.00 B (258) - TotalGetBatchTime: 59s857ms - DataWaitTime: 59s857ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -50104.000ns ; Min: -72279.000ns ; Max: -36819.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 52.288us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000045 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.119 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s157ms (2s157ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (842.001us) - First Batch Sent: 1m3s (2.249us) - ExecInternal Finished: 1m3s (1.513ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 59s856ms - TotalNetworkSendTime: 1.146ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.837ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 2.297ms - ExecTreeExecTime: 915.964us - OpenTime: 1m - ExecTreeOpenTime: 59s861ms - PrepareTime: 840.540us - ExecTreePrepareTime: 478.301us KrpcDataStreamSender (dst_id=166):(Total: 1.496ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 547.14 KB/sec ; Min: 547.14 KB/sec ; Max: 547.14 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 500.186us ; Min: 192.765us ; Max: 805.835us ; Number of samples: 13) - RpcRecvrTime: (Avg: -220829.000ns ; Min: -496321.000ns ; Max: -30469.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 29.12 KB (29824) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.994us - TotalBytesSent: 108.00 B (108) - UncompressedRowBatchSize: 162.00 B (162) AGGREGATION_NODE (id=75):(Total: 59s863ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s861ms) - First Batch Requested: 1m3s (27.933us) - First Batch Returned: 1m3s (836.666us) - Last Batch Returned: 1m3s (95.925us) - Closed: 1m3s (53.626us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 47.465us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 45.899us Buffer pool: - AllocTime: 13.328us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 59s861ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s861ms) - First Batch Requested: 1m3s (840.682us) - First Batch Returned: 1m3s (44.513us) - Last Batch Returned: 1m3s (292.393us) - Closed: 1m3s (103.254us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 71.107us - GetResultsTime: 113.164us - HTResizeTime: 2.643us - LargestPartitionPercent: 40 (40) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 19.348us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 59s856ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s846ms) - First Batch Requested: 1m3s (1.380ms) - First Batch Returned: 1m3s (10.845ms) - Last Batch Returned: 1m3s (761.000ns) - Closed: 1m3s (2.000ms) - ConvertRowBatchTime: 14.207us - PeakMemoryUsage: 40.00 KB (40960) - RowsReturned: 5 (5) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 13.801us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 64.00 KB (65536) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 40.00 KB (40960) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 40.00 KB (40960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s846ms - TotalBytesDequeued: 424.00 B (424) - TotalGetBatchTime: 59s856ms - DataWaitTime: 59s856ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -86556.000ns ; Min: -219676.000ns ; Max: -28641.000ns ; Number of samples: 4) - DeserializeRowBatchTime: 73.094us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 264.00 B (264) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000046 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.119 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s163ms (2s163ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (714.853us) - First Batch Sent: 1m3s (5.362us) - ExecInternal Finished: 1m3s (3.060ms) - MemoryUsage (1s000ms): 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB, 80.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.03 MB (4223360) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 59s857ms - TotalNetworkSendTime: 2.620ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 5.035ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 3.700ms - ExecTreeExecTime: 828.900us - OpenTime: 1m - ExecTreeOpenTime: 59s860ms - PrepareTime: 763.845us - ExecTreePrepareTime: 424.272us KrpcDataStreamSender (dst_id=166):(Total: 2.958ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 41.09 KB/sec ; Min: 24.37 KB/sec ; Max: 57.81 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 522.672us ; Min: 299.348us ; Max: 2.124ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -67852.000ns ; Min: -181945.000ns ; Max: -28178.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 33.12 KB (33920) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.311us - TotalBytesSent: 103.00 B (103) - UncompressedRowBatchSize: 166.00 B (166) AGGREGATION_NODE (id=75):(Total: 59s861ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s860ms) - First Batch Requested: 1m3s (22.219us) - First Batch Returned: 1m3s (709.541us) - Last Batch Returned: 1m3s (145.622us) - Closed: 1m3s (72.962us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 69.514us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.02 MB (2118784) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 36.125us Buffer pool: - AllocTime: 10.245us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=165):(Total: 59s859ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s859ms) - First Batch Requested: 1m3s (867.130us) - First Batch Returned: 1m3s (37.044us) - Last Batch Returned: 1m3s (141.102us) - Closed: 1m3s (95.421us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 43.210us - GetResultsTime: 61.469us - HTResizeTime: 2.732us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.555us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=164):(Total: 59s857ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s166ms (3s166ms) - Open Finished: 1m3s (59s847ms) - First Batch Requested: 1m3s (1.234ms) - First Batch Returned: 1m3s (9.680ms) - Last Batch Returned: 1m3s (731.000ns) - Closed: 1m3s (85.188us) - ConvertRowBatchTime: 7.496us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 7.265us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s847ms - TotalBytesDequeued: 174.00 B (174) - TotalGetBatchTime: 59s857ms - DataWaitTime: 59s857ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -49470.000ns ; Min: -64636.000ns ; Max: -34305.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 38.418us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 111.00 B (111) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F46:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:419.038ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4512352) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s702ms - TotalNetworkSendTime: 3.585ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 123 (123) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 1.006ms - TotalThreadsUserTime: 243.775ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 10.400ms - ExecTreeExecTime: 6.376ms - OpenTime: 1m2s - ExecTreeOpenTime: 58s889ms - PrepareTime: 2.251ms - ExecTreePrepareTime: 1.657ms KrpcDataStreamSender (dst_id=164):(Total: 4.075ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 33.62 KB (34432) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.785us - TotalBytesSent: 178.00 B (178) - UncompressedRowBatchSize: 282.00 B (282) AGGREGATION_NODE (id=74):(Total: 58s897ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 125.595us - HTResizeTime: 0.000ns - LargestPartitionPercent: 49 (49) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 51.232us Buffer pool: - AllocTime: 12.668us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 458.67 KB (469674) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 458.67 KB (469674) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 863.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.24K (3242) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s896ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 3.035ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 140.00 /sec AGGREGATION_NODE (id=151):(Total: 2.724ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 163.00 /sec GroupingAggregator 0: - BuildTime: 10.461us - GetResultsTime: 9.565us - HTResizeTime: 1.214us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046421) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.280us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 277.33 KB (283989) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 277.33 KB (283989) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.607us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 341 (341) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 14.949us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 2.887us - PeakMemoryUsage: 5.33 KB (5461) - RowsReturned: 0 (0) - RowsReturnedRate: 16.06 K/sec Buffer pool: - AllocTime: 1.379us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 5.33 KB (5461) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 5.33 KB (5461) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.33 KB (5461) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 208.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 15.00 B (15) - TotalGetBatchTime: 3.164us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 6.593us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 8.00 B (8) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 3.330ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 2 (2) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.079us - RowsReturned: 2 (2) - RowsReturnedRate: 825.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.575ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 1.08 K/sec GroupingAggregator 0: - BuildTime: 38.165us - GetResultsTime: 67.525us - HTResizeTime: 1.240us - LargestPartitionPercent: 24 (24) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2048810) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.867us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 405.33 KB (415061) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 405.33 KB (415061) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.757us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.39K (2389) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 35.405us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 8.678us - PeakMemoryUsage: 29.33 KB (30037) - RowsReturned: 5 (5) - RowsReturnedRate: 130.87 K/sec Buffer pool: - AllocTime: 8.763us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 29.33 KB (30037) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 29.33 KB (30037) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 29.33 KB (30037) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.876us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 225.00 B (225) - TotalGetBatchTime: 10.416us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 36.984us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 117.00 B (117) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s889ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.312us - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s705ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 19.041us - GetResultsTime: 15.501us - HTResizeTime: 1.716us - LargestPartitionPercent: 3 (3) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046762) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.309us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 288.00 KB (294912) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 646.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 512 (512) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s702ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 13.639us - PeakMemoryUsage: 53.33 KB (54613) - RowsReturned: 6 (6) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 19.562us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 53.33 KB (54613) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 53.33 KB (54613) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.812us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 34s227ms - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 58s702ms - DataWaitTime: 58s702ms Enqueue: - DeserializeRowBatchTime: 93.162us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 154.00 B (154) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F46: Instance 50467cb8e73eeac4:853461b40000002f (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.112 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 95.777ms (95.777ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (4.946ms) - First Batch Sent: 1m3s (2.906us) - ExecInternal Finished: 1m3s (4.790ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 195.38 KB, 259.38 KB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.25 MB, 2.20 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.35 MB (4561280) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 58s884ms - TotalNetworkSendTime: 4.325ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 553 (553) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s002ms - TotalThreadsVoluntaryContextSwitches: 20 (20) Fragment Instance Lifecycle Timings: - ExecTime: 9.654ms - ExecTreeExecTime: 5.033ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s070ms - PrepareTime: 10.054ms - ExecTreePrepareTime: 7.373ms KrpcDataStreamSender (dst_id=164):(Total: 4.660ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 84.99 KB/sec ; Min: 15.30 KB/sec ; Max: 154.67 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 747.776us ; Min: 233.249us ; Max: 3.509ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -157115.000ns ; Min: -523536.000ns ; Max: -29593.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.214us - TotalBytesSent: 109.00 B (109) - UncompressedRowBatchSize: 170.00 B (170) AGGREGATION_NODE (id=74):(Total: 59s083ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s070ms) - First Batch Requested: 1m3s (23.537us) - First Batch Returned: 1m3s (4.941ms) - Last Batch Returned: 1m3s (116.472us) - Closed: 1m3s (104.358us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 50.298us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 35.316us Buffer pool: - AllocTime: 11.561us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 59s081ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s069ms) - First Batch Requested: 1m3s (830.582us) - First Batch Returned: 1m3s (4.420ms) - Last Batch Returned: 1m3s (355.000ns) - Closed: 1m3s (54.489us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 2 (2) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.428ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.883ms) - Initial build available: 1m3s (2.204us) - Open Finished: 1m3s (6.920us) - First Batch Requested: 1m3s (1.034us) - First Batch Returned: 1m3s (6.405us) - Last Batch Returned: 1m3s (320.000ns) - Closed: 1m3s (70.697us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 2.112ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.873ms) - First Batch Requested: 1m3s (6.986us) - First Batch Returned: 1m3s (3.341us) - Last Batch Returned: 1m3s (362.000ns) - Closed: 1m3s (77.759us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.551us - GetResultsTime: 0.000ns - HTResizeTime: 1.066us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.507us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 10.151us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.491us) - First Batch Requested: 1m3s (1.190ms) - First Batch Returned: 1m3s (5.613us) - Last Batch Returned: 1m3s (361.000ns) - Closed: 1m3s (35.877us) - ConvertRowBatchTime: 2.194us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.118us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.628ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.849ms) - Initial build available: 1m3s (2.573us) - Open Finished: 1m3s (84.443us) - First Batch Requested: 1m3s (2.256us) - First Batch Returned: 1m3s (10.389us) - Last Batch Returned: 1m3s (128.256us) - Closed: 1m3s (103.849us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.311us - RowsReturned: 1 (1) - RowsReturnedRate: 380.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.134ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.784ms) - First Batch Requested: 1m3s (83.861us) - First Batch Returned: 1m3s (55.913us) - Last Batch Returned: 1m3s (53.050us) - Closed: 1m3s (184.139us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 468.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 37.125us - GetResultsTime: 47.851us - HTResizeTime: 1.347us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.110us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 33.472us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.833us) - First Batch Requested: 1m3s (1.053ms) - First Batch Returned: 1m3s (28.189us) - Last Batch Returned: 1m3s (433.000ns) - Closed: 1m3s (77.492us) - ConvertRowBatchTime: 5.544us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 59.75 K/sec Buffer pool: - AllocTime: 8.718us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.179us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 11.311us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.00 B, 50.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -66889.000ns ; Min: -67877.000ns ; Max: -65901.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 47.272us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 59s070ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Waiting for builder: 1m2s (58s887ms) - Initial build available: 1m3s (181.939ms) - Open Finished: 1m3s (64.298us) - First Batch Requested: 1m3s (843.089us) - First Batch Returned: 1m3s (10.676us) - Last Batch Returned: 1m3s (116.924us) - Closed: 1m3s (118.783us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.504us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s888ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m2s (58s887ms) - First Batch Requested: 1m3s (182.003ms) - First Batch Returned: 1m3s (40.328us) - Last Batch Returned: 1m3s (902.853us) - Closed: 1m3s (170.620us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 34.615us - GetResultsTime: 30.936us - HTResizeTime: 2.481us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.678us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s885ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s970ms (3s970ms) - Open Finished: 3s970ms (4.363us) - First Batch Requested: 3s971ms (1.129ms) - First Batch Returned: 1m2s (58s885ms) - Last Batch Returned: 1m2s (925.000ns) - Closed: 1m2s (994.292us) - ConvertRowBatchTime: 27.984us - PeakMemoryUsage: 128.00 KB (131072) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 43.055us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 128.00 KB (131072) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.270us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 58s884ms - DataWaitTime: 58s884ms Enqueue: - BytesReceived (1s000ms): 0, 0, 52.00 B, 156.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -123668.000ns ; Min: -294220.000ns ; Max: -37366.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 223.646us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000030 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.112 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 96.854ms (96.854ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (4.653ms) - First Batch Sent: 1m3s (3.016us) - ExecInternal Finished: 1m3s (4.979ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 199.38 KB, 1.18 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.31 MB (4522112) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 58s886ms - TotalNetworkSendTime: 4.397ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.308ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 9.529ms - ExecTreeExecTime: 4.842ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s073ms - PrepareTime: 1.301ms - ExecTreePrepareTime: 934.098us KrpcDataStreamSender (dst_id=164):(Total: 4.743ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 49.97 KB/sec ; Min: 40.10 KB/sec ; Max: 68.39 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 944.881us ; Min: 369.393us ; Max: 3.208ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -295935.000ns ; Min: -2841900.000ns ; Max: -38727.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.160us - TotalBytesSent: 209.00 B (209) - UncompressedRowBatchSize: 340.00 B (340) AGGREGATION_NODE (id=74):(Total: 59s078ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s073ms) - First Batch Requested: 1m3s (19.597us) - First Batch Returned: 1m3s (4.648ms) - Last Batch Returned: 1m3s (241.172us) - Closed: 1m3s (70.367us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 101.192us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 68.389us Buffer pool: - AllocTime: 12.949us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 59s077ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s072ms) - First Batch Requested: 1m3s (645.058us) - First Batch Returned: 1m3s (4.125ms) - Last Batch Returned: 1m3s (359.000ns) - Closed: 1m3s (110.182us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 4 (4) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.104ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.501ms) - Initial build available: 1m3s (1.939us) - Open Finished: 1m3s (35.036us) - First Batch Requested: 1m3s (1.642us) - First Batch Returned: 1m3s (8.939us) - Last Batch Returned: 1m3s (50.306us) - Closed: 1m3s (68.246us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 475.00 /sec AGGREGATION_NODE (id=151):(Total: 1.786ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.491ms) - First Batch Requested: 1m3s (6.972us) - First Batch Returned: 1m3s (31.249us) - Last Batch Returned: 1m3s (54.677us) - Closed: 1m3s (73.884us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 559.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 17.006us - GetResultsTime: 25.744us - HTResizeTime: 1.028us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.820us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 17.926us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.492us) - First Batch Requested: 1m3s (904.663us) - First Batch Returned: 1m3s (12.486us) - Last Batch Returned: 1m3s (294.000ns) - Closed: 1m3s (63.611us) - ConvertRowBatchTime: 3.075us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 55.78 K/sec Buffer pool: - AllocTime: 3.802us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 5.685us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B, 24.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -49801.000ns ; Min: -49801.000ns ; Max: -49801.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.396us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.616ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.740ms) - Initial build available: 1m3s (2.828us) - Open Finished: 1m3s (82.265us) - First Batch Requested: 1m3s (2.926us) - First Batch Returned: 1m3s (16.680us) - Last Batch Returned: 1m3s (338.273us) - Closed: 1m3s (113.423us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.546us - RowsReturned: 3 (3) - RowsReturnedRate: 1.15 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.106ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.680ms) - First Batch Requested: 1m3s (77.943us) - First Batch Returned: 1m3s (53.082us) - Last Batch Returned: 1m3s (243.985us) - Closed: 1m3s (219.306us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.42 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 42.579us - GetResultsTime: 91.557us - HTResizeTime: 1.231us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.572us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 35.242us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.789us) - First Batch Requested: 1m3s (1.030ms) - First Batch Returned: 1m3s (28.967us) - Last Batch Returned: 1m3s (433.000ns) - Closed: 1m3s (80.934us) - ConvertRowBatchTime: 8.291us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 170.25 K/sec Buffer pool: - AllocTime: 6.832us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 774.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 10.357us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71.00 B, 142.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -69215.000ns ; Min: -104717.000ns ; Max: -33713.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 37.120us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 142.00 B (142) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 59s073ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Waiting for builder: 1m2s (58s888ms) - Initial build available: 1m3s (184.078ms) - Open Finished: 1m3s (29.270us) - First Batch Requested: 1m3s (659.202us) - First Batch Returned: 1m3s (8.203us) - Last Batch Returned: 1m3s (30.302us) - Closed: 1m3s (99.411us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.051us - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s888ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m2s (58s888ms) - First Batch Requested: 1m3s (184.151ms) - First Batch Returned: 1m3s (5.561us) - Last Batch Returned: 1m3s (293.000ns) - Closed: 1m3s (789.943us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.546us - GetResultsTime: 0.000ns - HTResizeTime: 1.065us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.086us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s886ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m2s (58s886ms) - First Batch Requested: 1m2s (1.120ms) - First Batch Returned: 1m2s (6.634us) - Last Batch Returned: 1m2s (357.000ns) - Closed: 1m2s (37.343us) - ConvertRowBatchTime: 2.832us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s886ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s886ms - DataWaitTime: 58s886ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000031 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.113 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 111.431ms (111.431ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (5.163ms) - First Batch Sent: 1m3s (3.092us) - ExecInternal Finished: 1m3s (5.515ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 195.38 KB, 259.38 KB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.25 MB, 2.20 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.35 MB (4561280) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 58s884ms - TotalNetworkSendTime: 4.328ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.383ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 10.523ms - ExecTreeExecTime: 5.828ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s070ms - PrepareTime: 1.319ms - ExecTreePrepareTime: 938.559us KrpcDataStreamSender (dst_id=164):(Total: 4.812ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 81.36 KB/sec ; Min: 17.14 KB/sec ; Max: 175.28 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.041ms ; Min: 306.432us ; Max: 3.133ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -285212.000ns ; Min: -790646.000ns ; Max: -33464.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 43.62 KB (44672) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.437us - TotalBytesSent: 326.00 B (326) - UncompressedRowBatchSize: 506.00 B (506) AGGREGATION_NODE (id=74):(Total: 59s077ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s070ms) - First Batch Requested: 1m3s (28.353us) - First Batch Returned: 1m3s (5.154ms) - Last Batch Returned: 1m3s (744.467us) - Closed: 1m3s (66.329us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 558.134us - HTResizeTime: 0.000ns - LargestPartitionPercent: 16 (16) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 92.565us Buffer pool: - AllocTime: 16.536us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 640.00 KB (655360) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6.14K (6144) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 59s075ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s069ms) - First Batch Requested: 1m3s (783.636us) - First Batch Returned: 1m3s (4.681ms) - Last Batch Returned: 1m3s (316.000ns) - Closed: 1m3s (149.823us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 6 (6) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.446ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.960ms) - Initial build available: 1m3s (2.178us) - Open Finished: 1m3s (7.206us) - First Batch Requested: 1m3s (1.138us) - First Batch Returned: 1m3s (6.706us) - Last Batch Returned: 1m3s (271.000ns) - Closed: 1m3s (71.054us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 2.161ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.949ms) - First Batch Requested: 1m3s (6.936us) - First Batch Returned: 1m3s (3.403us) - Last Batch Returned: 1m3s (521.000ns) - Closed: 1m3s (78.528us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.621us - GetResultsTime: 0.000ns - HTResizeTime: 1.180us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.161us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.722us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 11.531us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.019us) - First Batch Requested: 1m3s (1.213ms) - First Batch Returned: 1m3s (6.466us) - Last Batch Returned: 1m3s (316.000ns) - Closed: 1m3s (37.657us) - ConvertRowBatchTime: 2.391us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.694us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.742ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.787ms) - Initial build available: 1m3s (2.691us) - Open Finished: 1m3s (56.616us) - First Batch Requested: 1m3s (1.431us) - First Batch Returned: 1m3s (10.994us) - Last Batch Returned: 1m3s (399.028us) - Closed: 1m3s (110.759us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 5 (5) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 6.984us - RowsReturned: 5 (5) - RowsReturnedRate: 1.82 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.210ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.721ms) - First Batch Requested: 1m3s (75.659us) - First Batch Returned: 1m3s (35.832us) - Last Batch Returned: 1m3s (304.463us) - Closed: 1m3s (210.099us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 5 (5) - RowsReturnedRate: 2.26 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 60.519us - GetResultsTime: 116.322us - HTResizeTime: 1.337us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.590us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.846us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 51.069us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.901us) - First Batch Requested: 1m3s (1.072ms) - First Batch Returned: 1m3s (45.597us) - Last Batch Returned: 1m3s (485.000ns) - Closed: 1m3s (99.208us) - ConvertRowBatchTime: 24.901us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 10 (10) - RowsReturnedRate: 195.81 K/sec Buffer pool: - AllocTime: 7.705us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.789us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 450.00 B (450) - TotalGetBatchTime: 10.585us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115.00 B, 231.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -38009.000ns ; Min: -39336.000ns ; Max: -36682.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 41.708us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 231.00 B (231) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 59s070ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Waiting for builder: 1m2s (58s887ms) - Initial build available: 1m3s (182.599ms) - Open Finished: 1m3s (64.811us) - First Batch Requested: 1m3s (802.186us) - First Batch Returned: 1m3s (12.244us) - Last Batch Returned: 1m3s (118.875us) - Closed: 1m3s (104.819us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.664us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s887ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m2s (58s887ms) - First Batch Requested: 1m3s (182.675ms) - First Batch Returned: 1m3s (41.215us) - Last Batch Returned: 1m3s (864.419us) - Closed: 1m3s (165.903us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 34.163us - GetResultsTime: 33.022us - HTResizeTime: 2.212us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.321us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s885ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s970ms (3s970ms) - Open Finished: 3s970ms (5.830us) - First Batch Requested: 3s971ms (1.182ms) - First Batch Returned: 1m2s (58s884ms) - Last Batch Returned: 1m2s (721.000ns) - Closed: 1m2s (114.990us) - ConvertRowBatchTime: 29.046us - PeakMemoryUsage: 128.00 KB (131072) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 42.525us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 128.00 KB (131072) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 17.218us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 58s884ms - DataWaitTime: 58s884ms Enqueue: - BytesReceived (1s000ms): 0, 0, 52.00 B, 156.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -62668.000ns ; Min: -152209.000ns ; Max: -27414.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 217.480us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 311.00 B (311) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000032 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.113 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 135.796ms (135.796ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (8.838ms) - First Batch Sent: 1m3s (3.622us) - ExecInternal Finished: 1m3s (776.736us) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 163.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 183.38 KB, 1.16 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 58s888ms - TotalNetworkSendTime: 487.778us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.343ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 9.561ms - ExecTreeExecTime: 8.885ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s076ms - PrepareTime: 1.324ms - ExecTreePrepareTime: 950.561us KrpcDataStreamSender (dst_id=164):(Total: 745.460us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 203.67 KB/sec ; Min: 203.67 KB/sec ; Max: 203.67 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 259.755us ; Min: 216.059us ; Max: 325.273us ; Number of samples: 13) - RpcRecvrTime: (Avg: -51042.000ns ; Min: -136564.000ns ; Max: -28694.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.957us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=74):(Total: 59s086ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s076ms) - First Batch Requested: 1m3s (25.002us) - First Batch Returned: 1m3s (8.833ms) - Last Batch Returned: 1m3s (68.075us) - Closed: 1m3s (61.647us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 27.214us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 18.624us Buffer pool: - AllocTime: 9.986us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 59s084ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m3s (59s075ms) - First Batch Requested: 1m3s (782.316us) - First Batch Returned: 1m3s (8.313ms) - Last Batch Returned: 1m3s (240.000ns) - Closed: 1m3s (52.288us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.162ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.655ms) - Initial build available: 1m3s (2.275us) - Open Finished: 1m3s (8.883us) - First Batch Requested: 1m3s (1.075us) - First Batch Returned: 1m3s (6.457us) - Last Batch Returned: 1m3s (252.000ns) - Closed: 1m3s (86.118us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 1.861ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.641ms) - First Batch Requested: 1m3s (9.049us) - First Batch Returned: 1m3s (3.367us) - Last Batch Returned: 1m3s (330.000ns) - Closed: 1m3s (93.318us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.706us - GetResultsTime: 0.000ns - HTResizeTime: 1.132us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 3.933us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 11.902us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (4.507us) - First Batch Requested: 1m3s (902.601us) - First Batch Returned: 1m3s (5.337us) - Last Batch Returned: 1m3s (375.000ns) - Closed: 1m3s (37.483us) - ConvertRowBatchTime: 2.099us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.218us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 6.739ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (6.054ms) - Initial build available: 1m3s (8.189us) - Open Finished: 1m3s (61.573us) - First Batch Requested: 1m3s (1.426us) - First Batch Returned: 1m3s (9.009us) - Last Batch Returned: 1m3s (118.437us) - Closed: 1m3s (92.547us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.621us - RowsReturned: 1 (1) - RowsReturnedRate: 148.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 6.276ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (5.994ms) - First Batch Requested: 1m3s (79.561us) - First Batch Returned: 1m3s (36.880us) - Last Batch Returned: 1m3s (49.337us) - Closed: 1m3s (166.777us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 159.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 27.561us - GetResultsTime: 29.184us - HTResizeTime: 1.317us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 16.658us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.438us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 37.919us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.507us) - First Batch Requested: 1m3s (5.203ms) - First Batch Returned: 1m3s (30.698us) - Last Batch Returned: 1m3s (396.000ns) - Closed: 1m3s (77.878us) - ConvertRowBatchTime: 6.625us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 52.74 K/sec Buffer pool: - AllocTime: 7.455us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.648us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 12.280us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25.00 B, 50.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -37003.000ns ; Min: -37156.000ns ; Max: -36851.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 35.342us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 59s076ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Waiting for builder: 1m2s (58s889ms) - Initial build available: 1m3s (185.786ms) - Open Finished: 1m3s (30.013us) - First Batch Requested: 1m3s (798.010us) - First Batch Returned: 1m3s (8.428us) - Last Batch Returned: 1m3s (39.491us) - Closed: 1m3s (131.553us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 619.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s890ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m2s (58s889ms) - First Batch Requested: 1m3s (185.867ms) - First Batch Returned: 1m3s (4.810us) - Last Batch Returned: 1m3s (272.000ns) - Closed: 1m3s (956.512us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.852us - GetResultsTime: 0.000ns - HTResizeTime: 1.202us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.534us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s888ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s970ms (3s970ms) - Open Finished: 1m2s (58s888ms) - First Batch Requested: 1m2s (1.043ms) - First Batch Returned: 1m2s (7.403us) - Last Batch Returned: 1m2s (364.000ns) - Closed: 1m2s (39.894us) - ConvertRowBatchTime: 2.441us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s888ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s888ms - DataWaitTime: 58s888ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000033 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.031 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 573.033ms (573.033ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (12.593ms) - First Batch Sent: 1m3s (3.501us) - ExecInternal Finished: 1m3s (3.298ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 165.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 199.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 58s713ms - TotalNetworkSendTime: 2.967ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 581 (581) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.928ms - TotalThreadsUserTime: 980.094ms - TotalThreadsVoluntaryContextSwitches: 27 (27) Fragment Instance Lifecycle Timings: - ExecTime: 15.816ms - ExecTreeExecTime: 12.640ms - OpenTime: 1m2s - ExecTreeOpenTime: 58s900ms - PrepareTime: 1.380ms - ExecTreePrepareTime: 952.819us KrpcDataStreamSender (dst_id=164):(Total: 3.248ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 178.26 KB/sec ; Min: 178.26 KB/sec ; Max: 178.26 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 302.102us ; Min: 167.938us ; Max: 524.424us ; Number of samples: 13) - RpcRecvrTime: (Avg: -69355.000ns ; Min: -264974.000ns ; Max: -24977.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.000us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=74):(Total: 58s914ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m3s (58s900ms) - First Batch Requested: 1m3s (23.615us) - First Batch Returned: 1m3s (12.588ms) - Last Batch Returned: 1m3s (68.650us) - Closed: 1m3s (63.260us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 26.183us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 25.201us Buffer pool: - AllocTime: 9.638us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s912ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m3s (58s899ms) - First Batch Requested: 1m3s (850.916us) - First Batch Returned: 1m3s (12.025ms) - Last Batch Returned: 1m3s (354.000ns) - Closed: 1m3s (59.399us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 9.969ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (9.488ms) - Initial build available: 1m3s (2.632us) - Open Finished: 1m3s (8.776us) - First Batch Requested: 1m3s (1.199us) - First Batch Returned: 1m3s (7.384us) - Last Batch Returned: 1m3s (311.000ns) - Closed: 1m3s (94.416us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 9.685ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (9.475ms) - First Batch Requested: 1m3s (9.146us) - First Batch Returned: 1m3s (4.082us) - Last Batch Returned: 1m3s (331.000ns) - Closed: 1m3s (102.425us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.844us - GetResultsTime: 0.000ns - HTResizeTime: 1.366us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.359us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 12.230us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.883us) - First Batch Requested: 1m3s (1.160ms) - First Batch Returned: 1m3s (5.910us) - Last Batch Returned: 1m3s (385.000ns) - Closed: 1m3s (36.242us) - ConvertRowBatchTime: 2.153us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.242us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.585ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.929ms) - Initial build available: 1m3s (2.864us) - Open Finished: 1m3s (59.551us) - First Batch Requested: 1m3s (1.458us) - First Batch Returned: 1m3s (10.871us) - Last Batch Returned: 1m3s (116.020us) - Closed: 1m3s (137.794us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.882us - RowsReturned: 1 (1) - RowsReturnedRate: 386.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.131ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.858ms) - First Batch Requested: 1m3s (80.699us) - First Batch Returned: 1m3s (36.672us) - Last Batch Returned: 1m3s (56.946us) - Closed: 1m3s (202.548us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 469.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 23.360us - GetResultsTime: 28.472us - HTResizeTime: 1.265us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.682us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 33.834us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.963us) - First Batch Requested: 1m3s (1.122ms) - First Batch Returned: 1m3s (27.463us) - Last Batch Returned: 1m3s (443.000ns) - Closed: 1m3s (69.503us) - ConvertRowBatchTime: 5.521us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 59.11 K/sec Buffer pool: - AllocTime: 7.787us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.421us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 11.483us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -53668.000ns ; Min: -65964.000ns ; Max: -41373.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 41.800us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s900ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Waiting for builder: 1m2s (58s715ms) - Initial build available: 1m3s (184.644ms) - Open Finished: 1m3s (28.982us) - First Batch Requested: 1m3s (862.679us) - First Batch Returned: 1m3s (9.109us) - Last Batch Returned: 1m3s (36.500us) - Closed: 1m3s (98.620us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 270.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s715ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s715ms) - First Batch Requested: 1m3s (184.719ms) - First Batch Returned: 1m3s (4.364us) - Last Batch Returned: 1m3s (399.000ns) - Closed: 1m3s (998.680us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.714us - GetResultsTime: 0.000ns - HTResizeTime: 1.137us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.086us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s713ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s713ms) - First Batch Requested: 1m2s (1.113ms) - First Batch Returned: 1m2s (6.713us) - Last Batch Returned: 1m2s (301.000ns) - Closed: 1m2s (39.763us) - ConvertRowBatchTime: 2.415us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s713ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s713ms - DataWaitTime: 58s713ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000034 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.031 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 600.039ms (600.039ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (6.092ms) - First Batch Sent: 1m3s (3.291us) - ExecInternal Finished: 1m3s (5.315ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 227.38 KB, 1.27 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.28 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.37 MB (4577664) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 7 (7) - TotalNetworkReceiveTime: 58s712ms - TotalNetworkSendTime: 4.608ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 5 (5) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.798ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 11.359ms - ExecTreeExecTime: 6.421ms - OpenTime: 1m2s - ExecTreeOpenTime: 58s900ms - PrepareTime: 1.374ms - ExecTreePrepareTime: 952.823us KrpcDataStreamSender (dst_id=164):(Total: 5.016ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 33.47 KB/sec ; Min: 10.54 KB/sec ; Max: 61.89 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 1.086ms ; Min: 197.246us ; Max: 4.725ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -60797.000ns ; Min: -423984.000ns ; Max: -23564.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 7 (7) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 28.489us - TotalBytesSent: 367.00 B (367) - UncompressedRowBatchSize: 596.00 B (596) AGGREGATION_NODE (id=74):(Total: 58s907ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m3s (58s900ms) - First Batch Requested: 1m3s (23.568us) - First Batch Returned: 1m3s (6.087ms) - Last Batch Returned: 1m3s (400.668us) - Closed: 1m3s (76.147us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 7 (7) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 192.555us - HTResizeTime: 0.000ns - LargestPartitionPercent: 28 (28) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 7 (7) - StreamingTime: 88.472us Buffer pool: - AllocTime: 17.652us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 640.00 KB (655360) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.833us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6.14K (6144) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s905ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m3s (58s899ms) - First Batch Requested: 1m3s (812.527us) - First Batch Returned: 1m3s (5.413ms) - Last Batch Returned: 1m3s (438.000ns) - Closed: 1m3s (136.699us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 7 (7) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.663ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (2.042ms) - Initial build available: 1m3s (2.338us) - Open Finished: 1m3s (58.883us) - First Batch Requested: 1m3s (1.762us) - First Batch Returned: 1m3s (9.207us) - Last Batch Returned: 1m3s (60.831us) - Closed: 1m3s (72.223us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 375.00 /sec AGGREGATION_NODE (id=151):(Total: 2.341ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.032ms) - First Batch Requested: 1m3s (19.654us) - First Batch Returned: 1m3s (41.149us) - Last Batch Returned: 1m3s (65.555us) - Closed: 1m3s (79.860us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 427.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 24.614us - GetResultsTime: 32.042us - HTResizeTime: 1.319us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.151us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.017us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 24.309us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.142us) - First Batch Requested: 1m3s (1.151ms) - First Batch Returned: 1m3s (18.198us) - Last Batch Returned: 1m3s (418.000ns) - Closed: 1m3s (70.001us) - ConvertRowBatchTime: 3.859us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 41.14 K/sec Buffer pool: - AllocTime: 4.566us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.241us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 8.650us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 13.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -62584.000ns ; Min: -62584.000ns ; Max: -62584.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.340us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.661ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.729ms) - Initial build available: 1m3s (2.719us) - Open Finished: 1m3s (85.961us) - First Batch Requested: 1m3s (1.743us) - First Batch Returned: 1m3s (10.753us) - Last Batch Returned: 1m3s (380.552us) - Closed: 1m3s (601.756us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 4 (4) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 4.123us - RowsReturned: 4 (4) - RowsReturnedRate: 1.50 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.113ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.662ms) - First Batch Requested: 1m3s (101.453us) - First Batch Returned: 1m3s (39.526us) - Last Batch Returned: 1m3s (279.628us) - Closed: 1m3s (707.835us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.89 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 56.529us - GetResultsTime: 96.573us - HTResizeTime: 1.245us - LargestPartitionPercent: 12 (12) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.880us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.564us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 39.419us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.189us) - First Batch Requested: 1m3s (1.041ms) - First Batch Returned: 1m3s (32.604us) - Last Batch Returned: 1m3s (441.000ns) - Closed: 1m3s (100.549us) - ConvertRowBatchTime: 9.712us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 8 (8) - RowsReturnedRate: 202.95 K/sec Buffer pool: - AllocTime: 7.109us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.319us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 360.00 B (360) - TotalGetBatchTime: 11.210us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -38977.000ns ; Min: -39567.000ns ; Max: -38387.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 44.358us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 185.00 B (185) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s900ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Waiting for builder: 1m2s (58s714ms) - Initial build available: 1m3s (185.391ms) - Open Finished: 1m3s (69.450us) - First Batch Requested: 1m3s (828.188us) - First Batch Returned: 1m3s (11.253us) - Last Batch Returned: 1m3s (204.033us) - Closed: 1m3s (112.996us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 2 (2) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.670us - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s714ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s714ms) - First Batch Requested: 1m3s (185.458ms) - First Batch Returned: 1m3s (43.796us) - Last Batch Returned: 1m3s (960.258us) - Closed: 1m3s (185.427us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 55.545us - GetResultsTime: 57.219us - HTResizeTime: 1.585us - LargestPartitionPercent: 4 (4) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.849us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.761us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 24 (24) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s712ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s100ms (4s100ms) - Open Finished: 4s100ms (5.137us) - First Batch Requested: 4s101ms (795.581us) - First Batch Returned: 1m2s (58s712ms) - Last Batch Returned: 1m2s (780.000ns) - Closed: 1m2s (128.018us) - ConvertRowBatchTime: 32.706us - PeakMemoryUsage: 128.00 KB (131072) - RowsReturned: 24 (24) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 54.195us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 128.00 KB (131072) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.042us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 360.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B, 720.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 1.05 KB (1080) - TotalGetBatchTime: 58s712ms - DataWaitTime: 58s712ms Enqueue: - BytesReceived (1s000ms): 0, 0, 206.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B, 404.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -131911.000ns ; Min: -336351.000ns ; Max: -28322.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 230.361us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 612.00 B (612) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000035 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.029 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 609.716ms (609.716ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (7.275ms) - First Batch Sent: 1m3s (3.284us) - ExecInternal Finished: 1m3s (3.391ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 173.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 183.38 KB, 215.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.31 MB (4522112) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 58s713ms - TotalNetworkSendTime: 2.854ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.667ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 10.597ms - ExecTreeExecTime: 7.452ms - OpenTime: 1m2s - ExecTreeOpenTime: 58s900ms - PrepareTime: 1.903ms - ExecTreePrepareTime: 1.494ms KrpcDataStreamSender (dst_id=164):(Total: 3.216ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 191.46 KB/sec ; Min: 96.80 KB/sec ; Max: 248.04 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 851.488us ; Min: 169.375us ; Max: 2.629ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -45089.000ns ; Min: -220764.000ns ; Max: -18463.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.141us - TotalBytesSent: 221.00 B (221) - UncompressedRowBatchSize: 340.00 B (340) AGGREGATION_NODE (id=74):(Total: 58s909ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m3s (58s900ms) - First Batch Requested: 1m3s (21.975us) - First Batch Returned: 1m3s (7.271ms) - Last Batch Returned: 1m3s (220.222us) - Closed: 1m3s (71.872us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 109.751us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 55.870us Buffer pool: - AllocTime: 14.185us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.782us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s907ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m3s (58s899ms) - First Batch Requested: 1m3s (836.033us) - First Batch Returned: 1m3s (6.757ms) - Last Batch Returned: 1m3s (366.000ns) - Closed: 1m3s (104.765us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 4 (4) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.776ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (2.097ms) - Initial build available: 1m3s (1.922us) - Open Finished: 1m3s (44.747us) - First Batch Requested: 1m3s (1.352us) - First Batch Returned: 1m3s (7.883us) - Last Batch Returned: 1m3s (70.611us) - Closed: 1m3s (89.674us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 360.00 /sec AGGREGATION_NODE (id=151):(Total: 2.430ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.087ms) - First Batch Requested: 1m3s (9.249us) - First Batch Returned: 1m3s (39.390us) - Last Batch Returned: 1m3s (71.536us) - Closed: 1m3s (96.708us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 411.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 22.623us - GetResultsTime: 31.447us - HTResizeTime: 1.266us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.872us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.022us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 22.060us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.945us) - First Batch Requested: 1m3s (1.227ms) - First Batch Returned: 1m3s (16.471us) - Last Batch Returned: 1m3s (424.000ns) - Closed: 1m3s (64.940us) - ConvertRowBatchTime: 3.801us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 45.33 K/sec Buffer pool: - AllocTime: 4.168us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 6.345us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 13.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -41858.000ns ; Min: -41858.000ns ; Max: -41858.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.990us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 4.287ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (3.113ms) - Initial build available: 1m3s (3.780us) - Open Finished: 1m3s (259.707us) - First Batch Requested: 1m3s (3.062us) - First Batch Returned: 1m3s (12.775us) - Last Batch Returned: 1m3s (510.645us) - Closed: 1m3s (365.271us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.974us - RowsReturned: 3 (3) - RowsReturnedRate: 699.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.058ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.572ms) - First Batch Requested: 1m3s (1.591ms) - First Batch Returned: 1m3s (47.472us) - Last Batch Returned: 1m3s (417.319us) - Closed: 1m3s (619.053us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.46 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 32.275us - GetResultsTime: 106.804us - HTResizeTime: 935.000ns - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.242us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.993us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 28.904us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.057us) - First Batch Requested: 1m3s (1.089ms) - First Batch Returned: 1m3s (23.581us) - Last Batch Returned: 1m3s (330.000ns) - Closed: 1m3s (64.355us) - ConvertRowBatchTime: 6.565us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 207.58 K/sec Buffer pool: - AllocTime: 5.656us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.054us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 8.586us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -37786.000ns ; Min: -38874.000ns ; Max: -36699.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 32.235us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s901ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Waiting for builder: 1m2s (58s715ms) - Initial build available: 1m3s (184.397ms) - Open Finished: 1m3s (33.217us) - First Batch Requested: 1m3s (851.200us) - First Batch Returned: 1m3s (9.585us) - Last Batch Returned: 1m3s (35.962us) - Closed: 1m3s (105.449us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 797.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s715ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s715ms) - First Batch Requested: 1m3s (184.473ms) - First Batch Returned: 1m3s (7.326us) - Last Batch Returned: 1m3s (424.000ns) - Closed: 1m3s (994.769us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.543us - GetResultsTime: 0.000ns - HTResizeTime: 1.189us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.912us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.000us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s713ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s713ms) - First Batch Requested: 1m2s (1.140ms) - First Batch Returned: 1m2s (6.541us) - Last Batch Returned: 1m2s (389.000ns) - Closed: 1m2s (37.958us) - ConvertRowBatchTime: 2.895us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s713ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s713ms - DataWaitTime: 58s713ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000036 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.033 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 626.852ms (626.852ms) - Open Finished: 1m2s (1m2s) - First Batch Produced: 1m3s (4.361ms) - First Batch Sent: 1m3s (2.418us) - ExecInternal Finished: 1m3s (4.774ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 227.38 KB, 1.26 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB, 2.23 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.32 MB (4528512) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 58s712ms - TotalNetworkSendTime: 4.399ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.137ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 9.056ms - ExecTreeExecTime: 4.397ms - OpenTime: 1m2s - ExecTreeOpenTime: 58s897ms - PrepareTime: 1.372ms - ExecTreePrepareTime: 971.847us KrpcDataStreamSender (dst_id=164):(Total: 4.748ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 23.95 KB/sec ; Min: 23.95 KB/sec ; Max: 23.95 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1.223ms ; Min: 231.784us ; Max: 2.335ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -174481.000ns ; Min: -1168408.000ns ; Max: -23856.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.123us - TotalBytesSent: 54.00 B (54) - UncompressedRowBatchSize: 86.00 B (86) AGGREGATION_NODE (id=74):(Total: 58s902ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s897ms) - First Batch Requested: 1m2s (22.508us) - First Batch Returned: 1m3s (4.357ms) - Last Batch Returned: 1m3s (52.752us) - Closed: 1m3s (48.358us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 20.763us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 18.948us Buffer pool: - AllocTime: 8.141us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s901ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s896ms) - First Batch Requested: 1m2s (676.404us) - First Batch Returned: 1m3s (3.956ms) - Last Batch Returned: 1m3s (213.000ns) - Closed: 1m3s (66.262us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.329ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1m2s (1m2s) - Waiting for builder: 1m2s (1.839ms) - Initial build available: 1m2s (2.341us) - Open Finished: 1m2s (7.934us) - First Batch Requested: 1m2s (1.227us) - First Batch Returned: 1m2s (7.795us) - Last Batch Returned: 1m2s (317.000ns) - Closed: 1m2s (87.157us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 2.039ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1m2s (1m2s) - Open Finished: 1m2s (1.826ms) - First Batch Requested: 1m2s (7.845us) - First Batch Returned: 1m2s (3.208us) - Last Batch Returned: 1m2s (348.000ns) - Closed: 1m2s (95.993us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.959us - GetResultsTime: 0.000ns - HTResizeTime: 1.198us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.980us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.920us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 10.655us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1m2s (1m2s) - Open Finished: 1m2s (2.705us) - First Batch Requested: 1m2s (1.053ms) - First Batch Returned: 1m2s (5.640us) - Last Batch Returned: 1m2s (350.000ns) - Closed: 1m2s (35.023us) - ConvertRowBatchTime: 2.391us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.223us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.140ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m2s (1m2s) - Waiting for builder: 1m3s (1.564ms) - Initial build available: 1m3s (2.680us) - Open Finished: 1m3s (35.396us) - First Batch Requested: 1m3s (1.081us) - First Batch Returned: 1m3s (10.201us) - Last Batch Returned: 1m3s (62.552us) - Closed: 1m3s (69.737us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 504.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 1.701ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m2s (1m2s) - Open Finished: 1m3s (1.490ms) - First Batch Requested: 1m3s (89.001us) - First Batch Returned: 1m3s (5.555us) - Last Batch Returned: 1m3s (264.000ns) - Closed: 1m3s (141.320us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.956us - GetResultsTime: 0.000ns - HTResizeTime: 1.075us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.384us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 10.549us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m2s (1m2s) - Open Finished: 1m2s (2.273us) - First Batch Requested: 1m3s (979.928us) - First Batch Returned: 1m3s (5.861us) - Last Batch Returned: 1m3s (324.000ns) - Closed: 1m3s (31.525us) - ConvertRowBatchTime: 2.295us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.190us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s897ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 4s100ms (4s100ms) - Waiting for builder: 1m2s (58s714ms) - Initial build available: 1m2s (182.083ms) - Open Finished: 1m2s (56.716us) - First Batch Requested: 1m2s (694.216us) - First Batch Returned: 1m2s (12.617us) - Last Batch Returned: 1m2s (118.997us) - Closed: 1m2s (104.789us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.298us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s714ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s100ms (4s100ms) - Open Finished: 1m2s (58s714ms) - First Batch Requested: 1m2s (182.154ms) - First Batch Returned: 1m2s (35.096us) - Last Batch Returned: 1m2s (760.926us) - Closed: 1m2s (161.536us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 30.272us - GetResultsTime: 26.460us - HTResizeTime: 2.446us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.063us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s712ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s100ms (4s100ms) - Open Finished: 4s100ms (3.238us) - First Batch Requested: 4s101ms (1.109ms) - First Batch Returned: 1m2s (58s712ms) - Last Batch Returned: 1m2s (744.000ns) - Closed: 1m2s (86.862us) - ConvertRowBatchTime: 29.535us - PeakMemoryUsage: 128.00 KB (131072) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 47.964us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 128.00 KB (131072) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 16.541us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 180.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 58s712ms - DataWaitTime: 58s712ms Enqueue: - BytesReceived (1s000ms): 0, 0, 104.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -90257.000ns ; Min: -305241.000ns ; Max: -30181.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 234.125us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000037 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.119 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s167ms (2s167ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (5.278ms) - First Batch Sent: 1m3s (2.912us) - ExecInternal Finished: 1m3s (4.826ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 165.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 183.38 KB, 1.16 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s508ms - TotalNetworkSendTime: 4.294ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 308 (308) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 8.154ms - TotalThreadsUserTime: 857.815ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 10.045ms - ExecTreeExecTime: 5.419ms - OpenTime: 1m - ExecTreeOpenTime: 58s697ms - PrepareTime: 2.723ms - ExecTreePrepareTime: 2.304ms KrpcDataStreamSender (dst_id=164):(Total: 4.667ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 148.59 KB/sec ; Min: 17.78 KB/sec ; Max: 218.58 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 587.966us ; Min: 213.211us ; Max: 3.021ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -145394.000ns ; Min: -1238631.000ns ; Max: -28188.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.059us - TotalBytesSent: 165.00 B (165) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=74):(Total: 58s705ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s697ms) - First Batch Requested: 1m3s (22.634us) - First Batch Returned: 1m3s (5.273ms) - Last Batch Returned: 1m3s (183.490us) - Closed: 1m3s (103.207us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 76.971us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 47.266us Buffer pool: - AllocTime: 12.861us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s703ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s697ms) - First Batch Requested: 1m3s (880.909us) - First Batch Returned: 1m3s (4.736ms) - Last Batch Returned: 1m3s (362.000ns) - Closed: 1m3s (67.106us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.665ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (2.074ms) - Initial build available: 1m3s (2.715us) - Open Finished: 1m3s (6.882us) - First Batch Requested: 1m3s (1.067us) - First Batch Returned: 1m3s (8.020us) - Last Batch Returned: 1m3s (247.000ns) - Closed: 1m3s (74.947us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 2.314ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.063ms) - First Batch Requested: 1m3s (7.763us) - First Batch Returned: 1m3s (3.440us) - Last Batch Returned: 1m3s (259.000ns) - Closed: 1m3s (83.558us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.595us - GetResultsTime: 0.000ns - HTResizeTime: 1.066us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.689us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 11.293us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.178us) - First Batch Requested: 1m3s (1.228ms) - First Batch Returned: 1m3s (6.133us) - Last Batch Returned: 1m3s (317.000ns) - Closed: 1m3s (36.963us) - ConvertRowBatchTime: 2.563us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.722us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 5.274ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.913ms) - Initial build available: 1m3s (2.950us) - Open Finished: 1m3s (61.829us) - First Batch Requested: 1m3s (1.563us) - First Batch Returned: 1m3s (13.411us) - Last Batch Returned: 1m3s (327.340us) - Closed: 1m3s (91.772us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.282us - RowsReturned: 3 (3) - RowsReturnedRate: 568.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 3.481ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.826ms) - First Batch Requested: 1m3s (100.452us) - First Batch Returned: 1m3s (39.220us) - Last Batch Returned: 1m3s (224.008us) - Closed: 1m3s (202.462us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 861.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 46.552us - GetResultsTime: 79.567us - HTResizeTime: 1.244us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.355us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 38.921us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.951us) - First Batch Requested: 1m3s (1.106ms) - First Batch Returned: 1m3s (33.269us) - Last Batch Returned: 1m3s (474.000ns) - Closed: 1m3s (94.852us) - ConvertRowBatchTime: 8.601us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 154.16 K/sec Buffer pool: - AllocTime: 6.163us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.106us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 11.867us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70.00 B, 141.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -87788.000ns ; Min: -127001.000ns ; Max: -48575.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 33.165us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s697ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Waiting for builder: 1m2s (58s511ms) - Initial build available: 1m3s (185.826ms) - Open Finished: 1m3s (24.836us) - First Batch Requested: 1m3s (898.417us) - First Batch Returned: 1m3s (10.109us) - Last Batch Returned: 1m3s (37.972us) - Closed: 1m3s (89.100us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 471.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s511ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s511ms) - First Batch Requested: 1m3s (185.889ms) - First Batch Returned: 1m3s (3.523us) - Last Batch Returned: 1m3s (273.000ns) - Closed: 1m3s (1.027ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.230us - GetResultsTime: 0.000ns - HTResizeTime: 1.443us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.122us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s508ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s508ms) - First Batch Requested: 1m2s (1.222ms) - First Batch Returned: 1m2s (6.991us) - Last Batch Returned: 1m2s (365.000ns) - Closed: 1m2s (40.887us) - ConvertRowBatchTime: 2.587us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s508ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s508ms - DataWaitTime: 58s508ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000038 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.118 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s182ms (2s182ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (4.884ms) - First Batch Sent: 1m3s (2.654us) - ExecInternal Finished: 1m3s (1.014ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 165.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 183.38 KB, 1.16 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s508ms - TotalNetworkSendTime: 492.024us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 8.607ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 5.843ms - ExecTreeExecTime: 5.088ms - OpenTime: 1m - ExecTreeOpenTime: 58s703ms - PrepareTime: 1.420ms - ExecTreePrepareTime: 1.031ms KrpcDataStreamSender (dst_id=164):(Total: 800.036us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 720.51 KB/sec ; Min: 720.51 KB/sec ; Max: 720.51 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 300.019us ; Min: 197.886us ; Max: 389.759us ; Number of samples: 13) - RpcRecvrTime: (Avg: -62005.000ns ; Min: -175068.000ns ; Max: -27128.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.204us - TotalBytesSent: 146.00 B (146) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=74):(Total: 58s709ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s703ms) - First Batch Requested: 1m3s (22.320us) - First Batch Returned: 1m3s (4.880ms) - Last Batch Returned: 1m3s (258.156us) - Closed: 1m3s (83.332us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 124.164us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 43.907us Buffer pool: - AllocTime: 12.966us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s707ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s702ms) - First Batch Requested: 1m3s (1.155ms) - First Batch Returned: 1m3s (4.453ms) - Last Batch Returned: 1m3s (514.000ns) - Closed: 1m3s (106.821us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.240ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.700ms) - Initial build available: 1m3s (3.849us) - Open Finished: 1m3s (10.688us) - First Batch Requested: 1m3s (1.146us) - First Batch Returned: 1m3s (11.229us) - Last Batch Returned: 1m3s (260.000ns) - Closed: 1m3s (135.072us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 1.915ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.684ms) - First Batch Requested: 1m3s (11.370us) - First Batch Returned: 1m3s (4.404us) - Last Batch Returned: 1m3s (324.000ns) - Closed: 1m3s (147.704us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.456us - GetResultsTime: 0.000ns - HTResizeTime: 1.591us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.090us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 16.934us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (4.668us) - First Batch Requested: 1m3s (984.303us) - First Batch Returned: 1m3s (9.828us) - Last Batch Returned: 1m3s (257.000ns) - Closed: 1m3s (49.360us) - ConvertRowBatchTime: 4.219us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.232us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.760ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.834ms) - Initial build available: 1m3s (2.871us) - Open Finished: 1m3s (65.811us) - First Batch Requested: 1m3s (1.451us) - First Batch Returned: 1m3s (11.243us) - Last Batch Returned: 1m3s (285.336us) - Closed: 1m3s (106.702us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.682us - RowsReturned: 3 (3) - RowsReturnedRate: 1.09 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.214ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.769ms) - First Batch Requested: 1m3s (70.184us) - First Batch Returned: 1m3s (42.304us) - Last Batch Returned: 1m3s (210.435us) - Closed: 1m3s (187.483us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.35 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 44.073us - GetResultsTime: 80.702us - HTResizeTime: 1.501us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.538us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 37.032us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.688us) - First Batch Requested: 1m3s (1.129ms) - First Batch Returned: 1m3s (30.068us) - Last Batch Returned: 1m3s (351.000ns) - Closed: 1m3s (84.145us) - ConvertRowBatchTime: 7.880us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 162.02 K/sec Buffer pool: - AllocTime: 36.697us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.312us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 10.821us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70.00 B, 141.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -118605.000ns ; Min: -145711.000ns ; Max: -91500.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 62.968us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s702ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Waiting for builder: 1m2s (58s510ms) - Initial build available: 1m3s (191.011ms) - Open Finished: 1m3s (38.545us) - First Batch Requested: 1m3s (1.174ms) - First Batch Returned: 1m3s (10.532us) - Last Batch Returned: 1m3s (41.506us) - Closed: 1m3s (198.084us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 675.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s511ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s510ms) - First Batch Requested: 1m3s (191.095ms) - First Batch Returned: 1m3s (4.767us) - Last Batch Returned: 1m3s (414.000ns) - Closed: 1m3s (1.413ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.670us - GetResultsTime: 0.000ns - HTResizeTime: 1.675us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.420us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s508ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s508ms) - First Batch Requested: 1m2s (1.134ms) - First Batch Returned: 1m2s (5.988us) - Last Batch Returned: 1m2s (407.000ns) - Closed: 1m2s (43.739us) - ConvertRowBatchTime: 2.279us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s508ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s508ms - DataWaitTime: 58s508ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000039 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.125 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s192ms (2s192ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (5.279ms) - First Batch Sent: 1m3s (3.206us) - ExecInternal Finished: 1m3s (4.476ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 165.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 183.38 KB, 1.16 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s509ms - TotalNetworkSendTime: 3.153ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.144ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 9.674ms - ExecTreeExecTime: 5.370ms - OpenTime: 1m - ExecTreeOpenTime: 58s693ms - PrepareTime: 1.428ms - ExecTreePrepareTime: 1.001ms KrpcDataStreamSender (dst_id=164):(Total: 4.293ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 60.43 KB/sec ; Min: 43.00 KB/sec ; Max: 77.86 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 694.039us ; Min: 263.651us ; Max: 1.742ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -81214.000ns ; Min: -169264.000ns ; Max: -28088.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.341us - TotalBytesSent: 161.00 B (161) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=74):(Total: 58s699ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s693ms) - First Batch Requested: 1m3s (22.009us) - First Batch Returned: 1m3s (5.274ms) - Last Batch Returned: 1m3s (121.093us) - Closed: 1m3s (155.361us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 55.612us - HTResizeTime: 0.000ns - LargestPartitionPercent: 66 (66) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 33.926us Buffer pool: - AllocTime: 12.029us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s698ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s692ms) - First Batch Requested: 1m3s (857.848us) - First Batch Returned: 1m3s (4.653ms) - Last Batch Returned: 1m3s (321.000ns) - Closed: 1m3s (90.943us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.552ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (2.058ms) - Initial build available: 1m3s (2.622us) - Open Finished: 1m3s (7.322us) - First Batch Requested: 1m3s (1.042us) - First Batch Returned: 1m3s (6.205us) - Last Batch Returned: 1m3s (289.000ns) - Closed: 1m3s (86.215us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=151):(Total: 2.262ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.049ms) - First Batch Requested: 1m3s (7.848us) - First Batch Returned: 1m3s (3.327us) - Last Batch Returned: 1m3s (305.000ns) - Closed: 1m3s (93.090us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.737us - GetResultsTime: 0.000ns - HTResizeTime: 1.215us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.051us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 10.594us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.355us) - First Batch Requested: 1m3s (1.164ms) - First Batch Returned: 1m3s (6.188us) - Last Batch Returned: 1m3s (323.000ns) - Closed: 1m3s (37.211us) - ConvertRowBatchTime: 2.403us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.105us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.694ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.909ms) - Initial build available: 1m3s (2.540us) - Open Finished: 1m3s (56.199us) - First Batch Requested: 1m3s (1.234us) - First Batch Returned: 1m3s (9.253us) - Last Batch Returned: 1m3s (213.085us) - Closed: 1m3s (124.638us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.005us - RowsReturned: 3 (3) - RowsReturnedRate: 1.11 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.191ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.845ms) - First Batch Requested: 1m3s (74.351us) - First Batch Returned: 1m3s (36.017us) - Last Batch Returned: 1m3s (127.269us) - Closed: 1m3s (213.762us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.37 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 34.324us - GetResultsTime: 53.639us - HTResizeTime: 1.227us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.412us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 40.492us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.471us) - First Batch Requested: 1m3s (1.087ms) - First Batch Returned: 1m3s (33.217us) - Last Batch Returned: 1m3s (435.000ns) - Closed: 1m3s (77.181us) - ConvertRowBatchTime: 9.529us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 148.18 K/sec Buffer pool: - AllocTime: 5.653us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 912.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 12.819us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68.00 B, 137.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -98755.000ns ; Min: -162167.000ns ; Max: -35343.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 32.796us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 137.00 B (137) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s693ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Waiting for builder: 1m2s (58s511ms) - Initial build available: 1m3s (181.113ms) - Open Finished: 1m3s (32.765us) - First Batch Requested: 1m3s (873.835us) - First Batch Returned: 1m3s (8.751us) - Last Batch Returned: 1m3s (35.922us) - Closed: 1m3s (105.605us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 526.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s511ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s511ms) - First Batch Requested: 1m3s (181.185ms) - First Batch Returned: 1m3s (6.582us) - Last Batch Returned: 1m3s (412.000ns) - Closed: 1m3s (1.016ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 6.790us - GetResultsTime: 0.000ns - HTResizeTime: 1.269us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.109us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s509ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s509ms) - First Batch Requested: 1m2s (1.043ms) - First Batch Returned: 1m2s (10.489us) - Last Batch Returned: 1m2s (304.000ns) - Closed: 1m2s (52.242us) - ConvertRowBatchTime: 2.431us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s509ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s509ms - DataWaitTime: 58s509ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000003a (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.118 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s252ms (2s252ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (4.866ms) - First Batch Sent: 1m3s (2.929us) - ExecInternal Finished: 1m3s (8.351ms) - MemoryUsage (1s000ms): 227.38 KB, 299.38 KB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.25 MB, 2.28 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.37 MB (4577664) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 5 (5) - TotalNetworkReceiveTime: 58s510ms - TotalNetworkSendTime: 6.717ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.775ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 13.140ms - ExecTreeExecTime: 5.136ms - OpenTime: 1m - ExecTreeOpenTime: 58s693ms - PrepareTime: 1.420ms - ExecTreePrepareTime: 989.283us KrpcDataStreamSender (dst_id=164):(Total: 7.955ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 52.06 KB/sec ; Min: 32.65 KB/sec ; Max: 62.20 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.182ms ; Min: 225.143us ; Max: 5.982ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -375164.000ns ; Min: -1818395.000ns ; Max: -30477.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 5 (5) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.298us - TotalBytesSent: 268.00 B (268) - UncompressedRowBatchSize: 426.00 B (426) AGGREGATION_NODE (id=74):(Total: 58s699ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s693ms) - First Batch Requested: 1m3s (20.970us) - First Batch Returned: 1m3s (4.861ms) - Last Batch Returned: 1m3s (335.796us) - Closed: 1m3s (168.437us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 164.307us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5 (5) - StreamingTime: 86.304us Buffer pool: - AllocTime: 13.517us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.746us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=38):(Total: 58s697ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s315ms (4s315ms) - Open Finished: 1m3s (58s692ms) - First Batch Requested: 1m3s (703.565us) - First Batch Returned: 1m3s (4.377ms) - Last Batch Returned: 1m3s (294.000ns) - Closed: 1m3s (152.085us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 5 (5) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=60):(Total: 2.082ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.524ms) - Initial build available: 1m3s (1.922us) - Open Finished: 1m3s (34.848us) - First Batch Requested: 1m3s (1.138us) - First Batch Returned: 1m3s (6.353us) - Last Batch Returned: 1m3s (36.715us) - Closed: 1m3s (60.408us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 480.00 /sec AGGREGATION_NODE (id=151):(Total: 1.787ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.516ms) - First Batch Requested: 1m3s (7.345us) - First Batch Returned: 1m3s (30.650us) - Last Batch Returned: 1m3s (39.731us) - Closed: 1m3s (64.489us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 559.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 22.824us - GetResultsTime: 25.556us - HTResizeTime: 1.149us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.750us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.607us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=150):(Total: 19.809us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.678us) - First Batch Requested: 1m3s (937.085us) - First Batch Returned: 1m3s (15.089us) - Last Batch Returned: 1m3s (398.000ns) - Closed: 1m3s (58.548us) - ConvertRowBatchTime: 3.497us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 50.48 K/sec Buffer pool: - AllocTime: 4.018us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.266us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 6.740us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 13.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B, 26.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -43871.000ns ; Min: -43871.000ns ; Max: -43871.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.398us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=73):(Total: 2.833ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.945ms) - Initial build available: 1m3s (3.445us) - Open Finished: 1m3s (61.628us) - First Batch Requested: 1m3s (1.533us) - First Batch Returned: 1m3s (11.524us) - Last Batch Returned: 1m3s (313.592us) - Closed: 1m3s (147.007us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 4.037us - RowsReturned: 3 (3) - RowsReturnedRate: 1.06 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=159):(Total: 2.284ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.874ms) - First Batch Requested: 1m3s (84.912us) - First Batch Returned: 1m3s (40.054us) - Last Batch Returned: 1m3s (209.711us) - Closed: 1m3s (256.177us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.31 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 48.127us - GetResultsTime: 79.635us - HTResizeTime: 1.164us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.985us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.251us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=158):(Total: 38.009us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.484us) - First Batch Requested: 1m3s (1.175ms) - First Batch Returned: 1m3s (33.334us) - Last Batch Returned: 1m3s (419.000ns) - Closed: 1m3s (89.146us) - ConvertRowBatchTime: 8.683us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 157.86 K/sec Buffer pool: - AllocTime: 5.392us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 12.494us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -36217.000ns ; Min: -44438.000ns ; Max: -27996.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 35.046us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 147.00 B (147) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=51):(Total: 58s693ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Waiting for builder: 1m2s (58s511ms) - Initial build available: 1m3s (180.556ms) - Open Finished: 1m3s (66.742us) - First Batch Requested: 1m3s (723.785us) - First Batch Returned: 1m3s (9.970us) - Last Batch Returned: 1m3s (92.559us) - Closed: 1m3s (96.937us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.207us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=144):(Total: 58s512ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s316ms (4s316ms) - Open Finished: 1m2s (58s511ms) - First Batch Requested: 1m3s (180.616ms) - First Batch Returned: 1m3s (47.275us) - Last Batch Returned: 1m3s (774.380us) - Closed: 1m3s (143.753us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 37.555us - GetResultsTime: 38.382us - HTResizeTime: 2.899us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.531us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=143):(Total: 58s510ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 4s316ms (4s316ms) - Open Finished: 4s316ms (3.153us) - First Batch Requested: 4s316ms (842.162us) - First Batch Returned: 1m2s (58s510ms) - Last Batch Returned: 1m2s (1.402us) - Closed: 1m2s (108.369us) - ConvertRowBatchTime: 26.522us - PeakMemoryUsage: 128.00 KB (131072) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 47.014us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 128.00 KB (131072) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.674us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B, 360.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 58s510ms - DataWaitTime: 58s510ms Enqueue: - BytesReceived (1s000ms): 104.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B, 208.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -80606.000ns ; Min: -166192.000ns ; Max: -33290.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 212.337us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F24:(Total: 22s003ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 15.92 MB, max: 17.31 MB, avg: 16.41 MB, stddev: 647.55 KB completion times: min:6s255ms max:1m3s mean: 25s599ms stddev:26s614ms execution rates: min:257.86 KB/sec max:2.77 MB/sec mean:1.74 MB/sec stddev:1.08 MB/sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 5.54 MB (5810016) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 18.817ms - TotalStorageWaitTime: 272.905ms - TotalThreadsInvoluntaryContextSwitches: 102 (102) - TotalThreadsTotalWallClockTime: 21s979ms - TotalThreadsSysTime: 2.257ms - TotalThreadsUserTime: 199.923ms - TotalThreadsVoluntaryContextSwitches: 182 (182) Fragment Instance Lifecycle Timings: - ExecTime: 205.482ms - ExecTreeExecTime: 186.242ms - OpenTime: 21s774ms - ExecTreeOpenTime: 19s902ms - PrepareTime: 23.120ms - ExecTreePrepareTime: 22.747ms KrpcDataStreamSender (dst_id=143):(Total: 19.319ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.782us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 20s111ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 3.10 MB (3252778) - RowsReturned: 6 (6) - RowsReturnedRate: 5.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 191.961us - HTResizeTime: 255.241us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 626.470us Buffer pool: - AllocTime: 53.791us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 36.927us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 4.94K (4940) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 20s128ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 1.09 MB (1141632) - ProbeRows: 4.98K (4979) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 288.362us - RowsReturned: 4.94K (4940) - RowsReturnedRate: 4.65 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 20s127ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 48.29 KB (49450) - ProbeRows: 79.51K (79509) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.037ms - RowsReturned: 4.98K (4979) - RowsReturnedRate: 4.66 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 20s068ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.17 - BytesRead: 4.95 MB (5190869) - BytesReadDataNodeCache: 0 - BytesReadLocal: 4.95 MB (5190869) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 4.95 MB (5190869) - CachedFileHandlesHitCount: 206 (206) - CachedFileHandlesMissCount: 3 (3) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 813.066us - MaterializeTupleTime: 24.186ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 157 (157) - NumRowGroups: 52 (52) - NumRowGroupsWithPageIndex: 52 (52) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.07 MB (2167885) - PerReadThreadRawHdfsThroughput: 92.00 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 79.59K (79586) - RowsReturned: 79.51K (79509) - RowsReturnedRate: 6.34 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 272.905ms - TotalRawHdfsOpenFileTime: 13.974ms - TotalRawHdfsReadTime: 72.128ms - TotalReadThroughput: 13.25 KB/sec Buffer pool: - AllocTime: 371.372us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 7.47 MB (7828138) - CumulativeAllocations: 209 (209) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.533us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.43K (3428) - Rows rejected: 76 (76) - Rows total: 79.59K (79586) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 101 (101) - Files rejected: 99 (99) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 92 (92) - Rows processed: 3.35K (3352) - Rows rejected: 0 (0) - Rows total: 79.51K (79509) - Splits processed: 1 (1) - Splits rejected: 0 (0) - Splits total: 52 (52) Fragment F24: Instance 50467cb8e73eeac4:853461b40000001e (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.123 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 2s269ms (2s269ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (437.562ms) - First Batch Sent: 1m2s (3.031us) - ExecInternal Finished: 1m2s (5.525ms) - MemoryUsage (1s000ms): 120.81 KB, 1.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 3.46 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 6.83 MB (7163400) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 4.844ms - TotalStorageWaitTime: 325.469ms - TotalThreadsInvoluntaryContextSwitches: 469 (469) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 11.366ms - TotalThreadsUserTime: 692.191ms - TotalThreadsVoluntaryContextSwitches: 508 (508) Fragment Instance Lifecycle Timings: - ExecTime: 443.013ms - ExecTreeExecTime: 437.849ms - OpenTime: 1m - ExecTreeOpenTime: 58s461ms - PrepareTime: 7.555ms - ExecTreePrepareTime: 7.150ms KrpcDataStreamSender (dst_id=143):(Total: 5.236ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 49.49 KB/sec ; Min: 42.84 KB/sec ; Max: 57.14 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.060ms ; Min: 363.435us ; Max: 4.407ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -78706.000ns ; Min: -329873.000ns ; Max: -25086.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 19.709us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 58s906ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Open Finished: 1m2s (58s461ms) - First Batch Requested: 1m2s (25.639us) - First Batch Returned: 1m2s (437.557ms) - Last Batch Returned: 1m2s (350.403us) - Closed: 1m2s (62.840us) - PeakMemoryUsage: 4.64 MB (4866176) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 174.490us - HTResizeTime: 249.880us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 650.338us Buffer pool: - AllocTime: 25.321us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.164us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 5.74K (5737) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 58s910ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Waiting for builder: 1m2s (58s349ms) - Initial build available: 1m2s (2.975us) - Open Finished: 1m2s (111.865ms) - First Batch Requested: 1m2s (658.499us) - First Batch Returned: 1m2s (196.230ms) - Last Batch Returned: 1m2s (240.802ms) - Closed: 1m2s (147.344us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.64 MB (2764928) - ProbeRows: 5.87K (5872) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 303.184us - RowsReturned: 5.74K (5737) - RowsReturnedRate: 97.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 58s909ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Waiting for builder: 1m2s (58s339ms) - Initial build available: 1m2s (2.350us) - Open Finished: 1m2s (9.686ms) - First Batch Requested: 1m2s (83.860us) - First Batch Returned: 1m2s (111.838ms) - Last Batch Returned: 1m2s (437.383ms) - Closed: 1m2s (416.247us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.40K (228399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.559ms - RowsReturned: 5.87K (5872) - RowsReturnedRate: 99.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 58s879ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [20, 22]), waited for 58s338ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 933.36 KB - FooterProcessingTime: (Avg: 1.308ms ; Min: 239.951us ; Max: 9.798ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.52 KB (245272) ; Min: 78.78 KB (80666) ; Max: 320.18 KB (327866) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1613) ; Min: 248.00 B (248) ; Max: 5.68 KB (5819) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.05 KB (33845) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.15 KB (245913) ; Min: 79.70 KB (81616) ; Max: 320.65 KB (328343) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1617) ; Min: 244.00 B (244) ; Max: 5.71 KB (5847) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.23 MB (14921114) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14921114) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14921114) - CachedFileHandlesHitCount: 606 (606) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.349ms - MaterializeTupleTime: 67.775ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2179825) - PerReadThreadRawHdfsThroughput: 222.10 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.40K (228399) - RowsReturned: 228.40K (228399) - RowsReturnedRate: 3.88 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 325.469ms - TotalRawHdfsOpenFileTime: 3.831ms - TotalRawHdfsReadTime: 64.071ms - TotalReadThroughput: 31.11 KB/sec Buffer pool: - AllocTime: 974.005us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.53 MB (22577152) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.264us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.40K (228399) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 269 (269) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.40K (228399) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b40000001f (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.128 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 2s295ms (2s295ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (59.167ms) - First Batch Sent: 1m2s (2.932us) - ExecInternal Finished: 1m2s (5.625ms) - MemoryUsage (1s000ms): 120.81 KB, 1.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.45 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 9.21 MB (9658372) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 4.924ms - TotalStorageWaitTime: 324.565ms - TotalThreadsInvoluntaryContextSwitches: 65 (65) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 4.254ms - TotalThreadsUserTime: 228.365ms - TotalThreadsVoluntaryContextSwitches: 496 (496) Fragment Instance Lifecycle Timings: - ExecTime: 64.742ms - ExecTreeExecTime: 59.539ms - OpenTime: 1m - ExecTreeOpenTime: 58s840ms - PrepareTime: 3.352ms - ExecTreePrepareTime: 2.985ms KrpcDataStreamSender (dst_id=143):(Total: 5.276ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 60.27 KB/sec ; Min: 43.14 KB/sec ; Max: 111.02 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.927ms ; Min: 455.983us ; Max: 4.428ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -335942.000ns ; Min: -2235269.000ns ; Max: -30602.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.659us - TotalBytesSent: 155.00 B (155) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 58s902ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Open Finished: 1m2s (58s840ms) - First Batch Requested: 1m2s (35.774us) - First Batch Returned: 1m2s (59.160ms) - Last Batch Returned: 1m2s (433.622us) - Closed: 1m2s (58.439us) - PeakMemoryUsage: 6.46 MB (6775936) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 166.796us - HTResizeTime: 159.777us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 296.686us Buffer pool: - AllocTime: 18.317us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 1.80K (1798) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 58s902ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Waiting for builder: 1m2s (58s349ms) - Initial build available: 1m2s (2.202us) - Open Finished: 1m2s (489.636ms) - First Batch Requested: 1m2s (901.511us) - First Batch Returned: 1m2s (54.615ms) - Last Batch Returned: 1m2s (4.014ms) - Closed: 1m2s (162.285us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 4.46 MB (4674688) - ProbeRows: 1.83K (1835) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 100.531us - RowsReturned: 1.80K (1798) - RowsReturnedRate: 30.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 58s901ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Waiting for builder: 1m2s (58s339ms) - Initial build available: 1m2s (2.680us) - Open Finished: 1m2s (10.021ms) - First Batch Requested: 1m2s (65.583us) - First Batch Returned: 1m2s (489.614ms) - Last Batch Returned: 1m2s (59.260ms) - Closed: 1m2s (423.813us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.61K (228614) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.720ms - RowsReturned: 1.83K (1835) - RowsReturnedRate: 31.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 58s883ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [20, 22]), waited for 58s338ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 886.51 KB - FooterProcessingTime: (Avg: 1.152ms ; Min: 242.493us ; Max: 7.576ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.53 KB (245283) ; Min: 77.90 KB (79772) ; Max: 320.73 KB (328431) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1613) ; Min: 233.00 B (233) ; Max: 5.15 KB (5275) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.05 KB (33845) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.23 KB (245997) ; Min: 78.83 KB (80719) ; Max: 321.37 KB (329082) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1618) ; Min: 229.00 B (229) ; Max: 5.17 KB (5298) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.23 MB (14921909) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14921909) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14921909) - CachedFileHandlesHitCount: 601 (601) - CachedFileHandlesMissCount: 7 (7) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.301ms - MaterializeTupleTime: 68.896ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176101) - PerReadThreadRawHdfsThroughput: 244.48 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.61K (228614) - RowsReturned: 228.61K (228614) - RowsReturnedRate: 3.88 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 324.565ms - TotalRawHdfsOpenFileTime: 7.473ms - TotalRawHdfsReadTime: 58.207ms - TotalReadThroughput: 29.55 KB/sec Buffer pool: - AllocTime: 1.020ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.53 MB (22577152) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.080us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.61K (228614) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 268 (268) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.61K (228614) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b400000020 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.118 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 2s322ms (2s322ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (492.323ms) - First Batch Sent: 1m2s (2.805us) - ExecInternal Finished: 1m2s (3.264ms) - MemoryUsage (1s000ms): 120.81 KB, 1.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 3.45 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 8.48 MB (8896500) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.585ms - TotalStorageWaitTime: 328.327ms - TotalThreadsInvoluntaryContextSwitches: 40 (40) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 3.495ms - TotalThreadsUserTime: 225.159ms - TotalThreadsVoluntaryContextSwitches: 493 (493) Fragment Instance Lifecycle Timings: - ExecTime: 495.516ms - ExecTreeExecTime: 492.642ms - OpenTime: 1m - ExecTreeOpenTime: 58s406ms - PrepareTime: 6.432ms - ExecTreePrepareTime: 5.975ms KrpcDataStreamSender (dst_id=143):(Total: 2.967ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 59.58 KB/sec ; Min: 29.79 KB/sec ; Max: 114.21 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 563.415us ; Min: 247.511us ; Max: 2.135ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -84544.000ns ; Min: -509709.000ns ; Max: -26916.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.718us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 58s905ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Open Finished: 1m2s (58s406ms) - First Batch Requested: 1m2s (33.003us) - First Batch Returned: 1m2s (492.317ms) - Last Batch Returned: 1m2s (383.926us) - Closed: 1m2s (58.439us) - PeakMemoryUsage: 5.28 MB (5535872) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 193.743us - HTResizeTime: 190.133us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 677.937us Buffer pool: - AllocTime: 26.517us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.708us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 7.96K (7959) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 58s908ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Waiting for builder: 1m2s (58s349ms) - Initial build available: 1m2s (4.423us) - Open Finished: 1m2s (57.141ms) - First Batch Requested: 1m2s (772.936us) - First Batch Returned: 1m2s (103.811ms) - Last Batch Returned: 1m2s (387.956ms) - Closed: 1m2s (166.608us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 3.28 MB (3434624) - ProbeRows: 8.17K (8171) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 430.949us - RowsReturned: 7.96K (7959) - RowsReturnedRate: 135.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 58s907ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s923ms (3s923ms) - Waiting for builder: 1m2s (58s339ms) - Initial build available: 1m2s (5.533us) - Open Finished: 1m2s (9.549ms) - First Batch Requested: 1m2s (104.184us) - First Batch Returned: 1m2s (57.104ms) - Last Batch Returned: 1m2s (492.256ms) - Closed: 1m2s (413.285us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.43K (228426) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.241ms - RowsReturned: 8.17K (8171) - RowsReturnedRate: 138.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 58s882ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [20, 22]), waited for 58s338ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 908.41 KB - FooterProcessingTime: (Avg: 1.282ms ; Min: 198.976us ; Max: 8.191ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.37 KB (245115) ; Min: 78.36 KB (80242) ; Max: 320.13 KB (327812) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.57 KB (1612) ; Min: 238.00 B (238) ; Max: 5.17 KB (5296) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.16 KB (33953) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.07 KB (245834) ; Min: 79.32 KB (81221) ; Max: 320.71 KB (328406) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1617) ; Min: 235.00 B (235) ; Max: 5.21 KB (5337) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.23 MB (14921966) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14921966) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14921966) - CachedFileHandlesHitCount: 607 (607) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.310ms - MaterializeTupleTime: 66.379ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176257) - PerReadThreadRawHdfsThroughput: 239.14 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.43K (228426) - RowsReturned: 228.43K (228426) - RowsReturnedRate: 3.88 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 328.327ms - TotalRawHdfsOpenFileTime: 3.355ms - TotalRawHdfsReadTime: 59.508ms - TotalReadThroughput: 30.28 KB/sec Buffer pool: - AllocTime: 1.046ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.55 MB (22593536) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.741us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.43K (228426) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 268 (268) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.43K (228426) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b400000021 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.117 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.92 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 2s332ms (2s332ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (251.500ms) - First Batch Sent: 1m2s (3.166us) - ExecInternal Finished: 1m2s (3.503ms) - MemoryUsage (1s000ms): 120.81 KB, 1.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.43 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.82 MB (8205012) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.736ms - TotalStorageWaitTime: 329.030ms - TotalThreadsInvoluntaryContextSwitches: 33 (33) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 3.860ms - TotalThreadsUserTime: 227.723ms - TotalThreadsVoluntaryContextSwitches: 496 (496) Fragment Instance Lifecycle Timings: - ExecTime: 254.880ms - ExecTreeExecTime: 251.820ms - OpenTime: 1m - ExecTreeOpenTime: 58s647ms - PrepareTime: 2.230ms - ExecTreePrepareTime: 1.881ms KrpcDataStreamSender (dst_id=143):(Total: 3.143ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 60.51 KB/sec ; Min: 45.88 KB/sec ; Max: 107.01 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 587.326us ; Min: 255.839us ; Max: 2.306ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -141487.000ns ; Min: -1650583.000ns ; Max: -24793.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.733us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 58s900ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s924ms (3s924ms) - Open Finished: 1m2s (58s647ms) - First Batch Requested: 1m2s (28.463us) - First Batch Returned: 1m2s (251.496ms) - Last Batch Returned: 1m2s (388.745us) - Closed: 1m2s (65.529us) - PeakMemoryUsage: 4.16 MB (4360320) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 200.267us - HTResizeTime: 215.137us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 475.963us Buffer pool: - AllocTime: 28.342us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.096us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.57K (3571) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 58s899ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s924ms (3s924ms) - Waiting for builder: 1m2s (58s352ms) - Initial build available: 1m2s (4.691us) - Open Finished: 1m2s (294.084ms) - First Batch Requested: 1m2s (895.764us) - First Batch Returned: 1m2s (144.117ms) - Last Batch Returned: 1m2s (106.869ms) - Closed: 1m2s (119.519us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.15 MB (2259072) - ProbeRows: 3.65K (3649) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 189.764us - RowsReturned: 3.57K (3571) - RowsReturnedRate: 60.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 58s898ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s924ms (3s924ms) - Waiting for builder: 1m2s (58s339ms) - Initial build available: 1m2s (2.343us) - Open Finished: 1m2s (12.836ms) - First Batch Requested: 1m2s (95.927us) - First Batch Returned: 1m2s (294.052ms) - Last Batch Returned: 1m2s (251.558ms) - Closed: 1m2s (431.176us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.45K (228448) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.328ms - RowsReturned: 3.65K (3649) - RowsReturnedRate: 61.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 58s884ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.92 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [20, 22]), waited for 58s338ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 843.39 KB - FooterProcessingTime: (Avg: 1.283ms ; Min: 217.893us ; Max: 8.730ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.45 KB (245192) ; Min: 78.04 KB (79909) ; Max: 320.15 KB (327837) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1613) ; Min: 234.00 B (234) ; Max: 5.17 KB (5294) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.05 KB (33845) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.09 KB (245849) ; Min: 78.97 KB (80862) ; Max: 320.66 KB (328356) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1617) ; Min: 232.00 B (232) ; Max: 5.19 KB (5315) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.23 MB (14922575) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14922575) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14922575) - CachedFileHandlesHitCount: 603 (603) - CachedFileHandlesMissCount: 5 (5) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.328ms - MaterializeTupleTime: 69.234ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176157) - PerReadThreadRawHdfsThroughput: 237.75 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.45K (228448) - RowsReturned: 228.45K (228448) - RowsReturnedRate: 3.88 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 329.030ms - TotalRawHdfsOpenFileTime: 5.855ms - TotalRawHdfsReadTime: 59.858ms - TotalReadThroughput: 28.11 KB/sec Buffer pool: - AllocTime: 1.034ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.53 MB (22577152) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.656us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.45K (228448) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 271 (271) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.45K (228448) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b400000022 (host=tarmstrong-Precision-7540:22000):(Total: 3s132ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.213 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s624ms - Prepare Finished: 580.571ms (580.571ms) - Open Finished: 3s471ms (2s890ms) - First Batch Produced: 3s619ms (147.839ms) - First Batch Sent: 3s619ms (7.548us) - ExecInternal Finished: 3s624ms (4.927ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4464484) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 4.165ms - TotalStorageWaitTime: 199.291ms - TotalThreadsInvoluntaryContextSwitches: 401 (401) - TotalThreadsTotalWallClockTime: 3s043ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 481.605ms - TotalThreadsVoluntaryContextSwitches: 42 (42) Fragment Instance Lifecycle Timings: - ExecTime: 152.702ms - ExecTreeExecTime: 148.181ms - OpenTime: 2s890ms - ExecTreeOpenTime: 563.405ms - PrepareTime: 89.286ms - ExecTreePrepareTime: 88.895ms KrpcDataStreamSender (dst_id=143):(Total: 4.578ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 47.13 KB/sec ; Min: 16.76 KB/sec ; Max: 92.16 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 694.616us ; Min: 411.386us ; Max: 1.514ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -121423.000ns ; Min: -219546.000ns ; Max: -57821.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.599us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 800.472ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s619ms - Open Started: 2s908ms (2s908ms) - Open Finished: 3s471ms (563.400ms) - First Batch Requested: 3s471ms (29.147us) - First Batch Returned: 3s619ms (147.833ms) - Last Batch Returned: 3s619ms (408.777us) - Closed: 3s619ms (83.783us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 222.333us - HTResizeTime: 305.957us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 659.215us Buffer pool: - AllocTime: 96.734us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 80.051us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.57K (3572) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 884.945ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s618ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 3s470ms (562.314ms) - Initial build available: 3s470ms (4.863us) - Open Finished: 3s470ms (100.676us) - First Batch Requested: 3s471ms (1.013ms) - First Batch Returned: 3s471ms (68.537us) - Last Batch Returned: 3s617ms (145.630ms) - Closed: 3s618ms (1.567ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.57K (3572) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 219.589us - RowsReturned: 3.57K (3572) - RowsReturnedRate: 4.04 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 884.172ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s618ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 2s914ms (6.963ms) - Initial build available: 2s915ms (4.899us) - Open Finished: 3s470ms (555.256ms) - First Batch Requested: 3s470ms (105.108us) - First Batch Returned: 3s470ms (63.076us) - Last Batch Returned: 3s616ms (146.449ms) - Closed: 3s618ms (1.822ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.57K (3572) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 225.552us - RowsReturned: 3.57K (3572) - RowsReturnedRate: 4.04 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 726.853ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 2s205ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s618ms - Closed: 3s618ms (3s618ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 84.634ms ; Min: 62.254ms ; Max: 107.014ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 3.79 KB (3883) ; Min: 1.22 KB (1253) ; Max: 5.08 KB (5205) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.90 KB (1941) ; Min: 551.00 B (551) ; Max: 2.79 KB (2862) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 3.81 KB (3904) ; Min: 1.25 KB (1285) ; Max: 5.10 KB (5226) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.91 KB (1952) ; Min: 559.00 B (559) ; Max: 2.81 KB (2876) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 239.04 KB (244781) - BytesReadDataNodeCache: 0 - BytesReadLocal: 239.04 KB (244781) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 239.04 KB (244781) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 42.264us - MaterializeTupleTime: 1.482ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162724) - PerReadThreadRawHdfsThroughput: 3.84 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.65K (3652) - RowsReturned: 3.57K (3572) - RowsReturnedRate: 4.91 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 199.291ms - TotalRawHdfsOpenFileTime: 3.737ms - TotalRawHdfsReadTime: 60.719ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 26.824us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.127us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.65K (3652) - Rows rejected: 80 (80) - Rows total: 3.65K (3652) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.57K (3572) - Rows rejected: 0 (0) - Rows total: 3.57K (3572) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000023 (host=tarmstrong-Precision-7540:22000):(Total: 3s126ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.211 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s629ms - Prepare Finished: 580.570ms (580.570ms) - Open Finished: 3s464ms (2s884ms) - First Batch Produced: 3s624ms (159.503ms) - First Batch Sent: 3s624ms (4.573us) - ExecInternal Finished: 3s629ms (5.341ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4469604) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 4.571ms - TotalStorageWaitTime: 259.920ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 3s048ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 16.652ms - TotalThreadsVoluntaryContextSwitches: 21 (21) Fragment Instance Lifecycle Timings: - ExecTime: 164.732ms - ExecTreeExecTime: 159.838ms - OpenTime: 2s884ms - ExecTreeOpenTime: 556.558ms - PrepareTime: 77.916ms - ExecTreePrepareTime: 77.551ms KrpcDataStreamSender (dst_id=143):(Total: 4.977ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 39.93 KB/sec ; Min: 21.72 KB/sec ; Max: 66.28 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.067ms ; Min: 394.255us ; Max: 2.748ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -337029.000ns ; Min: -2056361.000ns ; Max: -63755.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.606us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 793.940ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s624ms - Open Started: 2s908ms (2s908ms) - Open Finished: 3s464ms (556.555ms) - First Batch Requested: 3s464ms (25.944us) - First Batch Returned: 3s624ms (159.498ms) - Last Batch Returned: 3s624ms (404.516us) - Closed: 3s624ms (75.516us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 195.833us - HTResizeTime: 267.203us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 799.173us Buffer pool: - AllocTime: 51.941us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 39.466us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 7.64K (7644) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 862.478ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s623ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 3s463ms (555.575ms) - Initial build available: 3s463ms (5.330us) - Open Finished: 3s463ms (137.872us) - First Batch Requested: 3s464ms (867.322us) - First Batch Returned: 3s464ms (66.981us) - Last Batch Returned: 3s617ms (152.693ms) - Closed: 3s623ms (6.418ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 7.64K (7644) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 488.637us - RowsReturned: 7.64K (7644) - RowsReturnedRate: 8.86 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 859.505ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s623ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 2s909ms (1.420ms) - Initial build available: 2s909ms (3.403us) - Open Finished: 3s463ms (554.048ms) - First Batch Requested: 3s463ms (126.896us) - First Batch Returned: 3s463ms (94.216us) - Last Batch Returned: 3s615ms (151.474ms) - Closed: 3s623ms (8.564ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 7.64K (7644) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 510.780us - RowsReturned: 7.64K (7644) - RowsReturnedRate: 8.89 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 781.155ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 4 out of 4 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 2s205ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:4 PARQUET/Unknown(Skipped):148 Node Lifecycle Event Timeline: 3s623ms - Closed: 3s623ms (3s623ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 33.722ms ; Min: 6.913ms ; Max: 63.267ms ; Number of samples: 4) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 4) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 4) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 8.20 KB (8398) ; Min: 2.63 KB (2693) ; Max: 11.13 KB (11400) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.05 KB (2099) ; Min: 621.00 B (621) ; Max: 3.21 KB (3283) ; Number of samples: 12) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 4) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 4) - ParquetUncompressedBytesReadPerColumn: (Avg: 8.25 KB (8443) ; Min: 2.68 KB (2744) ; Max: 11.16 KB (11428) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.06 KB (2110) ; Min: 634.00 B (634) ; Max: 3.21 KB (3288) ; Number of samples: 12) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 484.01 KB (495622) - BytesReadDataNodeCache: 0 - BytesReadLocal: 484.01 KB (495622) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 484.01 KB (495622) - CachedFileHandlesHitCount: 12 (12) - CachedFileHandlesMissCount: 4 (4) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 84.376us - MaterializeTupleTime: 3.355ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 12 (12) - NumRowGroups: 4 (4) - NumRowGroupsWithPageIndex: 4 (4) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163748) - PerReadThreadRawHdfsThroughput: 7.99 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.82K (7822) - RowsReturned: 7.64K (7644) - RowsReturnedRate: 9.79 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 259.920ms - TotalRawHdfsOpenFileTime: 39.597ms - TotalRawHdfsReadTime: 59.148ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 72.912us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 672.00 KB (688128) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 37.176us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 7.82K (7822) - Rows rejected: 178 (178) - Rows total: 7.82K (7822) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 152 (152) - Files rejected: 148 (148) - Files total: 152 (152) - RowGroups processed: 5 (5) - RowGroups rejected: 0 (0) - RowGroups total: 5 (5) - Rows processed: 7.64K (7644) - Rows rejected: 0 (0) - Rows total: 7.64K (7644) - Splits processed: 4 (4) - Splits rejected: 0 (0) - Splits total: 4 (4) Instance 50467cb8e73eeac4:853461b400000024 (host=tarmstrong-Precision-7540:22000):(Total: 3s096ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.214 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s626ms - Prepare Finished: 580.578ms (580.578ms) - Open Finished: 3s461ms (2s880ms) - First Batch Produced: 3s622ms (161.857ms) - First Batch Sent: 3s622ms (2.784us) - ExecInternal Finished: 3s626ms (3.414ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4464600) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.636ms - TotalStorageWaitTime: 625.387ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s045ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.400ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 165.161ms - ExecTreeExecTime: 162.182ms - OpenTime: 2s880ms - ExecTreeOpenTime: 553.079ms - PrepareTime: 50.904ms - ExecTreePrepareTime: 50.540ms KrpcDataStreamSender (dst_id=143):(Total: 3.066ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 37.59 KB/sec ; Min: 14.01 KB/sec ; Max: 62.62 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 926.031us ; Min: 591.758us ; Max: 1.812ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -123435.000ns ; Min: -222732.000ns ; Max: -34523.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.863us - TotalBytesSent: 150.00 B (150) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 765.795ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s623ms - Open Started: 2s908ms (2s908ms) - Open Finished: 3s461ms (553.076ms) - First Batch Requested: 3s461ms (27.474us) - First Batch Returned: 3s622ms (161.851ms) - Last Batch Returned: 3s623ms (386.462us) - Closed: 3s623ms (77.133us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 7.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 217.307us - HTResizeTime: 217.214us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 542.917us Buffer pool: - AllocTime: 29.183us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.326us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.75K (3750) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 808.640ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s622ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 3s460ms (552.131ms) - Initial build available: 3s460ms (5.744us) - Open Finished: 3s460ms (117.286us) - First Batch Requested: 3s461ms (859.795us) - First Batch Returned: 3s461ms (70.043us) - Last Batch Returned: 3s617ms (156.074ms) - Closed: 3s622ms (5.395ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 237.909us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.64 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 807.589ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s622ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 2s909ms (1.037ms) - Initial build available: 2s909ms (5.587us) - Open Finished: 3s460ms (550.990ms) - First Batch Requested: 3s460ms (128.776us) - First Batch Returned: 3s460ms (73.978us) - Last Batch Returned: 3s616ms (156.497ms) - Closed: 3s622ms (5.894ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 239.277us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.64 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 681.340ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 2s205ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s622ms - Closed: 3s622ms (3s622ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 228.990ms ; Min: 29.775ms ; Max: 428.206ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.00 KB (4091) ; Min: 1.32 KB (1352) ; Max: 5.34 KB (5468) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.00 KB (2045) ; Min: 644.00 B (644) ; Max: 2.79 KB (2852) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.01 KB (4109) ; Min: 1.34 KB (1374) ; Max: 5.36 KB (5484) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.01 KB (2054) ; Min: 661.00 B (661) ; Max: 2.79 KB (2858) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 241.22 KB (247008) - BytesReadDataNodeCache: 0 - BytesReadLocal: 241.22 KB (247008) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 241.22 KB (247008) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 42.244us - MaterializeTupleTime: 1.426ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162840) - PerReadThreadRawHdfsThroughput: 627.21 KB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.84K (3841) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 5.50 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 625.387ms - TotalRawHdfsOpenFileTime: 60.276ms - TotalRawHdfsReadTime: 384.592ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 24.753us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.415us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.84K (3841) - Rows rejected: 91 (91) - Rows total: 3.84K (3841) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.75K (3750) - Rows rejected: 0 (0) - Rows total: 3.75K (3750) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000025 (host=tarmstrong-Precision-7540:22000):(Total: 3s071ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.214 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 3s623ms - Prepare Finished: 580.583ms (580.583ms) - Open Finished: 3s468ms (2s887ms) - First Batch Produced: 3s620ms (152.609ms) - First Batch Sent: 3s620ms (2.860us) - ExecInternal Finished: 3s623ms (2.617ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.12 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4463844) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.815ms - TotalStorageWaitTime: 196.569ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s042ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.241ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 155.047ms - ExecTreeExecTime: 152.894ms - OpenTime: 2s887ms - ExecTreeOpenTime: 560.067ms - PrepareTime: 29.163ms - ExecTreePrepareTime: 28.800ms KrpcDataStreamSender (dst_id=143):(Total: 2.289ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 56.63 KB/sec ; Min: 41.19 KB/sec ; Max: 88.41 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 835.257us ; Min: 430.069us ; Max: 1.092ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -107914.000ns ; Min: -274951.000ns ; Max: -34346.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.438us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 741.753ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s621ms - Open Started: 2s908ms (2s908ms) - Open Finished: 3s468ms (560.064ms) - First Batch Requested: 3s468ms (24.719us) - First Batch Returned: 3s620ms (152.603ms) - Last Batch Returned: 3s621ms (349.775us) - Closed: 3s621ms (57.440us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 8.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 179.698us - HTResizeTime: 277.069us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 571.822us Buffer pool: - AllocTime: 59.675us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 45.618us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.75K (3750) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 765.008ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s620ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 3s467ms (559.046ms) - Initial build available: 3s467ms (6.335us) - Open Finished: 3s467ms (103.730us) - First Batch Requested: 3s468ms (938.678us) - First Batch Returned: 3s468ms (63.416us) - Last Batch Returned: 3s617ms (149.026ms) - Closed: 3s620ms (3.202ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 208.887us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.90 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 764.157ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s620ms - Open Started: 2s908ms (2s908ms) - Waiting for builder: 2s909ms (1.508ms) - Initial build available: 2s909ms (2.482us) - Open Finished: 3s466ms (557.453ms) - First Batch Requested: 3s467ms (109.246us) - First Batch Returned: 3s467ms (66.596us) - Last Batch Returned: 3s616ms (149.654ms) - Closed: 3s620ms (3.566ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.75K (3750) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 212.632us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 4.91 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 664.083ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 2s205ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):150 Node Lifecycle Event Timeline: 3s620ms - Closed: 3s620ms (3s620ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 54.638ms ; Min: 46.827ms ; Max: 62.449ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.03 KB (4126) ; Min: 1.40 KB (1433) ; Max: 5.35 KB (5478) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.01 KB (2063) ; Min: 709.00 B (709) ; Max: 2.70 KB (2763) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.05 KB (4145) ; Min: 1.42 KB (1455) ; Max: 5.37 KB (5500) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.02 KB (2072) ; Min: 721.00 B (721) ; Max: 2.72 KB (2781) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 241.40 KB (247192) - BytesReadDataNodeCache: 0 - BytesReadLocal: 241.40 KB (247192) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 241.40 KB (247192) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 41.527us - MaterializeTupleTime: 1.552ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162352) - PerReadThreadRawHdfsThroughput: 72.86 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.85K (3847) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 5.65 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 196.569ms - TotalRawHdfsOpenFileTime: 3.450ms - TotalRawHdfsReadTime: 3.235ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 34.270us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 19.796us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.85K (3847) - Rows rejected: 97 (97) - Rows total: 3.85K (3847) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 152 (152) - Files rejected: 150 (150) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 2 (2) - Rows processed: 3.75K (3750) - Rows rejected: 0 (0) - Rows total: 3.75K (3750) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000026 (host=tarmstrong-Precision-7540:22002):(Total: 2s387ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.125 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:134/17.30 MB Fragment Instance Lifecycle Event Timeline: 2s442ms - Prepare Finished: 56.123ms (56.123ms) - Open Finished: 2s293ms (2s237ms) - First Batch Produced: 2s391ms (98.657ms) - First Batch Sent: 2s391ms (6.373us) - ExecInternal Finished: 2s442ms (50.153ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4483412) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 49.421ms - TotalStorageWaitTime: 158.038ms - TotalThreadsInvoluntaryContextSwitches: 197 (197) - TotalThreadsTotalWallClockTime: 2s385ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 471.172ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 148.713ms - ExecTreeExecTime: 98.976ms - OpenTime: 2s237ms - ExecTreeOpenTime: 552.806ms - PrepareTime: 1.844ms - ExecTreePrepareTime: 1.515ms KrpcDataStreamSender (dst_id=143):(Total: 49.782ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 902.00 B/sec ; Min: 556.00 B/sec ; Max: 1.64 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 12.372ms ; Min: 1.755ms ; Max: 46.751ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -90825.000ns ; Min: -330825.000ns ; Max: -25734.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.432us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 653.289ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s392ms - Open Started: 1s740ms (1s740ms) - Open Finished: 2s293ms (552.801ms) - First Batch Requested: 2s293ms (28.168us) - First Batch Returned: 2s391ms (98.651ms) - Last Batch Returned: 2s392ms (384.641us) - Closed: 2s392ms (69.909us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 9.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 204.446us - HTResizeTime: 306.938us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 722.062us Buffer pool: - AllocTime: 66.742us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 51.598us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 4.21K (4206) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 649.315ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s391ms - Open Started: 1s740ms (1s740ms) - Waiting for builder: 2s292ms (551.724ms) - Initial build available: 2s292ms (5.738us) - Open Finished: 2s292ms (100.220us) - First Batch Requested: 2s293ms (1.003ms) - First Batch Returned: 2s293ms (69.700us) - Last Batch Returned: 2s388ms (95.383ms) - Closed: 2s391ms (2.771ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 4.21K (4206) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 249.812us - RowsReturned: 4.21K (4206) - RowsReturnedRate: 6.48 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 648.383ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s391ms - Open Started: 1s740ms (1s740ms) - Waiting for builder: 2s128ms (387.998ms) - Initial build available: 2s128ms (77.684us) - Open Finished: 2s292ms (163.549ms) - First Batch Requested: 2s292ms (116.547us) - First Batch Returned: 2s292ms (61.585us) - Last Batch Returned: 2s388ms (96.067ms) - Closed: 2s391ms (3.152ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 4.21K (4206) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 309.535us - RowsReturned: 4.21K (4206) - RowsReturnedRate: 6.49 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 594.331ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:134/17.30 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 387ms. Maximum arrival delay: 2s073ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):132 Node Lifecycle Event Timeline: 2s391ms - Closed: 2s391ms (2s391ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 100.00 KB - FooterProcessingTime: (Avg: 36.732ms ; Min: 19.277ms ; Max: 54.186ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.65 KB (4759) ; Min: 1.50 KB (1538) ; Max: 6.22 KB (6373) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.32 KB (2379) ; Min: 758.00 B (758) ; Max: 3.30 KB (3382) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.67 KB (4778) ; Min: 1.53 KB (1566) ; Max: 6.24 KB (6386) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.33 KB (2389) ; Min: 769.00 B (769) ; Max: 3.31 KB (3394) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 246.57 KB (252483) - BytesReadDataNodeCache: 0 - BytesReadLocal: 246.57 KB (252483) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 246.57 KB (252483) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 51.695us - MaterializeTupleTime: 2.142ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2164244) - PerReadThreadRawHdfsThroughput: 5.96 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 4.29K (4295) - RowsReturned: 4.21K (4206) - RowsReturnedRate: 7.08 K/sec - ScanRangesComplete: 134 (134) - ScannerIoWaitTime: 158.038ms - TotalRawHdfsOpenFileTime: 8.971ms - TotalRawHdfsReadTime: 40.367ms - TotalReadThroughput: 40.00 KB/sec Buffer pool: - AllocTime: 28.082us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.693us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 4.29K (4295) - Rows rejected: 89 (89) - Rows total: 4.29K (4295) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 134 (134) - Files rejected: 132 (132) - Files total: 134 (134) - RowGroups processed: 4 (4) - RowGroups rejected: 0 (0) - RowGroups total: 4 (4) - Rows processed: 4.21K (4206) - Rows rejected: 0 (0) - Rows total: 4.21K (4206) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000028 (host=tarmstrong-Precision-7540:22002):(Total: 2s373ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.125 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 2s442ms - Prepare Finished: 73.744ms (73.744ms) - Open Finished: 2s302ms (2s228ms) - First Batch Produced: 2s394ms (91.854ms) - First Batch Sent: 2s394ms (3.076us) - ExecInternal Finished: 2s442ms (48.525ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4482668) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 47.833ms - TotalStorageWaitTime: 164.301ms - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 2s368ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.732ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 140.255ms - ExecTreeExecTime: 92.108ms - OpenTime: 2s228ms - ExecTreeOpenTime: 561.189ms - PrepareTime: 4.486ms - ExecTreePrepareTime: 4.085ms KrpcDataStreamSender (dst_id=143):(Total: 48.261ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 951.00 B/sec ; Min: 568.00 B/sec ; Max: 1.71 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 11.386ms ; Min: 1.556ms ; Max: 45.754ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -79039.000ns ; Min: -202957.000ns ; Max: -30175.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.174us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 657.375ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s394ms - Open Started: 1s741ms (1s741ms) - Open Finished: 2s302ms (561.186ms) - First Batch Requested: 2s302ms (27.051us) - First Batch Returned: 2s394ms (91.848ms) - Last Batch Returned: 2s394ms (310.210us) - Closed: 2s394ms (65.184us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 9.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 161.249us - HTResizeTime: 284.991us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 583.278us Buffer pool: - AllocTime: 79.013us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 64.449us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.87K (3869) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 653.816ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s393ms - Open Started: 1s741ms (1s741ms) - Waiting for builder: 2s300ms (559.841ms) - Initial build available: 2s300ms (7.079us) - Open Finished: 2s301ms (148.754us) - First Batch Requested: 2s302ms (1.222ms) - First Batch Returned: 2s302ms (71.402us) - Last Batch Returned: 2s388ms (86.473ms) - Closed: 2s393ms (4.871ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 3.87K (3869) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 225.229us - RowsReturned: 3.87K (3869) - RowsReturnedRate: 5.92 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 652.851ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s393ms - Open Started: 1s741ms (1s741ms) - Waiting for builder: 2s129ms (388.552ms) - Initial build available: 2s129ms (3.087us) - Open Finished: 2s300ms (171.167ms) - First Batch Requested: 2s300ms (158.895us) - First Batch Returned: 2s301ms (101.879us) - Last Batch Returned: 2s388ms (87.358ms) - Closed: 2s393ms (5.268ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.87K (3869) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 276.368us - RowsReturned: 3.87K (3869) - RowsReturnedRate: 5.93 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 603.154ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 387ms. Maximum arrival delay: 2s073ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):156 Node Lifecycle Event Timeline: 2s393ms - Closed: 2s393ms (2s393ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 61.078ms ; Min: 19.293ms ; Max: 102.864ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.15 KB (4248) ; Min: 1.42 KB (1453) ; Max: 5.52 KB (5649) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.07 KB (2124) ; Min: 708.00 B (708) ; Max: 2.92 KB (2990) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.17 KB (4265) ; Min: 1.46 KB (1493) ; Max: 5.52 KB (5653) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.08 KB (2132) ; Min: 731.00 B (731) ; Max: 2.92 KB (2994) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 242.52 KB (248336) - BytesReadDataNodeCache: 0 - BytesReadLocal: 242.52 KB (248336) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 242.52 KB (248336) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 44.757us - MaterializeTupleTime: 1.616ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163500) - PerReadThreadRawHdfsThroughput: 39.76 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.97K (3966) - RowsReturned: 3.87K (3869) - RowsReturnedRate: 6.41 K/sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 164.301ms - TotalRawHdfsOpenFileTime: 5.484ms - TotalRawHdfsReadTime: 5.955ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 64.616us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 49.517us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.97K (3966) - Rows rejected: 97 (97) - Rows total: 3.97K (3966) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 158 (158) - Files rejected: 156 (156) - Files total: 158 (158) - RowGroups processed: 3 (3) - RowGroups rejected: 0 (0) - RowGroups total: 3 (3) - Rows processed: 3.87K (3869) - Rows rejected: 0 (0) - Rows total: 3.87K (3869) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000027 (host=tarmstrong-Precision-7540:22002):(Total: 2s372ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.128 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 2s442ms - Prepare Finished: 72.660ms (72.660ms) - Open Finished: 2s306ms (2s233ms) - First Batch Produced: 2s389ms (83.219ms) - First Batch Sent: 2s389ms (3.096us) - ExecInternal Finished: 2s442ms (53.217ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.28 MB (4485832) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 51.344ms - TotalStorageWaitTime: 201.675ms - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 2s370ms - TotalThreadsSysTime: 4.113ms - TotalThreadsUserTime: 16.318ms - TotalThreadsVoluntaryContextSwitches: 30 (30) Fragment Instance Lifecycle Timings: - ExecTime: 136.374ms - ExecTreeExecTime: 83.566ms - OpenTime: 2s233ms - ExecTreeOpenTime: 566.043ms - PrepareTime: 2.066ms - ExecTreePrepareTime: 1.738ms KrpcDataStreamSender (dst_id=143):(Total: 52.854ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 859.00 B/sec ; Min: 541.00 B/sec ; Max: 1.55 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 12.978ms ; Min: 1.558ms ; Max: 47.993ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -207728.000ns ; Min: -771793.000ns ; Max: -26808.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 30.616us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 651.340ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s390ms - Open Started: 1s740ms (1s740ms) - Open Finished: 2s306ms (566.039ms) - First Batch Requested: 2s306ms (27.076us) - First Batch Returned: 2s389ms (83.213ms) - Last Batch Returned: 2s390ms (420.293us) - Closed: 2s390ms (60.684us) - PeakMemoryUsage: 2.08 MB (2178176) - RowsReturned: 6 (6) - RowsReturnedRate: 9.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 209.158us - HTResizeTime: 276.511us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 902.581us Buffer pool: - AllocTime: 69.947us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 55.102us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 9.58K (9578) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 649.453ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s389ms - Open Started: 1s740ms (1s740ms) - Waiting for builder: 2s305ms (564.642ms) - Initial build available: 2s305ms (6.972us) - Open Finished: 2s305ms (152.954us) - First Batch Requested: 2s306ms (1.270ms) - First Batch Returned: 2s306ms (70.505us) - Last Batch Returned: 2s388ms (82.345ms) - Closed: 2s389ms (463.076us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 9.58K (9578) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 564.417us - RowsReturned: 9.58K (9578) - RowsReturnedRate: 14.75 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 648.050ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s389ms - Open Started: 1s740ms (1s740ms) - Waiting for builder: 2s129ms (388.592ms) - Initial build available: 2s129ms (3.465us) - Open Finished: 2s304ms (175.922ms) - First Batch Requested: 2s305ms (157.090us) - First Batch Returned: 2s305ms (99.956us) - Last Batch Returned: 2s388ms (83.265ms) - Closed: 2s389ms (877.498us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 9.58K (9578) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 619.104us - RowsReturned: 9.58K (9578) - RowsReturnedRate: 14.78 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 645.162ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 5 out of 5 Runtime filters: All filters arrived. Waited 388ms. Maximum arrival delay: 2s073ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:5 PARQUET/Unknown(Skipped):153 Node Lifecycle Event Timeline: 2s389ms - Closed: 2s389ms (2s389ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 31.291ms ; Min: 6.910ms ; Max: 113.952ms ; Number of samples: 5) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 5) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 5) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 10.16 KB (10399) ; Min: 3.28 KB (3361) ; Max: 13.59 KB (13920) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.03 KB (2079) ; Min: 590.00 B (590) ; Max: 2.93 KB (3000) ; Number of samples: 15) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 5) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 10.19 KB (10430) ; Min: 3.33 KB (3413) ; Max: 13.61 KB (13940) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2086) ; Min: 597.00 B (597) ; Max: 2.93 KB (3002) ; Number of samples: 15) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 604.92 KB (619440) - BytesReadDataNodeCache: 0 - BytesReadLocal: 604.92 KB (619440) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 604.92 KB (619440) - CachedFileHandlesHitCount: 15 (15) - CachedFileHandlesMissCount: 5 (5) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 111.992us - MaterializeTupleTime: 4.423ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 5 (5) - NumRowGroupsWithPageIndex: 5 (5) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163576) - PerReadThreadRawHdfsThroughput: 24.27 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 9.78K (9784) - RowsReturned: 9.58K (9578) - RowsReturnedRate: 14.85 K/sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 201.675ms - TotalRawHdfsOpenFileTime: 20.602ms - TotalRawHdfsReadTime: 24.336ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 76.889us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 840.00 KB (860160) - CumulativeAllocations: 20 (20) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.669us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 9.78K (9784) - Rows rejected: 206 (206) - Rows total: 9.78K (9784) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 158 (158) - Files rejected: 153 (153) - Files total: 158 (158) - RowGroups processed: 7 (7) - RowGroups rejected: 0 (0) - RowGroups total: 7 (7) - Rows processed: 9.58K (9578) - Rows rejected: 0 (0) - Rows total: 9.58K (9578) - Splits processed: 5 (5) - Splits rejected: 0 (0) - Splits total: 5 (5) Instance 50467cb8e73eeac4:853461b400000029 (host=tarmstrong-Precision-7540:22002):(Total: 2s366ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.130 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 2s442ms - Prepare Finished: 78.247ms (78.247ms) - Open Finished: 2s297ms (2s219ms) - First Batch Produced: 2s392ms (95.019ms) - First Batch Sent: 2s392ms (3.011us) - ExecInternal Finished: 2s442ms (49.724ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 2.13 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.27 MB (4482468) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 48.932ms - TotalStorageWaitTime: 162.285ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 2s364ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.521ms - TotalThreadsVoluntaryContextSwitches: 21 (21) Fragment Instance Lifecycle Timings: - ExecTime: 144.644ms - ExecTreeExecTime: 95.313ms - OpenTime: 2s219ms - ExecTreeOpenTime: 556.839ms - PrepareTime: 2.207ms - ExecTreePrepareTime: 1.845ms KrpcDataStreamSender (dst_id=143):(Total: 49.401ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 937.00 B/sec ; Min: 570.00 B/sec ; Max: 1.71 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 12.209ms ; Min: 1.641ms ; Max: 45.541ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -254860.000ns ; Min: -789008.000ns ; Max: -30087.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 29.842us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=44):(Total: 653.988ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s393ms - Open Started: 1s741ms (1s741ms) - Open Finished: 2s297ms (556.835ms) - First Batch Requested: 2s297ms (28.748us) - First Batch Returned: 2s392ms (95.013ms) - Last Batch Returned: 2s393ms (358.076us) - Closed: 2s393ms (78.919us) - PeakMemoryUsage: 2.09 MB (2195584) - RowsReturned: 6 (6) - RowsReturnedRate: 9.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 178.222us - HTResizeTime: 312.090us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 635.677us Buffer pool: - AllocTime: 93.767us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 77.546us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.86K (3856) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=43):(Total: 649.227ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s392ms - Open Started: 1s741ms (1s741ms) - Waiting for builder: 2s296ms (555.559ms) - Initial build available: 2s296ms (5.126us) - Open Finished: 2s296ms (98.040us) - First Batch Requested: 2s297ms (1.209ms) - First Batch Returned: 2s298ms (70.060us) - Last Batch Returned: 2s388ms (90.751ms) - Closed: 2s392ms (3.855ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 3.86K (3856) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 241.444us - RowsReturned: 3.86K (3856) - RowsReturnedRate: 5.94 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=42):(Total: 648.311ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s392ms - Open Started: 1s741ms (1s741ms) - Waiting for builder: 2s128ms (387.386ms) - Initial build available: 2s128ms (44.590us) - Open Finished: 2s296ms (168.047ms) - First Batch Requested: 2s296ms (107.230us) - First Batch Returned: 2s296ms (62.276us) - Last Batch Returned: 2s388ms (91.641ms) - Closed: 2s392ms (4.237ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 3.86K (3856) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 206.976us - RowsReturned: 3.86K (3856) - RowsReturnedRate: 5.95 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=39):(Total: 598.144ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: All filters arrived. Waited 386ms. Maximum arrival delay: 2s073ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):156 Node Lifecycle Event Timeline: 2s392ms - Closed: 2s392ms (2s392ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 58.495ms ; Min: 19.271ms ; Max: 97.718ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.08 KB (4174) ; Min: 1.29 KB (1325) ; Max: 5.47 KB (5605) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.04 KB (2087) ; Min: 596.00 B (596) ; Max: 2.88 KB (2953) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.09 KB (4184) ; Min: 1.31 KB (1340) ; Max: 5.48 KB (5609) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2092) ; Min: 602.00 B (602) ; Max: 2.89 KB (2958) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 242.20 KB (248008) - BytesReadDataNodeCache: 0 - BytesReadLocal: 242.20 KB (248008) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 242.20 KB (248008) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 47.850us - MaterializeTupleTime: 1.948ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163300) - PerReadThreadRawHdfsThroughput: 5.19 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.94K (3939) - RowsReturned: 3.86K (3856) - RowsReturnedRate: 6.45 K/sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 162.285ms - TotalRawHdfsOpenFileTime: 5.059ms - TotalRawHdfsReadTime: 45.541ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 52.207us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 38.268us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 20 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 3.94K (3939) - Rows rejected: 83 (83) - Rows total: 3.94K (3939) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 22 (1.00 MB): - Files processed: 158 (158) - Files rejected: 156 (156) - Files total: 158 (158) - RowGroups processed: 3 (3) - RowGroups rejected: 0 (0) - RowGroups total: 3 (3) - Rows processed: 3.86K (3856) - Rows rejected: 0 (0) - Rows total: 3.86K (3856) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Averaged Fragment F32:(Total: 21s725ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.71 MB, max: 43.58 MB, avg: 32.21 MB, stddev: 15.91 MB completion times: min:6s258ms max:1m3s mean: 25s594ms stddev:26s614ms execution rates: min:705.73 KB/sec max:5.94 MB/sec mean:2.73 MB/sec stddev:2.30 MB/sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 13.22 MB (13867133) - PeakReservation: 10.10 MB (10594986) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.073ms - TotalStorageWaitTime: 249.134ms - TotalThreadsInvoluntaryContextSwitches: 357 (357) - TotalThreadsTotalWallClockTime: 21s720ms - TotalThreadsSysTime: 8.146ms - TotalThreadsUserTime: 500.027ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 258.007ms - ExecTreeExecTime: 252.227ms - OpenTime: 21s462ms - ExecTreeOpenTime: 20s198ms - PrepareTime: 5.278ms - ExecTreePrepareTime: 4.921ms KrpcDataStreamSender (dst_id=150):(Total: 5.889ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 46.77 KB (47893) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.220us - TotalBytesSent: 34.00 B (34) - UncompressedRowBatchSize: 60.00 B (60) AGGREGATION_NODE (id=55):(Total: 20s455ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 4.72 MB (4947072) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 35.001us - HTResizeTime: 96.852us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 721.395us Buffer pool: - AllocTime: 38.833us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 24.442us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.73K (2730) - HashCollisions: 0 (0) - Probes: 10.56K (10564) - Resizes: 5 (5) - Travel: 0 (0) HASH_JOIN_NODE (id=54):(Total: 20s456ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 47.79 KB (48938) - ProbeRows: 229.28K (229275) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 7.972ms - RowsReturned: 10.56K (10564) - RowsReturnedRate: 10.15 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=52):(Total: 20s439ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.17 - BytesRead: 3.97 MB (4161220) - BytesReadDataNodeCache: 0 - BytesReadLocal: 3.97 MB (4161220) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.97 MB (4161220) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.614ms - MaterializeTupleTime: 305.626ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 69 (69) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.61 MB (9025709) - PerReadThreadRawHdfsThroughput: 1.02 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 480.52K (480516) - RowsReturned: 229.28K (229275) - RowsReturnedRate: 13.88 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 249.134ms - TotalRawHdfsOpenFileTime: 27.646ms - TotalRawHdfsReadTime: 153.035ms - TotalReadThroughput: 848.57 KB/sec Buffer pool: - AllocTime: 62.688us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.24 MB (6545408) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.10 MB (8497834) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.12 MB (6414336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.936us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 28 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 261.81K (261805) - Rows rejected: 251.24K (251241) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F32: Instance 50467cb8e73eeac4:853461b40000002a (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.117 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.58 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 2s349ms (2s349ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (239.503ms) - First Batch Sent: 1m2s (3.205us) - ExecInternal Finished: 1m2s (1.883ms) - MemoryUsage (1s000ms): 87.69 KB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 10.90 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 18.75 MB (19665118) - PeakReservation: 10.16 MB (10649600) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.601ms - TotalStorageWaitTime: 8.959ms - TotalThreadsInvoluntaryContextSwitches: 219 (219) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 8.213ms - TotalThreadsUserTime: 537.935ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 241.271ms - ExecTreeExecTime: 239.505ms - OpenTime: 1m - ExecTreeOpenTime: 58s854ms - PrepareTime: 772.182us - ExecTreePrepareTime: 390.599us KrpcDataStreamSender (dst_id=150):(Total: 1.907ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: 0.00 /sec (Number of samples: 0) - RpcNetworkTime: (Avg: 846.730us ; Min: 641.468us ; Max: 1.606ms ; Number of samples: 12) - RpcRecvrTime: (Avg: -302700.000ns ; Min: -1259714.000ns ; Max: -36959.000ns ; Number of samples: 12) - EosSent: 12 (12) - PeakMemoryUsage: 41.44 KB (42432) - RowsSent: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - TotalBytesSent: 0 - UncompressedRowBatchSize: 0 AGGREGATION_NODE (id=55):(Total: 59s094ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s517ms (3s517ms) - Open Finished: 1m2s (58s854ms) - First Batch Requested: 1m2s (28.920us) - First Batch Returned: 1m2s (239.498ms) - Last Batch Returned: 1m2s (10.196us) - Closed: 1m2s (48.389us) - PeakMemoryUsage: 10.03 MB (10517632) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 0 (0) - StreamingTime: 15.075us Buffer pool: - AllocTime: 5.045us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) HASH_JOIN_NODE (id=54):(Total: 59s091ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s517ms (3s517ms) - Waiting for builder: 1m2s (58s832ms) - Initial build available: 1m2s (5.436us) - Open Finished: 1m2s (21.599ms) - First Batch Requested: 1m2s (719.648us) - First Batch Returned: 1m2s (176.267ms) - Last Batch Returned: 1m2s (62.569ms) - Closed: 1m2s (252.601us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 656.13K (656132) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 21.833ms - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=52):(Total: 59s060ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.58 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [28]), waited for 58s832ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.67 MB - FooterProcessingTime: (Avg: 1.059ms ; Min: 1.059ms ; Max: 1.059ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.23 MB (1292048) ; Min: 14.06 KB (14395) ; Max: 2.41 MB (2532089) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 53.13 KB (54402) ; Min: 101.00 B (101) ; Max: 64.64 KB (66191) ; Number of samples: 95) - ParquetRowGroupActualReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.24 MB (1299260) ; Min: 17.34 KB (17761) ; Max: 2.41 MB (2531811) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 53.42 KB (54705) ; Min: 98.00 B (98) ; Max: 64.80 KB (66358) ; Number of samples: 95) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.34 MB (5596483) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.34 MB (5596483) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.34 MB (5596483) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.476ms - MaterializeTupleTime: 200.808ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 95 (95) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.67 MB (9089093) - PerReadThreadRawHdfsThroughput: 2.11 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 656.13K (656132) - RowsReturned: 656.13K (656132) - RowsReturnedRate: 11.11 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 8.959ms - TotalRawHdfsOpenFileTime: 25.363us - TotalRawHdfsReadTime: 2.468ms - TotalReadThroughput: 91.09 KB/sec Buffer pool: - AllocTime: 89.149us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.28 MB (8683520) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.16 MB (8552448) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.16 MB (8552448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 81.518us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 28 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b40000002c (host=tarmstrong-Precision-7540:22002):(Total: 2s468ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.128 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.71 MB Fragment Instance Lifecycle Event Timeline: 2s473ms - Prepare Finished: 19.531ms (19.531ms) - Open Finished: 2s457ms (2s438ms) - First Batch Produced: 2s459ms (1.360ms) - First Batch Sent: 2s459ms (3.062us) - ExecInternal Finished: 2s473ms (14.645ms) - MemoryUsage (500.000ms): 87.69 KB, 87.69 KB, 87.69 KB, 8.09 MB, 8.24 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.10 MB (10591936) - PeakReservation: 10.00 MB (10485760) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 12.892ms - TotalStorageWaitTime: 625.099ms - TotalThreadsInvoluntaryContextSwitches: 155 (155) - TotalThreadsTotalWallClockTime: 2s454ms - TotalThreadsSysTime: 3.896ms - TotalThreadsUserTime: 357.490ms - TotalThreadsVoluntaryContextSwitches: 21 (21) Fragment Instance Lifecycle Timings: - ExecTime: 15.894ms - ExecTreeExecTime: 1.361ms - OpenTime: 2s438ms - ExecTreeOpenTime: 1s208ms - PrepareTime: 14.301ms - ExecTreePrepareTime: 13.988ms KrpcDataStreamSender (dst_id=150):(Total: 14.619ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: 0.00 /sec (Number of samples: 0) - RpcNetworkTime: (Avg: 2.802ms ; Min: 190.428us ; Max: 8.053ms ; Number of samples: 12) - RpcRecvrTime: (Avg: -722076.000ns ; Min: -7776307.000ns ; Max: -35042.000ns ; Number of samples: 12) - EosSent: 12 (12) - PeakMemoryUsage: 41.44 KB (42432) - RowsSent: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - TotalBytesSent: 0 - UncompressedRowBatchSize: 0 AGGREGATION_NODE (id=55):(Total: 1s223ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s459ms - Open Started: 1s249ms (1s249ms) - Open Finished: 2s457ms (1s208ms) - First Batch Requested: 2s457ms (29.632us) - First Batch Returned: 2s459ms (1.354ms) - Last Batch Returned: 2s459ms (10.830us) - Closed: 2s459ms (66.465us) - PeakMemoryUsage: 2.03 MB (2126976) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 0 (0) - StreamingTime: 6.493us Buffer pool: - AllocTime: 9.285us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) HASH_JOIN_NODE (id=54):(Total: 1s235ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 2s458ms - Open Started: 1s249ms (1s249ms) - Waiting for builder: 1s645ms (396.287ms) - Initial build available: 1s645ms (4.059us) - Open Finished: 2s456ms (811.091ms) - First Batch Requested: 2s457ms (1.009ms) - First Batch Returned: 2s457ms (11.362us) - Last Batch Returned: 2s458ms (326.501us) - Closed: 2s458ms (497.718us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 733.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=52):(Total: 1s221ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 396ms. Maximum arrival delay: 1s639ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s458ms - Closed: 2s458ms (2s458ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 700.51 KB - FooterProcessingTime: (Avg: 522.519ms ; Min: 522.519ms ; Max: 522.519ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 219.08 KB (224336) ; Min: 2.55 KB (2612) ; Max: 429.76 KB (440072) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 46.12 KB (47228) ; Min: 1007.00 B (1007) ; Max: 64.62 KB (66173) ; Number of samples: 19) - ParquetRowGroupActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 2.04 MB (2138112) ; Min: 2.04 MB (2138112) ; Max: 2.04 MB (2138112) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 220.50 KB (225794) ; Min: 3.36 KB (3436) ; Max: 429.71 KB (440019) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 46.42 KB (47535) ; Min: 1.24 KB (1266) ; Max: 64.80 KB (66354) ; Number of samples: 19) - AverageHdfsReadThreadConcurrency: 0.50 - BytesRead: 1.26 MB (1320693) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.26 MB (1320693) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.26 MB (1320693) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 393.347us - MaterializeTupleTime: 166.582ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 19 (19) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.49 MB (8898933) - PerReadThreadRawHdfsThroughput: 2.79 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 625.099ms - TotalRawHdfsOpenFileTime: 81.324ms - TotalRawHdfsReadTime: 451.183ms - TotalReadThroughput: 280.20 KB/sec Buffer pool: - AllocTime: 42.320us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.16 MB (2269184) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.04 MB (2138112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.253us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 28 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b40000002b (host=tarmstrong-Precision-7540:22000):(Total: 2s443ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.202 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.33 MB Fragment Instance Lifecycle Event Timeline: 4s036ms - Prepare Finished: 1s594ms (1s594ms) - Open Finished: 3s520ms (1s925ms) - First Batch Produced: 4s035ms (515.632ms) - First Batch Sent: 4s035ms (3.590us) - ExecInternal Finished: 4s036ms (1.333ms) - MemoryUsage (500.000ms): 87.69 KB, 87.69 KB, 87.69 KB, 8.09 MB, 10.82 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.82 MB (11344346) - PeakReservation: 10.16 MB (10649600) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 725.582us - TotalStorageWaitTime: 113.345ms - TotalThreadsInvoluntaryContextSwitches: 699 (699) - TotalThreadsTotalWallClockTime: 2s442ms - TotalThreadsSysTime: 12.331ms - TotalThreadsUserTime: 604.656ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 516.857ms - ExecTreeExecTime: 515.814ms - OpenTime: 1s925ms - ExecTreeOpenTime: 532.731ms - PrepareTime: 761.039us - ExecTreePrepareTime: 385.996us KrpcDataStreamSender (dst_id=150):(Total: 1.140ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 73.49 KB/sec ; Min: 55.06 KB/sec ; Max: 83.67 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 372.888us ; Min: 220.705us ; Max: 502.747us ; Number of samples: 16) - RpcRecvrTime: (Avg: -68283.000ns ; Min: -185879.000ns ; Max: -36692.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 57.44 KB (58816) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.661us - TotalBytesSent: 102.00 B (102) - UncompressedRowBatchSize: 180.00 B (180) AGGREGATION_NODE (id=55):(Total: 1s048ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s035ms - Open Started: 2s987ms (2s987ms) - Open Finished: 3s520ms (532.727ms) - First Batch Requested: 3s520ms (32.549us) - First Batch Returned: 4s035ms (515.626ms) - Last Batch Returned: 4s035ms (230.295us) - Closed: 4s035ms (72.739us) - PeakMemoryUsage: 2.09 MB (2196608) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 105.004us - HTResizeTime: 290.558us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 2.142ms Buffer pool: - AllocTime: 102.171us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 73.328us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 31.69K (31693) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=54):(Total: 1s040ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s035ms - Open Started: 2s987ms (2s987ms) - Waiting for builder: 2s987ms (321.972us) - Initial build available: 2s987ms (4.685us) - Open Finished: 3s518ms (531.182ms) - First Batch Requested: 3s520ms (1.252ms) - First Batch Returned: 3s520ms (62.146us) - Last Batch Returned: 4s031ms (511.312ms) - Closed: 4s035ms (3.895ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 59.12 KB (60544) - ProbeRows: 31.69K (31693) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.082ms - RowsReturned: 31.69K (31693) - RowsReturnedRate: 30.44 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=52):(Total: 1s037ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.33 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 10ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 4s035ms - Closed: 4s035ms (4s035ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 5.31 MB - FooterProcessingTime: (Avg: 111.337ms ; Min: 111.337ms ; Max: 111.337ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.23 MB (1284633) ; Min: 13.91 KB (14239) ; Max: 2.40 MB (2516023) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 53.38 KB (54665) ; Min: 242.00 B (242) ; Max: 64.61 KB (66164) ; Number of samples: 94) - ParquetRowGroupActualReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.23 MB (1293391) ; Min: 17.39 KB (17806) ; Max: 2.40 MB (2515748) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 53.75 KB (55037) ; Min: 262.00 B (262) ; Max: 64.76 KB (66315) ; Number of samples: 94) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.31 MB (5566485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.31 MB (5566485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.31 MB (5566485) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.974ms - MaterializeTupleTime: 549.490ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 94 (94) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.67 MB (9089102) - PerReadThreadRawHdfsThroughput: 973.18 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 652.17K (652171) - RowsReturned: 31.69K (31693) - RowsReturnedRate: 30.54 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 113.345ms - TotalRawHdfsOpenFileTime: 1.588ms - TotalRawHdfsReadTime: 5.454ms - TotalReadThroughput: 2.12 MB/sec Buffer pool: - AllocTime: 56.595us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.28 MB (8683520) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.16 MB (8552448) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.16 MB (8552448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 48.039us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 28 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 652.17K (652171) - Rows rejected: 620.48K (620478) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F38:(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 4.68 MB, max: 40.42 MB, avg: 22.55 MB, stddev: 17.87 MB completion times: min:1m2s max:1m3s mean: 1m3s stddev:118.816ms execution rates: min:76.03 KB/sec max:654.54 KB/sec mean:365.29 KB/sec stddev:289.26 KB/sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 12.39 MB (12995544) - PeakReservation: 10.38 MB (10878976) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 583.422us - TotalStorageWaitTime: 1.888ms - TotalThreadsInvoluntaryContextSwitches: 235 (235) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 1.885ms - TotalThreadsUserTime: 551.787ms - TotalThreadsVoluntaryContextSwitches: 34 (34) Fragment Instance Lifecycle Timings: - ExecTime: 70.396ms - ExecTreeExecTime: 69.419ms - OpenTime: 1m - ExecTreeOpenTime: 58s131ms - PrepareTime: 915.566us - ExecTreePrepareTime: 549.711us KrpcDataStreamSender (dst_id=158):(Total: 1.049ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 43.621us - TotalBytesSent: 707.00 B (707) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=66):(Total: 58s201ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 3.00 MB (3144832) - RowsReturned: 30 (30) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 311.813us - HTResizeTime: 177.211us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 741.677us Buffer pool: - AllocTime: 27.032us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 14.428us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 7.80K (7796) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=65):(Total: 58s198ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 866.12 KB (886912) - ProbeRows: 7.80K (7798) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 483.147us - RowsReturned: 7.80K (7796) - RowsReturnedRate: 133.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=64):(Total: 58s197ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 359.69K (359692) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 10.846ms - RowsReturned: 7.80K (7798) - RowsReturnedRate: 133.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=61):(Total: 58s183ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.32 MB (3479738) - BytesReadDataNodeCache: 0 - BytesReadLocal: 3.32 MB (3479738) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.32 MB (3479738) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 521.650us - MaterializeTupleTime: 57.306ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 56 (56) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.91 MB (9337779) - PerReadThreadRawHdfsThroughput: 1.66 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 359.69K (359692) - RowsReturned: 359.69K (359692) - RowsReturnedRate: 6.17 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.888ms - TotalRawHdfsOpenFileTime: 18.697us - TotalRawHdfsReadTime: 1.705ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 38.819us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 5.05 MB (5292032) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.38 MB (8781824) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.92 MB (5160960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.680us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 32 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 359.69K (359692) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 359.69K (359692) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F38: Instance 50467cb8e73eeac4:853461b40000002d (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.120 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 1s651ms (1s651ms) - Open Finished: 1m1s (1m) - First Batch Produced: 1m1s (133.332ms) - First Batch Sent: 1m1s (3.372us) - ExecInternal Finished: 1m1s (1.588ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 13.16 MB (13796714) - PeakReservation: 10.75 MB (11272192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 610.982us - TotalStorageWaitTime: 3.140ms - TotalThreadsInvoluntaryContextSwitches: 273 (273) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 617.230ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 134.824ms - ExecTreeExecTime: 133.819ms - OpenTime: 1m - ExecTreeOpenTime: 58s195ms - PrepareTime: 847.236us - ExecTreePrepareTime: 501.107us KrpcDataStreamSender (dst_id=158):(Total: 1.083ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 158.21 KB/sec ; Min: 61.69 KB/sec ; Max: 295.80 KB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 370.219us ; Min: 239.317us ; Max: 533.492us ; Number of samples: 23) - RpcRecvrTime: (Avg: -77485.000ns ; Min: -182444.000ns ; Max: -29241.000ns ; Number of samples: 23) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 48.475us - TotalBytesSent: 703.00 B (703) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=66):(Total: 58s329ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m1s - Open Started: 3s478ms (3s478ms) - Open Finished: 1m1s (58s195ms) - First Batch Requested: 1m1s (23.467us) - First Batch Returned: 1m1s (133.327ms) - Last Batch Returned: 1m1s (588.545us) - Closed: 1m1s (60.754us) - PeakMemoryUsage: 2.95 MB (3092608) - RowsReturned: 30 (30) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 306.270us - HTResizeTime: 153.164us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 1.068ms Buffer pool: - AllocTime: 28.041us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.802us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 14.18K (14179) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=65):(Total: 58s324ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m1s - Open Started: 3s478ms (3s478ms) - Waiting for builder: 1m1s (58s187ms) - Initial build available: 1m1s (4.215us) - Open Finished: 1m1s (7.086ms) - First Batch Requested: 1m1s (629.929us) - First Batch Returned: 1m1s (12.868ms) - Last Batch Returned: 1m1s (118.385ms) - Closed: 1m1s (1.989ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 968.12 KB (991360) - ProbeRows: 14.18K (14182) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 880.249us - RowsReturned: 14.18K (14179) - RowsReturnedRate: 243.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=64):(Total: 58s323ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m1s - Open Started: 3s478ms (3s478ms) - Waiting for builder: 1m1s (58s172ms) - Initial build available: 1m1s (4.011us) - Open Finished: 1m1s (14.992ms) - First Batch Requested: 1m1s (133.704us) - First Batch Returned: 1m1s (7.012ms) - Last Batch Returned: 1m1s (131.686ms) - Closed: 1m1s (2.183ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 657.44K (657444) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 19.785ms - RowsReturned: 14.18K (14182) - RowsReturnedRate: 243.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=61):(Total: 58s298ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [32, 34]), waited for 58s172ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m1s - Closed: 1m1s (1m1s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 711.698us ; Min: 711.698us ; Max: 711.698us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.37 MB (1432701) ; Min: 161.78 KB (165666) ; Max: 2.42 MB (2537281) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 54.87 KB (56184) ; Min: 10.80 KB (11060) ; Max: 64.10 KB (65643) ; Number of samples: 102) - ParquetRowGroupActualReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.37 MB (1432544) ; Min: 161.74 KB (165624) ; Max: 2.42 MB (2537003) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 54.86 KB (56178) ; Min: 10.80 KB (11055) ; Max: 64.11 KB (65646) ; Number of samples: 102) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.88 MB (6163182) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.88 MB (6163182) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.88 MB (6163182) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 951.249us - MaterializeTupleTime: 107.099ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 102 (102) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.29 MB (9740981) - PerReadThreadRawHdfsThroughput: 2.75 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 657.44K (657444) - RowsReturned: 657.44K (657444) - RowsReturnedRate: 11.28 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 3.140ms - TotalRawHdfsOpenFileTime: 19.688us - TotalRawHdfsReadTime: 2.087ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 67.367us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.88 MB (9306112) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.75 MB (9175040) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.75 MB (9175040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 62.184us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 32 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 657.44K (657444) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 657.44K (657444) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b40000002e (host=tarmstrong-Precision-7540:22000):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:12.899 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 1s617ms (1s617ms) - Open Finished: 1m1s (1m) - First Batch Produced: 1m1s (4.516ms) - First Batch Sent: 1m1s (3.156us) - ExecInternal Finished: 1m1s (1.509ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB, 8.12 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 11.63 MB (12194374) - PeakReservation: 10.00 MB (10485760) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 555.862us - TotalStorageWaitTime: 637.162us - TotalThreadsInvoluntaryContextSwitches: 197 (197) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 3.771ms - TotalThreadsUserTime: 486.345ms - TotalThreadsVoluntaryContextSwitches: 43 (43) Fragment Instance Lifecycle Timings: - ExecTime: 5.968ms - ExecTreeExecTime: 5.019ms - OpenTime: 1m - ExecTreeOpenTime: 58s067ms - PrepareTime: 983.897us - ExecTreePrepareTime: 598.316us KrpcDataStreamSender (dst_id=158):(Total: 1.014ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 179.03 KB/sec ; Min: 55.81 KB/sec ; Max: 291.89 KB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 334.618us ; Min: 190.066us ; Max: 446.942us ; Number of samples: 23) - RpcRecvrTime: (Avg: -51524.000ns ; Min: -147911.000ns ; Max: -17363.000ns ; Number of samples: 23) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 38.768us - TotalBytesSent: 712.00 B (712) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=66):(Total: 58s072ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m1s - Open Started: 3s566ms (3s566ms) - Open Finished: 1m1s (58s067ms) - First Batch Requested: 1m1s (40.223us) - First Batch Returned: 1m1s (4.494ms) - Last Batch Returned: 1m1s (625.760us) - Closed: 1m1s (48.293us) - PeakMemoryUsage: 3.05 MB (3197056) - RowsReturned: 30 (30) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 317.357us - HTResizeTime: 201.259us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 414.650us Buffer pool: - AllocTime: 26.024us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.054us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.41K (1414) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=65):(Total: 58s071ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m1s - Open Started: 3s566ms (3s566ms) - Waiting for builder: 1m1s (58s059ms) - Initial build available: 1m1s (5.298us) - Open Finished: 1m1s (7.089ms) - First Batch Requested: 1m1s (674.124us) - First Batch Returned: 1m1s (63.053us) - Last Batch Returned: 1m1s (4.229ms) - Closed: 1m1s (147.397us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 764.12 KB (782464) - ProbeRows: 1.41K (1414) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.046us - RowsReturned: 1.41K (1414) - RowsReturnedRate: 24.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=64):(Total: 58s070ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m1s - Open Started: 3s566ms (3s566ms) - Waiting for builder: 1m1s (58s050ms) - Initial build available: 1m1s (5.993us) - Open Finished: 1m1s (8.927ms) - First Batch Requested: 1m1s (110.741us) - First Batch Returned: 1m1s (7.055ms) - Last Batch Returned: 1m1s (4.771ms) - Closed: 1m1s (337.984us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 61.94K (61940) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.908ms - RowsReturned: 1.41K (1414) - RowsReturnedRate: 24.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=61):(Total: 58s067ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [32, 34]), waited for 58s050ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m1s - Closed: 1m1s (1m1s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 445.820us ; Min: 445.820us ; Max: 445.820us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 89.57 KB (91718) ; Min: 15.23 KB (15596) ; Max: 151.01 KB (154639) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 35.83 KB (36687) ; Min: 3.65 KB (3737) ; Max: 64.03 KB (65566) ; Number of samples: 10) - ParquetRowGroupActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 1.09 MB (1146880) ; Min: 1.09 MB (1146880) ; Max: 1.09 MB (1146880) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 89.55 KB (91704) ; Min: 15.22 KB (15588) ; Max: 150.99 KB (154615) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 35.82 KB (36681) ; Min: 3.65 KB (3733) ; Max: 64.02 KB (65559) ; Number of samples: 10) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 777.63 KB (796295) - BytesReadDataNodeCache: 0 - BytesReadLocal: 777.63 KB (796295) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 777.63 KB (796295) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 92.054us - MaterializeTupleTime: 7.513ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.52 MB (8934578) - PerReadThreadRawHdfsThroughput: 573.66 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 61.94K (61940) - RowsReturned: 61.94K (61940) - RowsReturnedRate: 1.07 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 637.162us - TotalRawHdfsOpenFileTime: 17.706us - TotalRawHdfsReadTime: 1.323ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 10.271us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.22 MB (1277952) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.09 MB (1146880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.176us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 32 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 61.94K (61940) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 61.94K (61940) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F73:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m4s max:1m4s mean: 1m4s stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 175.31 KB (179520) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 1.263ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 4 (4) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 8.671ms - TotalThreadsUserTime: 12.938ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 1.384ms - ExecTreeExecTime: 7.907us - OpenTime: 1m1s - ExecTreeOpenTime: 1m1s - PrepareTime: 524.655us - ExecTreePrepareTime: 219.923us KrpcDataStreamSender (dst_id=195):(Total: 1.523ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 31.31 KB (32064) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.780us - TotalBytesSent: 41.00 B (41) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=194):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 18.838us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=193):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 21.356us - PeakMemoryUsage: 120.00 KB (122880) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 33.364us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 120.00 KB (122880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 120.00 KB (122880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 684.00 B (684) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - DeserializeRowBatchTime: 152.643us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 466.00 B (466) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F73: Instance 50467cb8e73eeac4:853461b400000070 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.026 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s623ms (1s623ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (10.100us) - First Batch Sent: 1m3s (31.882us) - ExecInternal Finished: 1m3s (1.394ms) - MemoryUsage (1s000ms): 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB, 43.31 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 175.31 KB (179520) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 1.263ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 4 (4) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 8.671ms - TotalThreadsUserTime: 12.938ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 1.384ms - ExecTreeExecTime: 7.907us - OpenTime: 1m1s - ExecTreeOpenTime: 1m1s - PrepareTime: 524.655us - ExecTreePrepareTime: 219.923us KrpcDataStreamSender (dst_id=195):(Total: 1.523ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Random Partitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 228.72 KB/sec ; Min: 228.72 KB/sec ; Max: 228.72 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 269.262us ; Min: 113.029us ; Max: 1.157ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -49587.000ns ; Min: -124449.000ns ; Max: -20781.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 31.31 KB (32064) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.780us - TotalBytesSent: 41.00 B (41) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=194):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s701ms (1s701ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (21.262us) - First Batch Returned: 1m3s (6.006us) - Last Batch Returned: 1m3s (322.000ns) - Closed: 1m3s (45.820us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: - BuildTime: 18.838us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=193):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s701ms (1s701ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (16.795us) - First Batch Returned: 1m3s (388.481us) - Last Batch Returned: 1m3s (574.000ns) - Closed: 1m3s (75.043us) - ConvertRowBatchTime: 21.356us - PeakMemoryUsage: 120.00 KB (122880) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 33.364us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 120.00 KB (122880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 120.00 KB (122880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 684.00 B (684) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -46624.000ns ; Min: -147491.000ns ; Max: -21902.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 152.643us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 466.00 B (466) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F72:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:417.225ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.01 MB (2110874) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 500.846us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 23 (23) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 342.583us - TotalThreadsUserTime: 49.593ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 588.839us - ExecTreeExecTime: 7.508us - OpenTime: 1m1s - ExecTreeOpenTime: 1m1s - PrepareTime: 980.091us - ExecTreePrepareTime: 787.762us KrpcDataStreamSender (dst_id=193):(Total: 603.055us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.581us - TotalBytesSent: 38.00 B (38) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 5.343us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 52.905us - GetResultsTime: 87.867us - HTResizeTime: 2.092us - LargestPartitionPercent: 55 (55) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 27.572us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 453.33 KB (464213) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 453.33 KB (464213) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.704us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.16K (3157) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 8.454us - PeakMemoryUsage: 28.67 KB (29354) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 21.040us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 40.00 KB (40960) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 28.67 KB (29354) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 28.67 KB (29354) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 282.00 B (282) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - DeserializeRowBatchTime: 55.913us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 177.00 B (177) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F72: Instance 50467cb8e73eeac4:853461b400000065 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.113 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 411.856ms (411.856ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (10.350us) - First Batch Sent: 1m3s (26.250us) - ExecInternal Finished: 1m3s (380.648us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.03 MB (2130672) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 251.979us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 125 (125) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 189.132ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 384.880us - ExecTreeExecTime: 8.161us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 456.497us - ExecTreePrepareTime: 303.185us KrpcDataStreamSender (dst_id=193):(Total: 349.400us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 169.02 KB/sec ; Min: 169.02 KB/sec ; Max: 169.02 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 216.037us ; Min: 195.183us ; Max: 236.892us ; Number of samples: 2) - RpcRecvrTime: (Avg: -40721.000ns ; Min: -49743.000ns ; Max: -31700.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.562us - TotalBytesSent: 41.00 B (41) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (21.611us) - First Batch Returned: 1m3s (6.136us) - Last Batch Returned: 1m3s (355.000ns) - Closed: 1m3s (94.246us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 11.510us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (17.285us) - First Batch Returned: 1m3s (33.846us) - Last Batch Returned: 1m3s (533.965us) - Closed: 1m3s (99.565us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 10 (10) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 135.822us - GetResultsTime: 224.481us - HTResizeTime: 2.122us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 10 (10) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 22.092us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 9.22K (9216) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.234ms) - First Batch Returned: 1m3s (5.810ms) - Last Batch Returned: 1m3s (745.000ns) - Closed: 1m3s (180.786us) - ConvertRowBatchTime: 18.193us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 10 (10) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 15.079us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 48.00 KB (49152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 48.00 KB (49152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 844.00 B (844) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -45882.000ns ; Min: -95101.000ns ; Max: -28416.000ns ; Number of samples: 5) - DeserializeRowBatchTime: 77.383us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 515.00 B (515) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000064 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.114 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 411.856ms (411.856ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (9.990us) - First Batch Sent: 1m3s (33.996us) - ExecInternal Finished: 1m3s (436.768us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.00 MB (2097904) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 368.992us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.814ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 455.026us - ExecTreeExecTime: 7.730us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 537.723us - ExecTreePrepareTime: 324.447us KrpcDataStreamSender (dst_id=193):(Total: 473.026us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 133.38 KB/sec ; Min: 133.38 KB/sec ; Max: 133.38 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 257.627us ; Min: 241.622us ; Max: 273.632us ; Number of samples: 2) - RpcRecvrTime: (Avg: -79146.000ns ; Min: -100096.000ns ; Max: -58196.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.322us - TotalBytesSent: 33.00 B (33) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (23.620us) - First Batch Returned: 1m3s (5.813us) - Last Batch Returned: 1m3s (309.000ns) - Closed: 1m3s (50.844us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 2.557us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (22.794us) - First Batch Returned: 1m3s (37.302us) - Last Batch Returned: 1m3s (37.637us) - Closed: 1m3s (74.425us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 24.027us - GetResultsTime: 26.470us - HTResizeTime: 2.428us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 27.634us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.456us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (996.048us) - First Batch Returned: 1m3s (4.029ms) - Last Batch Returned: 1m3s (1.120us) - Closed: 1m3s (63.988us) - ConvertRowBatchTime: 3.637us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.429us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -35894.000ns ; Min: -35894.000ns ; Max: -35894.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.347us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 51.00 B (51) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000066 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.113 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 455.045ms (455.045ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (6.968us) - First Batch Sent: 1m3s (24.639us) - ExecInternal Finished: 1m3s (295.892us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.02 MB (2114288) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 229.232us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.121ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 296.980us - ExecTreeExecTime: 5.570us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 516.948us - ExecTreePrepareTime: 335.826us KrpcDataStreamSender (dst_id=193):(Total: 325.449us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 211.29 KB/sec ; Min: 211.29 KB/sec ; Max: 211.29 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 168.633us ; Min: 157.010us ; Max: 180.256us ; Number of samples: 2) - RpcRecvrTime: (Avg: -35968.000ns ; Min: -41967.000ns ; Max: -29970.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.157us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (17.567us) - First Batch Returned: 1m3s (4.303us) - Last Batch Returned: 1m3s (250.000ns) - Closed: 1m3s (42.333us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 8.042us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (15.778us) - First Batch Returned: 1m3s (36.658us) - Last Batch Returned: 1m3s (419.044us) - Closed: 1m3s (59.747us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 81.663us - GetResultsTime: 180.765us - HTResizeTime: 1.980us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.417us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.104ms) - First Batch Returned: 1m3s (5.333ms) - Last Batch Returned: 1m3s (759.000ns) - Closed: 1m3s (129.118us) - ConvertRowBatchTime: 11.098us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 5 (5) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 160.353us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 424.00 B (424) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -895065.000ns ; Min: -2601952.000ns ; Max: -23997.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 196.541us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 273.00 B (273) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000067 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.115 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 455.044ms (455.044ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (9.924us) - First Batch Sent: 1m3s (31.704us) - ExecInternal Finished: 1m3s (456.004us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.02 MB (2114288) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 379.317us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.980ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 464.625us - ExecTreeExecTime: 7.425us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 475.910us - ExecTreePrepareTime: 314.744us KrpcDataStreamSender (dst_id=193):(Total: 491.666us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 92.86 KB/sec ; Min: 92.86 KB/sec ; Max: 92.86 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 365.835us ; Min: 321.545us ; Max: 410.125us ; Number of samples: 2) - RpcRecvrTime: (Avg: -96250.000ns ; Min: -163877.000ns ; Max: -28623.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.234us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (22.624us) - First Batch Returned: 1m3s (5.592us) - Last Batch Returned: 1m3s (331.000ns) - Closed: 1m3s (48.079us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.968us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (16.024us) - First Batch Returned: 1m3s (36.805us) - Last Batch Returned: 1m3s (247.481us) - Closed: 1m3s (79.327us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 65.263us - GetResultsTime: 110.179us - HTResizeTime: 2.118us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 178.049us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1s293ms (1s293ms) - Open Finished: 1m3s (1m1s) - First Batch Requested: 1m3s (1.245ms) - First Batch Returned: 1m3s (6.543ms) - Last Batch Returned: 1m3s (667.000ns) - Closed: 1m3s (105.463us) - ConvertRowBatchTime: 10.612us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 4 (4) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.192us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 336.00 B (336) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -485253.000ns ; Min: -1372471.000ns ; Max: -26407.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 52.894us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 216.00 B (216) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000006c (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.123 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s582ms (1s582ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (10.518us) - First Batch Sent: 1m3s (60.841us) - ExecInternal Finished: 1m3s (1.045ms) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.00 MB (2097904) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 984.415us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 94 (94) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 3.757ms - TotalThreadsUserTime: 189.962ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 1.098ms - ExecTreeExecTime: 8.597us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 574.453us - ExecTreePrepareTime: 373.726us KrpcDataStreamSender (dst_id=193):(Total: 1.114ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 40.95 KB/sec ; Min: 40.95 KB/sec ; Max: 40.95 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 562.985us ; Min: 195.924us ; Max: 930.046us ; Number of samples: 2) - RpcRecvrTime: (Avg: -30337.000ns ; Min: -39227.000ns ; Max: -21447.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.567us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (29.022us) - First Batch Returned: 1m3s (6.337us) - Last Batch Returned: 1m3s (381.000ns) - Closed: 1m3s (76.660us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.408us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (15.793us) - First Batch Returned: 1m3s (32.506us) - Last Batch Returned: 1m3s (144.850us) - Closed: 1m3s (75.590us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 32.735us - GetResultsTime: 59.997us - HTResizeTime: 1.193us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.129us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.075ms) - First Batch Returned: 1m3s (14.376us) - Last Batch Returned: 1m3s (427.000ns) - Closed: 1m3s (72.861us) - ConvertRowBatchTime: 3.692us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.806us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 168.00 B (168) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -39677.000ns ; Min: -39677.000ns ; Max: -39677.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.043us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 102.00 B (102) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000006d (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.123 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s591ms (1s591ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.576us) - First Batch Sent: 1m3s (26.306us) - ExecInternal Finished: 1m3s (501.356us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.02 MB (2122480) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 434.179us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.107ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 508.743us - ExecTreeExecTime: 7.867us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 474.606us - ExecTreePrepareTime: 305.391us KrpcDataStreamSender (dst_id=193):(Total: 524.916us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 113.79 KB/sec ; Min: 113.79 KB/sec ; Max: 113.79 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 266.623us ; Min: 181.368us ; Max: 351.878us ; Number of samples: 2) - RpcRecvrTime: (Avg: -29217.000ns ; Min: -37307.000ns ; Max: -21127.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.976us - TotalBytesSent: 41.00 B (41) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (21.886us) - First Batch Returned: 1m3s (6.021us) - Last Batch Returned: 1m3s (294.000ns) - Closed: 1m3s (46.751us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 7.348us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (16.420us) - First Batch Returned: 1m3s (41.181us) - Last Batch Returned: 1m3s (256.730us) - Closed: 1m3s (78.926us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 50.197us - GetResultsTime: 109.948us - HTResizeTime: 2.306us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.569us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.191ms) - First Batch Returned: 1m3s (8.532ms) - Last Batch Returned: 1m3s (669.000ns) - Closed: 1m3s (96.199us) - ConvertRowBatchTime: 9.150us - PeakMemoryUsage: 40.00 KB (40960) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 12.621us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 40.00 KB (40960) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 40.00 KB (40960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 258.00 B (258) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -58184.000ns ; Min: -85997.000ns ; Max: -42436.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 73.328us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000006e (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s614ms (1s614ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (7.505us) - First Batch Sent: 1m3s (33.524us) - ExecInternal Finished: 1m3s (1.351ms) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.02 MB (2122480) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 1.278ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.564ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 1.365ms - ExecTreeExecTime: 5.976us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 477.545us - ExecTreePrepareTime: 300.619us KrpcDataStreamSender (dst_id=193):(Total: 1.379ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 31.65 KB/sec ; Min: 31.65 KB/sec ; Max: 31.65 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 703.889us ; Min: 204.487us ; Max: 1.203ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -33155.000ns ; Min: -43892.000ns ; Max: -22419.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.725us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (17.802us) - First Batch Returned: 1m3s (4.519us) - Last Batch Returned: 1m3s (288.000ns) - Closed: 1m3s (60.694us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 6.408us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (14.627us) - First Batch Returned: 1m3s (28.658us) - Last Batch Returned: 1m3s (253.457us) - Closed: 1m3s (67.848us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 70.061us - GetResultsTime: 112.608us - HTResizeTime: 2.536us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.132us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.186ms) - First Batch Returned: 1m3s (7.944ms) - Last Batch Returned: 1m3s (700.000ns) - Closed: 1m3s (109.225us) - ConvertRowBatchTime: 13.695us - PeakMemoryUsage: 40.00 KB (40960) - RowsReturned: 5 (5) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 14.030us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 64.00 KB (65536) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 40.00 KB (40960) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 40.00 KB (40960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 424.00 B (424) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -46090.000ns ; Min: -90324.000ns ; Max: -28016.000ns ; Number of samples: 4) - DeserializeRowBatchTime: 71.740us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 264.00 B (264) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000006f (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s648ms (1s648ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.601us) - First Batch Sent: 1m3s (25.023us) - ExecInternal Finished: 1m3s (428.278us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.01 MB (2106096) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 351.322us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.079ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 415.319us - ExecTreeExecTime: 7.581us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 5.013ms - ExecTreePrepareTime: 4.810ms KrpcDataStreamSender (dst_id=193):(Total: 441.496us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 147.84 KB/sec ; Min: 147.84 KB/sec ; Max: 147.84 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 222.673us ; Min: 174.522us ; Max: 270.824us ; Number of samples: 2) - RpcRecvrTime: (Avg: -28585.000ns ; Min: -36372.000ns ; Max: -20798.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 7.735us - TotalBytesSent: 41.00 B (41) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (22.384us) - First Batch Returned: 1m3s (5.629us) - Last Batch Returned: 1m3s (298.000ns) - Closed: 1m3s (41.986us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 2.879us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (17.804us) - First Batch Returned: 1m3s (40.246us) - Last Batch Returned: 1m3s (41.702us) - Closed: 1m3s (93.523us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 26.817us - GetResultsTime: 27.342us - HTResizeTime: 1.914us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.099us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s387ms (2s387ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.262ms) - First Batch Returned: 1m3s (7.193ms) - Last Batch Returned: 1m3s (647.000ns) - Closed: 1m3s (68.502us) - ConvertRowBatchTime: 7.267us - PeakMemoryUsage: 24.00 KB (24576) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 7.497us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 24.00 KB (24576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 24.00 KB (24576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 174.00 B (174) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -491058.000ns ; Min: -934454.000ns ; Max: -47663.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 34.119us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 111.00 B (111) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000068 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s653ms (1s653ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (11.716us) - First Batch Sent: 1m3s (31.302us) - ExecInternal Finished: 1m3s (542.541us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.02 MB (2114288) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 466.928us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.280ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 551.072us - ExecTreeExecTime: 9.751us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 579.123us - ExecTreePrepareTime: 361.935us KrpcDataStreamSender (dst_id=193):(Total: 585.935us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 83.65 KB/sec ; Min: 83.65 KB/sec ; Max: 83.65 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 371.980us ; Min: 288.644us ; Max: 455.317us ; Number of samples: 2) - RpcRecvrTime: (Avg: -81595.000ns ; Min: -133501.000ns ; Max: -29690.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.474us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (21.196us) - First Batch Returned: 1m3s (7.858us) - Last Batch Returned: 1m3s (373.000ns) - Closed: 1m3s (48.345us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.538us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (19.419us) - First Batch Returned: 1m3s (39.139us) - Last Batch Returned: 1m3s (192.712us) - Closed: 1m3s (78.092us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 54.798us - GetResultsTime: 90.468us - HTResizeTime: 1.504us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.309us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.201ms) - First Batch Returned: 1m3s (7.821ms) - Last Batch Returned: 1m3s (738.000ns) - Closed: 1m3s (100.042us) - ConvertRowBatchTime: 9.693us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 9.301us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -32647.000ns ; Min: -42091.000ns ; Max: -27820.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 43.951us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000069 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.033 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s653ms (1s653ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.691us) - First Batch Sent: 1m3s (26.450us) - ExecInternal Finished: 1m3s (549.376us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.02 MB (2114288) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 479.140us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 63 (63) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 189.665ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 551.732us - ExecTreeExecTime: 7.386us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 551.027us - ExecTreePrepareTime: 358.293us KrpcDataStreamSender (dst_id=193):(Total: 578.161us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 150.86 KB/sec ; Min: 150.86 KB/sec ; Max: 150.86 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 229.634us ; Min: 206.810us ; Max: 252.459us ; Number of samples: 2) - RpcRecvrTime: (Avg: -41153.000ns ; Min: -56324.000ns ; Max: -25983.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.592us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (22.698us) - First Batch Returned: 1m3s (5.620us) - Last Batch Returned: 1m3s (317.000ns) - Closed: 1m3s (41.521us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.907us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (15.669us) - First Batch Returned: 1m3s (33.937us) - Last Batch Returned: 1m3s (98.298us) - Closed: 1m3s (87.214us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 40.582us - GetResultsTime: 52.572us - HTResizeTime: 2.008us - LargestPartitionPercent: 66 (66) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.752us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.346ms) - First Batch Returned: 1m3s (4.508ms) - Last Batch Returned: 1m3s (707.000ns) - Closed: 1m3s (82.497us) - ConvertRowBatchTime: 8.355us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.669us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 252.00 B (252) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -28871.000ns ; Min: -31607.000ns ; Max: -25993.000ns ; Number of samples: 3) - DeserializeRowBatchTime: 46.922us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 165.00 B (165) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000006a (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.026 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s679ms (1s679ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (7.495us) - First Batch Sent: 1m3s (25.056us) - ExecInternal Finished: 1m3s (500.993us) - MemoryUsage (1s000ms): 20.37 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.00 MB (2097904) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 420.997us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.831ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 497.786us - ExecTreeExecTime: 6.007us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 1.561ms - ExecTreePrepareTime: 1.317ms KrpcDataStreamSender (dst_id=193):(Total: 517.609us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 132.39 KB/sec ; Min: 132.39 KB/sec ; Max: 132.39 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 280.433us ; Min: 273.178us ; Max: 287.689us ; Number of samples: 2) - RpcRecvrTime: (Avg: -44275.000ns ; Min: -55973.000ns ; Max: -32578.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.577us - TotalBytesSent: 39.00 B (39) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (18.208us) - First Batch Returned: 1m3s (4.503us) - Last Batch Returned: 1m3s (235.000ns) - Closed: 1m3s (50.206us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 2.875us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (16.312us) - First Batch Returned: 1m3s (41.496us) - Last Batch Returned: 1m3s (47.343us) - Closed: 1m3s (70.028us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 27.741us - GetResultsTime: 30.327us - HTResizeTime: 2.561us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.339us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.160ms) - First Batch Returned: 1m3s (6.505ms) - Last Batch Returned: 1m3s (1.259us) - Closed: 1m3s (70.956us) - ConvertRowBatchTime: 3.418us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.609us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 84.00 B (84) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -60271.000ns ; Min: -60271.000ns ; Max: -60271.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.608us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 55.00 B (55) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000006b (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.029 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s706ms (1s706ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (10.328us) - First Batch Sent: 1m3s (26.246us) - ExecInternal Finished: 1m3s (469.797us) - MemoryUsage (1s000ms): 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB, 40.73 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.00 MB (2097904) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 364.781us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 354.000us - TotalThreadsUserTime: 2.584ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 475.993us - ExecTreeExecTime: 8.050us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 542.473us - ExecTreePrepareTime: 347.266us KrpcDataStreamSender (dst_id=193):(Total: 454.817us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 106.49 KB/sec ; Min: 106.49 KB/sec ; Max: 106.49 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 264.431us ; Min: 189.556us ; Max: 339.307us ; Number of samples: 2) - RpcRecvrTime: (Avg: -41345.000ns ; Min: -54755.000ns ; Max: -27935.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 2.61 KB (2672) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.053us - TotalBytesSent: 37.00 B (37) - UncompressedRowBatchSize: 57.00 B (57) AGGREGATION_NODE (id=113):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (21.678us) - First Batch Returned: 1m3s (6.176us) - Last Batch Returned: 1m3s (332.000ns) - Closed: 1m3s (80.845us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 2.681us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) AGGREGATION_NODE (id=192):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (16.354us) - First Batch Returned: 1m3s (41.551us) - Last Batch Returned: 1m3s (40.184us) - Closed: 1m3s (82.848us) - PeakMemoryUsage: 1.97 MB (2066560) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 25.156us - GetResultsTime: 29.248us - HTResizeTime: 2.442us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2062464) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.345us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=191):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s455ms (2s455ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.016ms) - First Batch Returned: 1m3s (4.957ms) - Last Batch Returned: 1m3s (738.000ns) - Closed: 1m3s (63.574us) - ConvertRowBatchTime: 2.642us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.895us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 88.00 B (88) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -30780.000ns ; Min: -30780.000ns ; Max: -30780.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.086us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 52.00 B (52) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F71:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:415.955ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.30 MB (4512352) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s977ms - TotalNetworkSendTime: 3.013ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 125 (125) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 1.642ms - TotalThreadsUserTime: 249.248ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 8.995ms - ExecTreeExecTime: 5.682ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s980ms - PrepareTime: 4.586ms - ExecTreePrepareTime: 2.451ms KrpcDataStreamSender (dst_id=191):(Total: 3.386ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 33.62 KB (34432) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.730us - TotalBytesSent: 177.00 B (177) - UncompressedRowBatchSize: 282.00 B (282) AGGREGATION_NODE (id=112):(Total: 58s988ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 69.895us - HTResizeTime: 0.000ns - LargestPartitionPercent: 52 (52) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 44.148us Buffer pool: - AllocTime: 11.686us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 327.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s986ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 4.088ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 145.00 /sec AGGREGATION_NODE (id=178):(Total: 2.871ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 169.00 /sec GroupingAggregator 0: - BuildTime: 9.872us - GetResultsTime: 8.170us - HTResizeTime: 1.165us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046421) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.258us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 277.33 KB (283989) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 277.33 KB (283989) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 685.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 341 (341) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 14.286us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 2.561us - PeakMemoryUsage: 5.33 KB (5461) - RowsReturned: 0 (0) - RowsReturnedRate: 16.74 K/sec Buffer pool: - AllocTime: 1.103us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 5.33 KB (5461) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 5.33 KB (5461) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.33 KB (5461) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 148.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 15.00 B (15) - TotalGetBatchTime: 2.844us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 6.056us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 8.00 B (8) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 3.247ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 2 (2) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.461us - RowsReturned: 2 (2) - RowsReturnedRate: 913.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 2.713ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 1.16 K/sec GroupingAggregator 0: - BuildTime: 33.114us - GetResultsTime: 54.585us - HTResizeTime: 1.095us - LargestPartitionPercent: 24 (24) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2048810) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.395us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 405.33 KB (415061) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 405.33 KB (415061) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 444.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.39K (2389) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 32.402us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 6.820us - PeakMemoryUsage: 29.33 KB (30037) - RowsReturned: 5 (5) - RowsReturnedRate: 145.91 K/sec Buffer pool: - AllocTime: 6.145us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 29.33 KB (30037) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 29.33 KB (30037) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 29.33 KB (30037) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.274us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 225.00 B (225) - TotalGetBatchTime: 10.347us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 36.954us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 118.00 B (118) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s980ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.034us - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s979ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 17.624us - GetResultsTime: 14.031us - HTResizeTime: 1.707us - LargestPartitionPercent: 3 (3) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046762) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.214us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 288.00 KB (294912) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.496us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 512 (512) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s977ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 18.286us - PeakMemoryUsage: 46.00 KB (47104) - RowsReturned: 6 (6) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 19.010us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 80.00 KB (81920) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 46.00 KB (47104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 46.00 KB (47104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.419us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 58s008ms - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 58s977ms - DataWaitTime: 58s977ms Enqueue: - DeserializeRowBatchTime: 96.816us - TotalBatchesEnqueued: 5 (5) - TotalBatchesReceived: 5 (5) - TotalBytesReceived: 154.00 B (154) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F71: Instance 50467cb8e73eeac4:853461b400000058 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.111 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 665.313ms (665.313ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (4.789ms) - First Batch Sent: 1m3s (2.969us) - ExecInternal Finished: 1m3s (6.513ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 2.20 MB, 2.20 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.35 MB (4561280) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 59s150ms - TotalNetworkSendTime: 6.143ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 275 (275) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.842ms - TotalThreadsUserTime: 991.388ms - TotalThreadsVoluntaryContextSwitches: 21 (21) Fragment Instance Lifecycle Timings: - ExecTime: 11.248ms - ExecTreeExecTime: 4.879ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s153ms - PrepareTime: 1.383ms - ExecTreePrepareTime: 997.652us KrpcDataStreamSender (dst_id=191):(Total: 6.443ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 54.60 KB/sec ; Min: 50.23 KB/sec ; Max: 58.98 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 361.400us ; Min: 182.978us ; Max: 1.069ms ; Number of samples: 14) - RpcRecvrTime: (Avg: -57839.000ns ; Min: -168118.000ns ; Max: -27903.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 2 (2) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.923us - TotalBytesSent: 109.00 B (109) - UncompressedRowBatchSize: 170.00 B (170) AGGREGATION_NODE (id=112):(Total: 59s159ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s153ms) - First Batch Requested: 1m3s (17.787us) - First Batch Returned: 1m3s (4.786ms) - Last Batch Returned: 1m3s (117.807us) - Closed: 1m3s (70.764us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 42.960us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 2 (2) - StreamingTime: 46.081us Buffer pool: - AllocTime: 9.335us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 59s157ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s153ms) - First Batch Requested: 1m3s (672.982us) - First Batch Returned: 1m3s (4.100ms) - Last Batch Returned: 1m3s (365.000ns) - Closed: 1m3s (234.763us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 2 (2) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.121ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.622ms) - Initial build available: 1m3s (2.185us) - Open Finished: 1m3s (6.774us) - First Batch Requested: 1m3s (1.032us) - First Batch Returned: 1m3s (7.124us) - Last Batch Returned: 1m3s (306.000ns) - Closed: 1m3s (70.092us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 1.827ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.610ms) - First Batch Requested: 1m3s (6.875us) - First Batch Returned: 1m3s (3.339us) - Last Batch Returned: 1m3s (326.000ns) - Closed: 1m3s (77.801us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.663us - GetResultsTime: 0.000ns - HTResizeTime: 1.322us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.953us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 19.578us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (11.178us) - First Batch Requested: 1m3s (946.177us) - First Batch Returned: 1m3s (6.203us) - Last Batch Returned: 1m3s (350.000ns) - Closed: 1m3s (32.834us) - ConvertRowBatchTime: 2.329us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.295us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.616ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.885ms) - Initial build available: 1m3s (2.614us) - Open Finished: 1m3s (54.863us) - First Batch Requested: 1m3s (1.282us) - First Batch Returned: 1m3s (10.173us) - Last Batch Returned: 1m3s (102.743us) - Closed: 1m3s (95.163us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.095us - RowsReturned: 1 (1) - RowsReturnedRate: 382.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 2.136ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.825ms) - First Batch Requested: 1m3s (71.817us) - First Batch Returned: 1m3s (33.455us) - Last Batch Returned: 1m3s (50.022us) - Closed: 1m3s (141.489us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 468.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 19.697us - GetResultsTime: 24.863us - HTResizeTime: 1.098us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.267us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 32.464us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.486us) - First Batch Requested: 1m3s (1.131ms) - First Batch Returned: 1m3s (26.457us) - Last Batch Returned: 1m3s (387.000ns) - Closed: 1m3s (57.184us) - ConvertRowBatchTime: 5.135us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 61.61 K/sec Buffer pool: - AllocTime: 7.680us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.626us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 11.539us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 25.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -62672.000ns ; Min: -67233.000ns ; Max: -58111.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 42.070us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 59s153ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Waiting for builder: 1m3s (59s152ms) - Initial build available: 1m3s (2.547us) - Open Finished: 1m3s (55.636us) - First Batch Requested: 1m3s (681.961us) - First Batch Returned: 1m3s (8.446us) - Last Batch Returned: 1m3s (114.350us) - Closed: 1m3s (95.473us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.452us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 59s153ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s152ms) - First Batch Requested: 1m3s (74.888us) - First Batch Returned: 1m3s (34.650us) - Last Batch Returned: 1m3s (731.072us) - Closed: 1m3s (161.667us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 36.910us - GetResultsTime: 26.357us - HTResizeTime: 1.849us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 17.762us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.823us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 59s150ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m (56s827ms) - First Batch Requested: 1m (1.845ms) - First Batch Returned: 1m3s (2s322ms) - Last Batch Returned: 1m3s (744.000ns) - Closed: 1m3s (105.872us) - ConvertRowBatchTime: 40.268us - PeakMemoryUsage: 112.00 KB (114688) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 42.639us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 112.00 KB (114688) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 112.00 KB (114688) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 13.927us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180.00 B, 180.00 B - FirstBatchWaitTime: 56s827ms - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 59s150ms - DataWaitTime: 59s150ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104.00 B, 104.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -124190.000ns ; Min: -460168.000ns ; Max: -27118.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 219.642us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000059 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.108 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 691.926ms (691.926ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (5.388ms) - First Batch Sent: 1m3s (2.646us) - ExecInternal Finished: 1m3s (2.521ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 207.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.31 MB (4522112) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 59s152ms - TotalNetworkSendTime: 2.010ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.975ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 7.850ms - ExecTreeExecTime: 5.565ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s155ms - PrepareTime: 1.402ms - ExecTreePrepareTime: 1.010ms KrpcDataStreamSender (dst_id=191):(Total: 2.314ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 160.10 KB/sec ; Min: 105.86 KB/sec ; Max: 252.29 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 988.495us ; Min: 170.865us ; Max: 1.639ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -34917.000ns ; Min: -54050.000ns ; Max: -23675.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.103us - TotalBytesSent: 209.00 B (209) - UncompressedRowBatchSize: 340.00 B (340) AGGREGATION_NODE (id=112):(Total: 59s161ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s155ms) - First Batch Requested: 1m3s (23.005us) - First Batch Returned: 1m3s (5.383ms) - Last Batch Returned: 1m3s (225.094us) - Closed: 1m3s (89.165us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 101.573us - HTResizeTime: 0.000ns - LargestPartitionPercent: 25 (25) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 66.818us Buffer pool: - AllocTime: 14.922us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 59s160ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s154ms) - First Batch Requested: 1m3s (799.840us) - First Batch Returned: 1m3s (4.886ms) - Last Batch Returned: 1m3s (399.000ns) - Closed: 1m3s (112.452us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 4 (4) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.789ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (2.164ms) - Initial build available: 1m3s (2.178us) - Open Finished: 1m3s (39.751us) - First Batch Requested: 1m3s (1.221us) - First Batch Returned: 1m3s (10.657us) - Last Batch Returned: 1m3s (54.249us) - Closed: 1m3s (91.190us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 358.00 /sec AGGREGATION_NODE (id=178):(Total: 2.457ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.155ms) - First Batch Requested: 1m3s (6.825us) - First Batch Returned: 1m3s (36.636us) - Last Batch Returned: 1m3s (61.436us) - Closed: 1m3s (95.050us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 406.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 23.189us - GetResultsTime: 28.041us - HTResizeTime: 1.363us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.419us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 19.793us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.899us) - First Batch Requested: 1m3s (1.181ms) - First Batch Returned: 1m3s (14.513us) - Last Batch Returned: 1m3s (401.000ns) - Closed: 1m3s (59.958us) - ConvertRowBatchTime: 3.237us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 50.52 K/sec Buffer pool: - AllocTime: 4.221us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.778us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 6.036us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -61962.000ns ; Min: -61962.000ns ; Max: -61962.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.515us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.786ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.885ms) - Initial build available: 1m3s (2.794us) - Open Finished: 1m3s (58.292us) - First Batch Requested: 1m3s (1.132us) - First Batch Returned: 1m3s (9.490us) - Last Batch Returned: 1m3s (300.425us) - Closed: 1m3s (108.601us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.197us - RowsReturned: 3 (3) - RowsReturnedRate: 1.08 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 2.235ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.822ms) - First Batch Requested: 1m3s (71.144us) - First Batch Returned: 1m3s (38.149us) - Last Batch Returned: 1m3s (194.660us) - Closed: 1m3s (211.285us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.34 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 42.845us - GetResultsTime: 73.605us - HTResizeTime: 1.093us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.218us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 36.413us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (4.776us) - First Batch Requested: 1m3s (1.172ms) - First Batch Returned: 1m3s (28.720us) - Last Batch Returned: 1m3s (480.000ns) - Closed: 1m3s (79.133us) - ConvertRowBatchTime: 7.919us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 164.78 K/sec Buffer pool: - AllocTime: 7.665us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1000.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 10.370us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 73.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B, 146.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -128891.000ns ; Min: -159773.000ns ; Max: -98009.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 40.257us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 146.00 B (146) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 59s155ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Waiting for builder: 1m3s (59s154ms) - Initial build available: 1m3s (2.434us) - Open Finished: 1m3s (28.670us) - First Batch Requested: 1m3s (814.513us) - First Batch Returned: 1m3s (8.792us) - Last Batch Returned: 1m3s (35.491us) - Closed: 1m3s (88.904us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 311.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 59s154ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s154ms) - First Batch Requested: 1m3s (71.464us) - First Batch Returned: 1m3s (7.234us) - Last Batch Returned: 1m3s (395.000ns) - Closed: 1m3s (940.728us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.681us - GetResultsTime: 0.000ns - HTResizeTime: 1.085us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.143us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 59s152ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s152ms) - First Batch Requested: 1m3s (1.093ms) - First Batch Returned: 1m3s (5.951us) - Last Batch Returned: 1m3s (356.000ns) - Closed: 1m3s (35.703us) - ConvertRowBatchTime: 2.209us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s152ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 59s152ms - DataWaitTime: 59s152ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000005a (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.109 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 715.431ms (715.431ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (3.787ms) - First Batch Sent: 1m3s (2.977us) - ExecInternal Finished: 1m3s (5.569ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 2.20 MB, 2.20 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.35 MB (4561280) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 59s150ms - TotalNetworkSendTime: 4.885ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 8.214ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 9.283ms - ExecTreeExecTime: 4.002ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s153ms - PrepareTime: 10.137ms - ExecTreePrepareTime: 9.752ms KrpcDataStreamSender (dst_id=191):(Total: 5.345ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 27.08 KB/sec ; Min: 9.17 KB/sec ; Max: 32.42 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.565ms ; Min: 318.044us ; Max: 5.855ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -344647.000ns ; Min: -2781233.000ns ; Max: -19857.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 43.62 KB (44672) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 37.643us - TotalBytesSent: 326.00 B (326) - UncompressedRowBatchSize: 506.00 B (506) AGGREGATION_NODE (id=112):(Total: 59s167ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s153ms) - First Batch Requested: 1m3s (20.832us) - First Batch Returned: 1m3s (3.784ms) - Last Batch Returned: 1m3s (273.407us) - Closed: 1m3s (61.523us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 127.128us - HTResizeTime: 0.000ns - LargestPartitionPercent: 16 (16) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 55.465us Buffer pool: - AllocTime: 11.215us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 10 (10) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 640.00 KB (655360) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6.14K (6144) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 59s165ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s152ms) - First Batch Requested: 1m3s (689.367us) - First Batch Returned: 1m3s (3.414ms) - Last Batch Returned: 1m3s (224.000ns) - Closed: 1m3s (133.921us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 6 (6) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 19.096ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.342ms) - Initial build available: 1m3s (2.953us) - Open Finished: 1m3s (7.108us) - First Batch Requested: 1m3s (1.081us) - First Batch Returned: 1m3s (6.461us) - Last Batch Returned: 1m3s (193.000ns) - Closed: 1m3s (80.556us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 10.158ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.332ms) - First Batch Requested: 1m3s (7.908us) - First Batch Returned: 1m3s (2.751us) - Last Batch Returned: 1m3s (248.000ns) - Closed: 1m3s (87.169us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.782us - GetResultsTime: 0.000ns - HTResizeTime: 956.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.302us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 8.376us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.028us) - First Batch Requested: 1m3s (810.327us) - First Batch Returned: 1m3s (4.696us) - Last Batch Returned: 1m3s (272.000ns) - Closed: 1m3s (28.719us) - ConvertRowBatchTime: 1.916us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.018us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.390ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.336ms) - Initial build available: 1m3s (2.633us) - Open Finished: 1m3s (48.818us) - First Batch Requested: 1m3s (855.000ns) - First Batch Returned: 1m3s (8.627us) - Last Batch Returned: 1m3s (280.896us) - Closed: 1m3s (90.208us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 5 (5) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.877us - RowsReturned: 5 (5) - RowsReturnedRate: 2.09 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 1.768ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.274ms) - First Batch Requested: 1m3s (71.666us) - First Batch Returned: 1m3s (29.339us) - Last Batch Returned: 1m3s (195.101us) - Closed: 1m3s (178.825us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 5 (5) - RowsReturnedRate: 2.83 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 54.865us - GetResultsTime: 69.967us - HTResizeTime: 1.121us - LargestPartitionPercent: 20 (20) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5 (5) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.005us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 10 (10) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 37.274us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.031us) - First Batch Requested: 1m3s (749.140us) - First Batch Returned: 1m3s (32.026us) - Last Batch Returned: 1m3s (428.000ns) - Closed: 1m3s (96.003us) - ConvertRowBatchTime: 10.160us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 10 (10) - RowsReturnedRate: 268.28 K/sec Buffer pool: - AllocTime: 8.398us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.215us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 450.00 B (450) - TotalGetBatchTime: 10.341us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 115.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B, 231.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -87864.000ns ; Min: -93684.000ns ; Max: -82045.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 43.371us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 231.00 B (231) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 59s153ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Waiting for builder: 1m3s (59s152ms) - Initial build available: 1m3s (2.017us) - Open Finished: 1m3s (52.270us) - First Batch Requested: 1m3s (703.245us) - First Batch Returned: 1m3s (9.629us) - Last Batch Returned: 1m3s (92.722us) - Closed: 1m3s (80.757us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.614us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 59s153ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s152ms) - First Batch Requested: 1m3s (60.852us) - First Batch Returned: 1m3s (33.888us) - Last Batch Returned: 1m3s (752.361us) - Closed: 1m3s (120.362us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 32.466us - GetResultsTime: 25.330us - HTResizeTime: 3.117us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.057us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 59s150ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m (56s827ms) - First Batch Requested: 1m (1.774ms) - First Batch Returned: 1m3s (2s322ms) - Last Batch Returned: 1m3s (722.000ns) - Closed: 1m3s (91.972us) - ConvertRowBatchTime: 40.016us - PeakMemoryUsage: 120.00 KB (122880) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 46.675us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 120.00 KB (122880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 120.00 KB (122880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.572us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180.00 B, 180.00 B - FirstBatchWaitTime: 56s827ms - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 59s150ms - DataWaitTime: 59s150ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104.00 B, 104.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -122937.000ns ; Min: -393186.000ns ; Max: -33268.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 243.500us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 311.00 B (311) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000005b (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.108 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 729.903ms (729.903ms) - Open Finished: 1m3s (1m2s) - First Batch Produced: 1m3s (4.896ms) - First Batch Sent: 1m3s (2.491us) - ExecInternal Finished: 1m3s (5.470ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 163.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 59s151ms - TotalNetworkSendTime: 4.629ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 6 (6) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.062ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 10.324ms - ExecTreeExecTime: 4.944ms - OpenTime: 1m2s - ExecTreeOpenTime: 59s154ms - PrepareTime: 5.353ms - ExecTreePrepareTime: 4.218ms KrpcDataStreamSender (dst_id=191):(Total: 5.456ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 191.76 KB/sec ; Min: 191.76 KB/sec ; Max: 191.76 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 606.560us ; Min: 117.594us ; Max: 4.484ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -371691.000ns ; Min: -4160624.000ns ; Max: -26403.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.218us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=112):(Total: 59s163ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s154ms) - First Batch Requested: 1m3s (22.218us) - First Batch Returned: 1m3s (4.891ms) - Last Batch Returned: 1m3s (65.935us) - Closed: 1m3s (85.603us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 27.771us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 20.539us Buffer pool: - AllocTime: 8.835us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 59s162ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s154ms) - First Batch Requested: 1m3s (801.223us) - First Batch Returned: 1m3s (4.372ms) - Last Batch Returned: 1m3s (409.000ns) - Closed: 1m3s (72.301us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 6.576ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.843ms) - Initial build available: 1m3s (2.032us) - Open Finished: 1m3s (7.342us) - First Batch Requested: 1m3s (988.000ns) - First Batch Returned: 1m3s (6.487us) - Last Batch Returned: 1m3s (292.000ns) - Closed: 1m3s (86.258us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 4.155ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.833ms) - First Batch Requested: 1m3s (7.121us) - First Batch Returned: 1m3s (3.641us) - Last Batch Returned: 1m3s (300.000ns) - Closed: 1m3s (93.199us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.525us - GetResultsTime: 0.000ns - HTResizeTime: 1.159us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.489us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 9.836us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.227us) - First Batch Requested: 1m3s (1.064ms) - First Batch Returned: 1m3s (5.523us) - Last Batch Returned: 1m3s (339.000ns) - Closed: 1m3s (36.620us) - ConvertRowBatchTime: 2.075us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.141us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.795ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.953ms) - Initial build available: 1m3s (2.619us) - Open Finished: 1m3s (56.716us) - First Batch Requested: 1m3s (1.129us) - First Batch Returned: 1m3s (10.286us) - Last Batch Returned: 1m3s (145.909us) - Closed: 1m3s (92.840us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.493us - RowsReturned: 1 (1) - RowsReturnedRate: 357.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 2.232ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.892ms) - First Batch Requested: 1m3s (72.261us) - First Batch Returned: 1m3s (36.305us) - Last Batch Returned: 1m3s (58.485us) - Closed: 1m3s (184.156us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 447.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 20.472us - GetResultsTime: 29.227us - HTResizeTime: 1.162us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.270us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 33.702us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.190us) - First Batch Requested: 1m3s (1.219ms) - First Batch Returned: 1m3s (27.840us) - Last Batch Returned: 1m3s (452.000ns) - Closed: 1m3s (58.492us) - ConvertRowBatchTime: 5.616us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 59.34 K/sec Buffer pool: - AllocTime: 7.423us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.314us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 10.937us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -74385.000ns ; Min: -111878.000ns ; Max: -36892.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 37.718us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 59s156ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Waiting for builder: 1m3s (59s153ms) - Initial build available: 1m3s (2.711us) - Open Finished: 1m3s (26.742us) - First Batch Requested: 1m3s (816.487us) - First Batch Returned: 1m3s (8.617us) - Last Batch Returned: 1m3s (36.437us) - Closed: 1m3s (93.037us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 363.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 59s155ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s153ms) - First Batch Requested: 1m3s (73.776us) - First Batch Returned: 1m3s (3.948us) - Last Batch Returned: 1m3s (383.000ns) - Closed: 1m3s (947.895us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.651us - GetResultsTime: 0.000ns - HTResizeTime: 1.188us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.966us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 59s151ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s017ms (4s017ms) - Open Finished: 1m3s (59s151ms) - First Batch Requested: 1m3s (1.164ms) - First Batch Returned: 1m3s (6.031us) - Last Batch Returned: 1m3s (369.000ns) - Closed: 1m3s (37.093us) - ConvertRowBatchTime: 2.329us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s151ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 59s151ms - DataWaitTime: 59s151ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000060 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.123 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s511ms (1s511ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.635ms) - First Batch Sent: 1m3s (4.013us) - ExecInternal Finished: 1m3s (1.938ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s940ms - TotalNetworkSendTime: 1.466ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 538 (538) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 8.148ms - TotalThreadsUserTime: 977.717ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Fragment Instance Lifecycle Timings: - ExecTime: 11.470ms - ExecTreeExecTime: 9.757ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s943ms - PrepareTime: 1.514ms - ExecTreePrepareTime: 1.056ms KrpcDataStreamSender (dst_id=191):(Total: 1.783ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 293.51 KB/sec ; Min: 280.40 KB/sec ; Max: 306.05 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 435.317us ; Min: 171.141us ; Max: 1.323ms ; Number of samples: 15) - RpcRecvrTime: (Avg: -123289.000ns ; Min: -655173.000ns ; Max: -27394.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.804us - TotalBytesSent: 165.00 B (165) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=112):(Total: 58s954ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s198ms (4s198ms) - Open Finished: 1m3s (58s943ms) - First Batch Requested: 1m3s (24.151us) - First Batch Returned: 1m3s (9.629ms) - Last Batch Returned: 1m3s (163.423us) - Closed: 1m3s (73.198us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 73.722us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 32.226us Buffer pool: - AllocTime: 9.689us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s952ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s198ms (4s198ms) - Open Finished: 1m3s (58s942ms) - First Batch Requested: 1m3s (842.119us) - First Batch Returned: 1m3s (9.139ms) - Last Batch Returned: 1m3s (223.000ns) - Closed: 1m3s (145.046us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.355ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.799ms) - Initial build available: 1m3s (2.150us) - Open Finished: 1m3s (6.548us) - First Batch Requested: 1m3s (1.034us) - First Batch Returned: 1m3s (6.653us) - Last Batch Returned: 1m3s (275.000ns) - Closed: 1m3s (72.608us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 2.029ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.789ms) - First Batch Requested: 1m3s (7.132us) - First Batch Returned: 1m3s (3.126us) - Last Batch Returned: 1m3s (293.000ns) - Closed: 1m3s (79.874us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.689us - GetResultsTime: 0.000ns - HTResizeTime: 1.164us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.071us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 10.779us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.934us) - First Batch Requested: 1m3s (1.106ms) - First Batch Returned: 1m3s (5.409us) - Last Batch Returned: 1m3s (338.000ns) - Closed: 1m3s (37.234us) - ConvertRowBatchTime: 2.286us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.053us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 7.540ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (6.714ms) - Initial build available: 1m3s (1.993us) - Open Finished: 1m3s (42.940us) - First Batch Requested: 1m3s (960.000ns) - First Batch Returned: 1m3s (10.664us) - Last Batch Returned: 1m3s (239.640us) - Closed: 1m3s (75.911us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.755us - RowsReturned: 3 (3) - RowsReturnedRate: 397.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 7.031ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (6.663ms) - First Batch Requested: 1m3s (57.270us) - First Batch Returned: 1m3s (27.614us) - Last Batch Returned: 1m3s (147.178us) - Closed: 1m3s (173.586us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 426.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 48.012us - GetResultsTime: 59.861us - HTResizeTime: 1.187us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.756us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 38.539us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.672us) - First Batch Requested: 1m3s (6.144ms) - First Batch Returned: 1m3s (33.320us) - Last Batch Returned: 1m3s (454.000ns) - Closed: 1m3s (89.874us) - ConvertRowBatchTime: 8.082us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 155.69 K/sec Buffer pool: - AllocTime: 6.225us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 979.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 14.275us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 70.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -85951.000ns ; Min: -143735.000ns ; Max: -28167.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 38.226us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s943ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Waiting for builder: 1m3s (58s942ms) - Initial build available: 1m3s (2.270us) - Open Finished: 1m3s (25.291us) - First Batch Requested: 1m3s (852.832us) - First Batch Returned: 1m3s (8.452us) - Last Batch Returned: 1m3s (45.426us) - Closed: 1m3s (91.103us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 467.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s942ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s942ms) - First Batch Requested: 1m3s (73.266us) - First Batch Returned: 1m3s (4.062us) - Last Batch Returned: 1m3s (312.000ns) - Closed: 1m3s (990.489us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.787us - GetResultsTime: 0.000ns - HTResizeTime: 1.188us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.579us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s940ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s940ms) - First Batch Requested: 1m3s (1.143ms) - First Batch Returned: 1m3s (6.445us) - Last Batch Returned: 1m3s (361.000ns) - Closed: 1m3s (40.182us) - ConvertRowBatchTime: 2.728us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s940ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s940ms - DataWaitTime: 58s940ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000061 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.126 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s523ms (1s523ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (5.303ms) - First Batch Sent: 1m3s (3.075us) - ExecInternal Finished: 1m3s (4.635ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s938ms - TotalNetworkSendTime: 4.226ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.018ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 9.894ms - ExecTreeExecTime: 5.439ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s941ms - PrepareTime: 1.448ms - ExecTreePrepareTime: 1.004ms KrpcDataStreamSender (dst_id=191):(Total: 4.508ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 35.44 KB/sec ; Min: 35.44 KB/sec ; Max: 35.44 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 544.585us ; Min: 191.105us ; Max: 4.023ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -41212.000ns ; Min: -117842.000ns ; Max: -24755.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.118us - TotalBytesSent: 146.00 B (146) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=112):(Total: 58s948ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s198ms (4s198ms) - Open Finished: 1m3s (58s941ms) - First Batch Requested: 1m3s (24.944us) - First Batch Returned: 1m3s (5.299ms) - Last Batch Returned: 1m3s (172.040us) - Closed: 1m3s (69.550us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 78.000us - HTResizeTime: 0.000ns - LargestPartitionPercent: 33 (33) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 48.804us Buffer pool: - AllocTime: 13.281us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s946ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s198ms (4s198ms) - Open Finished: 1m3s (58s940ms) - First Batch Requested: 1m3s (817.018us) - First Batch Returned: 1m3s (4.549ms) - Last Batch Returned: 1m3s (421.000ns) - Closed: 1m3s (102.965us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.370ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.824ms) - Initial build available: 1m3s (2.224us) - Open Finished: 1m3s (7.322us) - First Batch Requested: 1m3s (845.000ns) - First Batch Returned: 1m3s (6.170us) - Last Batch Returned: 1m3s (282.000ns) - Closed: 1m3s (74.916us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 2.052ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.814ms) - First Batch Requested: 1m3s (6.877us) - First Batch Returned: 1m3s (3.580us) - Last Batch Returned: 1m3s (331.000ns) - Closed: 1m3s (81.694us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.673us - GetResultsTime: 0.000ns - HTResizeTime: 1.073us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.508us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 11.965us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.609us) - First Batch Requested: 1m3s (1.078ms) - First Batch Returned: 1m3s (5.716us) - Last Batch Returned: 1m3s (319.000ns) - Closed: 1m3s (37.703us) - ConvertRowBatchTime: 2.203us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.047us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.614ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.773ms) - Initial build available: 1m3s (2.546us) - Open Finished: 1m3s (53.191us) - First Batch Requested: 1m3s (1.224us) - First Batch Returned: 1m3s (10.406us) - Last Batch Returned: 1m3s (310.368us) - Closed: 1m3s (315.046us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 4.054us - RowsReturned: 3 (3) - RowsReturnedRate: 1.15 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 2.109ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.713ms) - First Batch Requested: 1m3s (69.532us) - First Batch Returned: 1m3s (32.884us) - Last Batch Returned: 1m3s (209.117us) - Closed: 1m3s (417.162us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.42 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 44.205us - GetResultsTime: 78.309us - HTResizeTime: 1.169us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.950us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 35.098us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.345us) - First Batch Requested: 1m3s (1.083ms) - First Batch Returned: 1m3s (28.865us) - Last Batch Returned: 1m3s (423.000ns) - Closed: 1m3s (83.016us) - ConvertRowBatchTime: 7.839us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 170.95 K/sec Buffer pool: - AllocTime: 5.969us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.825us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 10.880us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 70.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -97398.000ns ; Min: -167979.000ns ; Max: -26818.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 37.741us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s941ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Waiting for builder: 1m3s (58s940ms) - Initial build available: 1m3s (2.497us) - Open Finished: 1m3s (29.953us) - First Batch Requested: 1m3s (832.111us) - First Batch Returned: 1m3s (8.597us) - Last Batch Returned: 1m3s (39.312us) - Closed: 1m3s (96.043us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 577.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s941ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s940ms) - First Batch Requested: 1m3s (77.101us) - First Batch Returned: 1m3s (3.632us) - Last Batch Returned: 1m3s (353.000ns) - Closed: 1m3s (971.138us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.845us - GetResultsTime: 0.000ns - HTResizeTime: 1.217us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.698us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s938ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s938ms) - First Batch Requested: 1m3s (1.226ms) - First Batch Returned: 1m3s (6.302us) - Last Batch Returned: 1m3s (305.000ns) - Closed: 1m3s (44.003us) - ConvertRowBatchTime: 2.220us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s938ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s938ms - DataWaitTime: 58s938ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000062 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.124 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s527ms (1s527ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (4.007ms) - First Batch Sent: 1m3s (2.303us) - ExecInternal Finished: 1m3s (1.000ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 58s945ms - TotalNetworkSendTime: 704.375us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 8.497ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 4.970ms - ExecTreeExecTime: 4.090ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s948ms - PrepareTime: 1.498ms - ExecTreePrepareTime: 1.093ms KrpcDataStreamSender (dst_id=191):(Total: 950.948us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 388.81 KB/sec ; Min: 262.20 KB/sec ; Max: 515.42 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 252.416us ; Min: 164.916us ; Max: 568.778us ; Number of samples: 14) - RpcRecvrTime: (Avg: -58294.000ns ; Min: -412258.000ns ; Max: -18763.000ns ; Number of samples: 14) - EosSent: 12 (12) - PeakMemoryUsage: 31.62 KB (32384) - RowsSent: 3 (3) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.235us - TotalBytesSent: 161.00 B (161) - UncompressedRowBatchSize: 252.00 B (252) AGGREGATION_NODE (id=112):(Total: 58s953ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s948ms) - First Batch Requested: 1m3s (22.516us) - First Batch Returned: 1m3s (4.003ms) - Last Batch Returned: 1m3s (111.878us) - Closed: 1m3s (49.252us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 44.225us - HTResizeTime: 0.000ns - LargestPartitionPercent: 66 (66) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 3 (3) - StreamingTime: 28.029us Buffer pool: - AllocTime: 10.304us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s951ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s947ms) - First Batch Requested: 1m3s (808.301us) - First Batch Returned: 1m3s (3.622ms) - Last Batch Returned: 1m3s (234.000ns) - Closed: 1m3s (63.556us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 3 (3) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.126ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.524ms) - Initial build available: 1m3s (2.218us) - Open Finished: 1m3s (6.486us) - First Batch Requested: 1m3s (808.000ns) - First Batch Returned: 1m3s (5.501us) - Last Batch Returned: 1m3s (176.000ns) - Closed: 1m3s (74.152us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 1.773ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.513ms) - First Batch Requested: 1m3s (7.033us) - First Batch Returned: 1m3s (3.244us) - Last Batch Returned: 1m3s (231.000ns) - Closed: 1m3s (79.909us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.308us - GetResultsTime: 0.000ns - HTResizeTime: 1.504us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.980us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 9.048us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.441us) - First Batch Requested: 1m3s (939.582us) - First Batch Returned: 1m3s (4.716us) - Last Batch Returned: 1m3s (281.000ns) - Closed: 1m3s (31.766us) - ConvertRowBatchTime: 1.845us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.103us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.248ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.462ms) - Initial build available: 1m3s (2.887us) - Open Finished: 1m3s (71.083us) - First Batch Requested: 1m3s (2.430us) - First Batch Returned: 1m3s (11.915us) - Last Batch Returned: 1m3s (186.792us) - Closed: 1m3s (89.164us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.497us - RowsReturned: 3 (3) - RowsReturnedRate: 1.33 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 1.764ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.405ms) - First Batch Requested: 1m3s (74.588us) - First Batch Returned: 1m3s (45.481us) - Last Batch Returned: 1m3s (131.058us) - Closed: 1m3s (150.780us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.70 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 24.698us - GetResultsTime: 61.116us - HTResizeTime: 896.000ns - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.578us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 29.433us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.300us) - First Batch Requested: 1m3s (878.218us) - First Batch Returned: 1m3s (25.128us) - Last Batch Returned: 1m3s (310.000ns) - Closed: 1m3s (54.430us) - ConvertRowBatchTime: 6.520us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 203.85 K/sec Buffer pool: - AllocTime: 5.754us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 10.273us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 68.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B, 137.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -38887.000ns ; Min: -42781.000ns ; Max: -34994.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 43.862us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 137.00 B (137) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s948ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Waiting for builder: 1m3s (58s947ms) - Initial build available: 1m3s (2.445us) - Open Finished: 1m3s (29.204us) - First Batch Requested: 1m3s (824.991us) - First Batch Returned: 1m3s (9.395us) - Last Batch Returned: 1m3s (37.456us) - Closed: 1m3s (108.882us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 748.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s947ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s947ms) - First Batch Requested: 1m3s (76.632us) - First Batch Returned: 1m3s (3.378us) - Last Batch Returned: 1m3s (264.000ns) - Closed: 1m3s (960.793us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 6.202us - GetResultsTime: 0.000ns - HTResizeTime: 1.115us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.151us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s945ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s945ms) - First Batch Requested: 1m3s (1.148ms) - First Batch Returned: 1m3s (11.459us) - Last Batch Returned: 1m3s (358.000ns) - Closed: 1m3s (57.693us) - ConvertRowBatchTime: 4.370us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s945ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s945ms - DataWaitTime: 58s945ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000063 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.126 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s551ms (1s551ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (4.099ms) - First Batch Sent: 1m3s (2.174us) - ExecInternal Finished: 1m3s (928.355us) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 181.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 2.20 MB, 2.21 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.37 MB (4577664) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 5 (5) - TotalNetworkReceiveTime: 58s944ms - TotalNetworkSendTime: 435.672us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.260ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 4.982ms - ExecTreeExecTime: 4.268ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s948ms - PrepareTime: 1.565ms - ExecTreePrepareTime: 943.706us KrpcDataStreamSender (dst_id=191):(Total: 843.821us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 316.99 KB/sec ; Min: 180.99 KB/sec ; Max: 455.56 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 224.605us ; Min: 165.883us ; Max: 316.802us ; Number of samples: 15) - RpcRecvrTime: (Avg: -36849.000ns ; Min: -70838.000ns ; Max: -23742.000ns ; Number of samples: 15) - EosSent: 12 (12) - PeakMemoryUsage: 35.62 KB (36480) - RowsSent: 5 (5) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.404us - TotalBytesSent: 266.00 B (266) - UncompressedRowBatchSize: 426.00 B (426) AGGREGATION_NODE (id=112):(Total: 58s953ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s948ms) - First Batch Requested: 1m3s (25.834us) - First Batch Returned: 1m3s (4.092ms) - Last Batch Returned: 1m3s (215.731us) - Closed: 1m3s (61.569us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 5 (5) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 99.705us - HTResizeTime: 0.000ns - LargestPartitionPercent: 20 (20) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5 (5) - StreamingTime: 54.792us Buffer pool: - AllocTime: 14.727us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s952ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s947ms) - First Batch Requested: 1m3s (807.024us) - First Batch Returned: 1m3s (3.748ms) - Last Batch Returned: 1m3s (286.000ns) - Closed: 1m3s (98.885us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 5 (5) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.101ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.557ms) - Initial build available: 1m3s (1.650us) - Open Finished: 1m3s (27.146us) - First Batch Requested: 1m3s (853.000ns) - First Batch Returned: 1m3s (8.034us) - Last Batch Returned: 1m3s (37.673us) - Closed: 1m3s (61.700us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 475.00 /sec AGGREGATION_NODE (id=178):(Total: 1.805ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.548ms) - First Batch Requested: 1m3s (5.685us) - First Batch Returned: 1m3s (24.956us) - Last Batch Returned: 1m3s (42.814us) - Closed: 1m3s (64.693us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 553.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 21.612us - GetResultsTime: 18.757us - HTResizeTime: 1.117us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.954us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.364us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 21.865us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.430us) - First Batch Requested: 1m3s (1.049ms) - First Batch Returned: 1m3s (15.941us) - Last Batch Returned: 1m3s (463.000ns) - Closed: 1m3s (52.071us) - ConvertRowBatchTime: 4.059us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 45.73 K/sec Buffer pool: - AllocTime: 3.202us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 7.067us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -44131.000ns ; Min: -44131.000ns ; Max: -44131.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.720us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.228ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.390ms) - Initial build available: 1m3s (1.996us) - Open Finished: 1m3s (80.014us) - First Batch Requested: 1m3s (1.620us) - First Batch Returned: 1m3s (11.332us) - Last Batch Returned: 1m3s (255.123us) - Closed: 1m3s (76.225us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.330us - RowsReturned: 3 (3) - RowsReturnedRate: 1.35 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 1.713ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.344ms) - First Batch Requested: 1m3s (83.518us) - First Batch Returned: 1m3s (34.408us) - Last Batch Returned: 1m3s (169.331us) - Closed: 1m3s (169.976us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.75 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 33.815us - GetResultsTime: 61.013us - HTResizeTime: 964.000ns - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.469us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.538us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 30.289us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.341us) - First Batch Requested: 1m3s (782.317us) - First Batch Returned: 1m3s (25.549us) - Last Batch Returned: 1m3s (410.000ns) - Closed: 1m3s (72.886us) - ConvertRowBatchTime: 6.468us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 198.09 K/sec Buffer pool: - AllocTime: 6.479us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 826.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 9.799us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 73.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B, 147.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -96721.000ns ; Min: -165460.000ns ; Max: -27983.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 52.409us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 147.00 B (147) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s948ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Waiting for builder: 1m3s (58s947ms) - Initial build available: 1m3s (2.788us) - Open Finished: 1m3s (57.296us) - First Batch Requested: 1m3s (824.431us) - First Batch Returned: 1m3s (10.559us) - Last Batch Returned: 1m3s (114.197us) - Closed: 1m3s (87.812us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.872us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s947ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m3s (58s947ms) - First Batch Requested: 1m3s (72.520us) - First Batch Returned: 1m3s (36.919us) - Last Batch Returned: 1m3s (882.063us) - Closed: 1m3s (147.516us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 29.695us - GetResultsTime: 27.258us - HTResizeTime: 1.929us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.055us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.371us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s944ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s199ms (4s199ms) - Open Finished: 1m (56s613ms) - First Batch Requested: 1m (1.934ms) - First Batch Returned: 1m3s (2s330ms) - Last Batch Returned: 1m3s (707.000ns) - Closed: 1m3s (87.834us) - ConvertRowBatchTime: 35.841us - PeakMemoryUsage: 112.00 KB (114688) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 51.705us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 112.00 KB (114688) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 112.00 KB (114688) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.175us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180.00 B, 180.00 B - FirstBatchWaitTime: 56s613ms - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 58s944ms - DataWaitTime: 58s944ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104.00 B, 104.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -60701.000ns ; Min: -145377.000ns ; Max: -32609.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 254.723us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000005c (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.026 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s775ms (1s775ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (5.635ms) - First Batch Sent: 1m3s (9.449us) - ExecInternal Finished: 1m3s (3.151ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 197.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.25 MB (4459520) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 58s838ms - TotalNetworkSendTime: 2.802ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 663 (663) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 7.725ms - TotalThreadsUserTime: 936.970ms - TotalThreadsVoluntaryContextSwitches: 33 (33) Fragment Instance Lifecycle Timings: - ExecTime: 8.749ms - ExecTreeExecTime: 5.697ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s841ms - PrepareTime: 11.786ms - ExecTreePrepareTime: 1.185ms KrpcDataStreamSender (dst_id=191):(Total: 3.089ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 23.72 KB/sec ; Min: 23.72 KB/sec ; Max: 23.72 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 700.559us ; Min: 474.171us ; Max: 2.264ms ; Number of samples: 13) - RpcRecvrTime: (Avg: -35229.000ns ; Min: -85099.000ns ; Max: -24365.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.189us - TotalBytesSent: 55.00 B (55) - UncompressedRowBatchSize: 84.00 B (84) AGGREGATION_NODE (id=112):(Total: 58s848ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s287ms (4s287ms) - Open Finished: 1m3s (58s841ms) - First Batch Requested: 1m3s (22.208us) - First Batch Returned: 1m3s (5.631ms) - Last Batch Returned: 1m3s (71.570us) - Closed: 1m3s (127.026us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 24.556us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 22.743us Buffer pool: - AllocTime: 9.906us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s847ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s287ms (4s287ms) - Open Finished: 1m3s (58s841ms) - First Batch Requested: 1m3s (848.923us) - First Batch Returned: 1m3s (4.976ms) - Last Batch Returned: 1m3s (379.000ns) - Closed: 1m3s (45.140us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.607ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (2.008ms) - Initial build available: 1m3s (2.151us) - Open Finished: 1m3s (7.070us) - First Batch Requested: 1m3s (1.748us) - First Batch Returned: 1m3s (6.420us) - Last Batch Returned: 1m3s (297.000ns) - Closed: 1m3s (78.090us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 2.255ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.996ms) - First Batch Requested: 1m3s (6.102us) - First Batch Returned: 1m3s (3.369us) - Last Batch Returned: 1m3s (304.000ns) - Closed: 1m3s (85.440us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.482us - GetResultsTime: 0.000ns - HTResizeTime: 1.089us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.973us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 10.813us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.474us) - First Batch Requested: 1m3s (1.307ms) - First Batch Returned: 1m3s (5.685us) - Last Batch Returned: 1m3s (439.000ns) - Closed: 1m3s (32.403us) - ConvertRowBatchTime: 2.021us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.158us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.685ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.816ms) - Initial build available: 1m3s (2.558us) - Open Finished: 1m3s (54.845us) - First Batch Requested: 1m3s (1.348us) - First Batch Returned: 1m3s (10.080us) - Last Batch Returned: 1m3s (295.467us) - Closed: 1m3s (519.258us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 977.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 372.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 2.079ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.745ms) - First Batch Requested: 1m3s (70.406us) - First Batch Returned: 1m3s (34.477us) - Last Batch Returned: 1m3s (204.272us) - Closed: 1m3s (614.627us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 480.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 20.431us - GetResultsTime: 26.302us - HTResizeTime: 1.178us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.772us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 32.923us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.858us) - First Batch Requested: 1m3s (1.064ms) - First Batch Returned: 1m3s (27.543us) - Last Batch Returned: 1m3s (442.000ns) - Closed: 1m3s (56.817us) - ConvertRowBatchTime: 5.690us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 2 (2) - RowsReturnedRate: 60.75 K/sec Buffer pool: - AllocTime: 6.744us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 11.451us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B, 50.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -306675.000ns ; Min: -545817.000ns ; Max: -67534.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 39.868us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 50.00 B (50) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s841ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s287ms (4s287ms) - Waiting for builder: 1m3s (58s841ms) - Initial build available: 1m3s (2.714us) - Open Finished: 1m3s (25.329us) - First Batch Requested: 1m3s (859.270us) - First Batch Returned: 1m3s (8.163us) - Last Batch Returned: 1m3s (39.405us) - Closed: 1m3s (101.475us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 409.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s841ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s840ms) - First Batch Requested: 1m3s (113.109us) - First Batch Returned: 1m3s (3.921us) - Last Batch Returned: 1m3s (304.000ns) - Closed: 1m3s (997.738us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.662us - GetResultsTime: 0.000ns - HTResizeTime: 1.296us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.513us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s838ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s838ms) - First Batch Requested: 1m3s (1.454ms) - First Batch Returned: 1m3s (5.746us) - Last Batch Returned: 1m3s (352.000ns) - Closed: 1m3s (36.942us) - ConvertRowBatchTime: 2.246us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s838ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s838ms - DataWaitTime: 58s838ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000005d (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.025 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s788ms (1s788ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (4.139ms) - First Batch Sent: 1m3s (3.296us) - ExecInternal Finished: 1m3s (6.165ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 197.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 1.20 MB, 2.20 MB, 2.22 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.37 MB (4577664) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 7 (7) - TotalNetworkReceiveTime: 58s836ms - TotalNetworkSendTime: 5.613ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 8.740ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 10.243ms - ExecTreeExecTime: 4.351ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s840ms - PrepareTime: 6.528ms - ExecTreePrepareTime: 6.063ms KrpcDataStreamSender (dst_id=191):(Total: 5.999ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 17.51 KB/sec ; Min: 9.76 KB/sec ; Max: 28.73 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 1.639ms ; Min: 298.541us ; Max: 5.166ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -44141.000ns ; Min: -117841.000ns ; Max: -22310.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 7 (7) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.376us - TotalBytesSent: 367.00 B (367) - UncompressedRowBatchSize: 596.00 B (596) AGGREGATION_NODE (id=112):(Total: 58s850ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s287ms (4s287ms) - Open Finished: 1m3s (58s840ms) - First Batch Requested: 1m3s (19.041us) - First Batch Returned: 1m3s (4.134ms) - Last Batch Returned: 1m3s (270.208us) - Closed: 1m3s (63.824us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 7 (7) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 119.286us - HTResizeTime: 0.000ns - LargestPartitionPercent: 42 (42) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 7 (7) - StreamingTime: 60.925us Buffer pool: - AllocTime: 12.470us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 576.00 KB (589824) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 5.12K (5120) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s844ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s287ms (4s287ms) - Open Finished: 1m3s (58s839ms) - First Batch Requested: 1m3s (687.097us) - First Batch Returned: 1m3s (3.740ms) - Last Batch Returned: 1m3s (307.000ns) - Closed: 1m3s (125.945us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 7 (7) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 1.909ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.322ms) - Initial build available: 1m3s (1.866us) - Open Finished: 1m3s (31.546us) - First Batch Requested: 1m3s (1.381us) - First Batch Returned: 1m3s (11.033us) - Last Batch Returned: 1m3s (46.582us) - Closed: 1m3s (84.694us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 523.00 /sec AGGREGATION_NODE (id=178):(Total: 1.596ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.313ms) - First Batch Requested: 1m3s (6.006us) - First Batch Returned: 1m3s (28.726us) - Last Batch Returned: 1m3s (54.162us) - Closed: 1m3s (88.669us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 626.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 16.398us - GetResultsTime: 22.808us - HTResizeTime: 950.000ns - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.128us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 17.709us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.551us) - First Batch Requested: 1m3s (759.133us) - First Batch Returned: 1m3s (12.374us) - Last Batch Returned: 1m3s (263.000ns) - Closed: 1m3s (65.989us) - ConvertRowBatchTime: 3.356us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 56.47 K/sec Buffer pool: - AllocTime: 2.685us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 5.608us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -47643.000ns ; Min: -47643.000ns ; Max: -47643.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 16.376us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 2.343ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.457ms) - Initial build available: 1m3s (2.097us) - Open Finished: 1m3s (42.351us) - First Batch Requested: 1m3s (988.000ns) - First Batch Returned: 1m3s (7.531us) - Last Batch Returned: 1m3s (340.961us) - Closed: 1m3s (99.301us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 4 (4) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.377us - RowsReturned: 4 (4) - RowsReturnedRate: 1.71 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 1.837ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.408ms) - First Batch Requested: 1m3s (54.623us) - First Batch Returned: 1m3s (26.756us) - Last Batch Returned: 1m3s (245.199us) - Closed: 1m3s (197.864us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 2.18 K/sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 38.859us - GetResultsTime: 88.510us - HTResizeTime: 965.000ns - LargestPartitionPercent: 12 (12) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.524us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 30.737us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.799us) - First Batch Requested: 1m3s (896.922us) - First Batch Returned: 1m3s (24.578us) - Last Batch Returned: 1m3s (311.000ns) - Closed: 1m3s (68.470us) - ConvertRowBatchTime: 8.433us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 8 (8) - RowsReturnedRate: 260.27 K/sec Buffer pool: - AllocTime: 4.762us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 960.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 360.00 B (360) - TotalGetBatchTime: 8.327us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B, 188.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -168356.000ns ; Min: -296695.000ns ; Max: -40018.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 32.879us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 188.00 B (188) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s840ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Waiting for builder: 1m3s (58s839ms) - Initial build available: 1m3s (5.734us) - Open Finished: 1m3s (68.833us) - First Batch Requested: 1m3s (704.604us) - First Batch Returned: 1m3s (9.086us) - Last Batch Returned: 1m3s (156.228us) - Closed: 1m3s (100.510us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 2 (2) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.651us - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s839ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s839ms) - First Batch Requested: 1m3s (88.241us) - First Batch Returned: 1m3s (44.089us) - Last Batch Returned: 1m3s (804.368us) - Closed: 1m3s (158.704us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 49.225us - GetResultsTime: 52.349us - HTResizeTime: 3.180us - LargestPartitionPercent: 4 (4) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.459us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.199us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 24 (24) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s836ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m (56s513ms) - First Batch Requested: 1m (1.726ms) - First Batch Returned: 1m3s (2s322ms) - Last Batch Returned: 1m3s (725.000ns) - Closed: 1m3s (115.458us) - ConvertRowBatchTime: 49.933us - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 24 (24) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 45.113us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.802us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180.00 B, 360.00 B, 540.00 B - FirstBatchWaitTime: 56s513ms - TotalBytesDequeued: 1.05 KB (1080) - TotalGetBatchTime: 58s836ms - DataWaitTime: 58s836ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103.00 B, 206.00 B, 310.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -93179.000ns ; Min: -179322.000ns ; Max: -36253.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 230.621us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 612.00 B (612) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000005e (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.025 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s818ms (1s818ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (6.415ms) - First Batch Sent: 1m3s (2.456us) - ExecInternal Finished: 1m3s (2.547ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 197.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 199.38 KB, 215.38 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.31 MB (4522112) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 58s838ms - TotalNetworkSendTime: 2.061ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 10.372ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 8.914ms - ExecTreeExecTime: 6.552ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s841ms - PrepareTime: 10.948ms - ExecTreePrepareTime: 1.058ms KrpcDataStreamSender (dst_id=191):(Total: 2.433ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 152.69 KB/sec ; Min: 24.58 KB/sec ; Max: 281.87 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 632.898us ; Min: 190.551us ; Max: 2.264ms ; Number of samples: 16) - RpcRecvrTime: (Avg: -117951.000ns ; Min: -953832.000ns ; Max: -23567.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 39.62 KB (40576) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.367us - TotalBytesSent: 221.00 B (221) - UncompressedRowBatchSize: 340.00 B (340) AGGREGATION_NODE (id=112):(Total: 58s849ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s841ms) - First Batch Requested: 1m3s (24.255us) - First Batch Returned: 1m3s (6.410ms) - Last Batch Returned: 1m3s (180.137us) - Closed: 1m3s (67.835us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 75.822us - HTResizeTime: 0.000ns - LargestPartitionPercent: 50 (50) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 63.969us Buffer pool: - AllocTime: 15.910us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.924us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s847ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s840ms) - First Batch Requested: 1m3s (901.424us) - First Batch Returned: 1m3s (5.882ms) - Last Batch Returned: 1m3s (388.000ns) - Closed: 1m3s (117.374us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 4 (4) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.571ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.947ms) - Initial build available: 1m3s (2.105us) - Open Finished: 1m3s (39.761us) - First Batch Requested: 1m3s (1.374us) - First Batch Returned: 1m3s (10.709us) - Last Batch Returned: 1m3s (58.947us) - Closed: 1m3s (99.424us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 1 (1) - ProbeTime: 0.000ns - RowsReturned: 1 (1) - RowsReturnedRate: 388.00 /sec AGGREGATION_NODE (id=178):(Total: 2.246ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.937ms) - First Batch Requested: 1m3s (7.514us) - First Batch Returned: 1m3s (36.391us) - Last Batch Returned: 1m3s (66.263us) - Closed: 1m3s (101.911us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 445.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 21.204us - GetResultsTime: 28.437us - HTResizeTime: 1.202us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.972us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.862us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 20.781us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.024us) - First Batch Requested: 1m3s (1.228ms) - First Batch Returned: 1m3s (15.285us) - Last Batch Returned: 1m3s (385.000ns) - Closed: 1m3s (61.073us) - ConvertRowBatchTime: 3.340us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 48.12 K/sec Buffer pool: - AllocTime: 3.133us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 6.570us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -39826.000ns ; Min: -39826.000ns ; Max: -39826.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.060us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 3.983ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.763ms) - Initial build available: 1m3s (2.704us) - Open Finished: 1m3s (54.936us) - First Batch Requested: 1m3s (1.210us) - First Batch Returned: 1m3s (10.318us) - Last Batch Returned: 1m3s (1.601ms) - Closed: 1m3s (124.012us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 3 (3) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.604us - RowsReturned: 3 (3) - RowsReturnedRate: 753.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 3.441ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.700ms) - First Batch Requested: 1m3s (68.877us) - First Batch Returned: 1m3s (34.052us) - Last Batch Returned: 1m3s (1.511ms) - Closed: 1m3s (204.143us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 871.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 44.583us - GetResultsTime: 82.256us - HTResizeTime: 1.129us - LargestPartitionPercent: 16 (16) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.271us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.793us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 40.720us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (5.379us) - First Batch Requested: 1m3s (1.073ms) - First Batch Returned: 1m3s (31.290us) - Last Batch Returned: 1m3s (433.000ns) - Closed: 1m3s (82.969us) - ConvertRowBatchTime: 8.036us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 6 (6) - RowsReturnedRate: 147.35 K/sec Buffer pool: - AllocTime: 6.642us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 32.00 KB (32768) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.553us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 14.856us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B, 141.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -102973.000ns ; Min: -166043.000ns ; Max: -39904.000ns ; Number of samples: 2) - DeserializeRowBatchTime: 35.056us - TotalBatchesEnqueued: 2 (2) - TotalBatchesReceived: 2 (2) - TotalBytesReceived: 141.00 B (141) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s841ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Waiting for builder: 1m3s (58s840ms) - Initial build available: 1m3s (2.451us) - Open Finished: 1m3s (48.512us) - First Batch Requested: 1m3s (916.134us) - First Batch Returned: 1m3s (10.934us) - Last Batch Returned: 1m3s (37.695us) - Closed: 1m3s (91.533us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 411.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s841ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s840ms) - First Batch Requested: 1m3s (72.905us) - First Batch Returned: 1m3s (25.669us) - Last Batch Returned: 1m3s (1.063us) - Closed: 1m3s (1.048ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.505us - GetResultsTime: 0.000ns - HTResizeTime: 1.122us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.521us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s838ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s838ms) - First Batch Requested: 1m3s (1.431ms) - First Batch Returned: 1m3s (5.768us) - Last Batch Returned: 1m3s (437.000ns) - Closed: 1m3s (35.440us) - ConvertRowBatchTime: 2.222us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 58s838ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 58s838ms - DataWaitTime: 58s838ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000005f (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.025 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s887ms (1s887ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (8.598ms) - First Batch Sent: 1m3s (2.207us) - ExecInternal Finished: 1m3s (1.462ms) - MemoryUsage (1s000ms): 163.38 KB, 163.38 KB, 165.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 167.38 KB, 1.17 MB, 2.17 MB, 2.18 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.32 MB (4528512) - PeakReservation: 3.94 MB (4128768) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 58s836ms - TotalNetworkSendTime: 1.185ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 9.774ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 10.007ms - ExecTreeExecTime: 8.638ms - OpenTime: 1m1s - ExecTreeOpenTime: 58s840ms - PrepareTime: 1.466ms - ExecTreePrepareTime: 1.033ms KrpcDataStreamSender (dst_id=191):(Total: 1.464ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 77.24 KB/sec ; Min: 77.24 KB/sec ; Max: 77.24 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 487.914us ; Min: 422.148us ; Max: 682.744us ; Number of samples: 13) - RpcRecvrTime: (Avg: -36877.000ns ; Min: -121569.000ns ; Max: -21419.000ns ; Number of samples: 13) - EosSent: 12 (12) - PeakMemoryUsage: 27.62 KB (28288) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.390us - TotalBytesSent: 54.00 B (54) - UncompressedRowBatchSize: 86.00 B (86) AGGREGATION_NODE (id=112):(Total: 58s850ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s840ms) - First Batch Requested: 1m3s (23.576us) - First Batch Returned: 1m3s (8.593ms) - Last Batch Returned: 1m3s (57.439us) - Closed: 1m3s (57.401us) - PeakMemoryUsage: 2.22 MB (2331776) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 24.001us - HTResizeTime: 0.000ns - LargestPartitionPercent: 100 (100) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.03 MB (2123904) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 29.389us Buffer pool: - AllocTime: 9.645us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) UNION_NODE (id=76):(Total: 58s847ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s839ms) - First Batch Requested: 1m3s (822.951us) - First Batch Returned: 1m3s (6.914ms) - Last Batch Returned: 1m3s (334.000ns) - Closed: 1m3s (135.461us) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NESTED_LOOP_JOIN_NODE (id=98):(Total: 2.438ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (1.870ms) - Initial build available: 1m3s (2.348us) - Open Finished: 1m3s (8.192us) - First Batch Requested: 1m3s (996.000ns) - First Batch Returned: 1m3s (6.267us) - Last Batch Returned: 1m3s (353.000ns) - Closed: 1m3s (488.574us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 16.00 KB (16384) - ProbeRows: 0 (0) - ProbeTime: 0.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 AGGREGATION_NODE (id=178):(Total: 2.106ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (1.860ms) - First Batch Requested: 1m3s (7.864us) - First Batch Returned: 1m3s (3.375us) - Last Batch Returned: 1m3s (313.000ns) - Closed: 1m3s (495.231us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.947us - GetResultsTime: 0.000ns - HTResizeTime: 1.091us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.349us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=177):(Total: 10.894us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.726us) - First Batch Requested: 1m3s (1.094ms) - First Batch Returned: 1m3s (5.933us) - Last Batch Returned: 1m3s (343.000ns) - Closed: 1m3s (39.721us) - ConvertRowBatchTime: 2.072us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.040us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=111):(Total: 4.730ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Waiting for builder: 1m3s (4.071ms) - Initial build available: 1m3s (2.871us) - Open Finished: 1m3s (22.057us) - First Batch Requested: 1m3s (1.508us) - First Batch Returned: 1m3s (7.847us) - Last Batch Returned: 1m3s (67.407us) - Closed: 1m3s (116.911us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 278.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=186):(Total: 4.214ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (3.970ms) - First Batch Requested: 1m3s (109.341us) - First Batch Returned: 1m3s (3.041us) - Last Batch Returned: 1m3s (271.000ns) - Closed: 1m3s (178.680us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.891us - GetResultsTime: 0.000ns - HTResizeTime: 1.187us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.667us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=185):(Total: 11.232us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 1m3s (1m3s) - Open Finished: 1m3s (2.219us) - First Batch Requested: 1m3s (3.010ms) - First Batch Returned: 1m3s (5.920us) - Last Batch Returned: 1m3s (433.000ns) - Closed: 1m3s (36.514us) - ConvertRowBatchTime: 1.953us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 0 - TotalGetBatchTime: 1.127us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) HASH_JOIN_NODE (id=89):(Total: 58s840ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Waiting for builder: 1m3s (58s839ms) - Initial build available: 1m3s (2.580us) - Open Finished: 1m3s (65.424us) - First Batch Requested: 1m3s (838.093us) - First Batch Returned: 1m3s (10.413us) - Last Batch Returned: 1m3s (110.682us) - Closed: 1m3s (99.098us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 1 (1) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.543us - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=171):(Total: 58s840ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m3s (58s839ms) - First Batch Requested: 1m3s (72.793us) - First Batch Returned: 1m3s (44.745us) - Last Batch Returned: 1m3s (894.237us) - Closed: 1m3s (147.861us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 28.863us - GetResultsTime: 37.080us - HTResizeTime: 2.208us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.666us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.569us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 12 (12) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=170):(Total: 58s836ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s288ms (4s288ms) - Open Finished: 1m (56s514ms) - First Batch Requested: 1m (1.820ms) - First Batch Returned: 1m3s (2s322ms) - Last Batch Returned: 1m3s (775.000ns) - Closed: 1m3s (113.730us) - ConvertRowBatchTime: 35.054us - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 12 (12) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 41.996us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.556us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90.00 B, 180.00 B, 270.00 B - FirstBatchWaitTime: 56s514ms - TotalBytesDequeued: 540.00 B (540) - TotalGetBatchTime: 58s836ms - DataWaitTime: 58s836ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52.00 B, 104.00 B, 156.00 B - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -73006.000ns ; Min: -196765.000ns ; Max: -28931.000ns ; Number of samples: 12) - DeserializeRowBatchTime: 213.317us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 312.00 B (312) - TotalEarlySenders: 0 (0) - TotalEosReceived: 12 (12) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F49:(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 15.92 MB, max: 17.31 MB, avg: 16.41 MB, stddev: 647.55 KB completion times: min:1m1s max:1m4s mean: 1m3s stddev:880.567ms execution rates: min:255.46 KB/sec max:285.95 KB/sec mean:266.47 KB/sec stddev:13.79 KB/sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 6.33 MB (6638788) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.688ms - TotalStorageWaitTime: 617.887ms - TotalThreadsInvoluntaryContextSwitches: 52 (52) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 4.590ms - TotalThreadsUserTime: 274.624ms - TotalThreadsVoluntaryContextSwitches: 387 (387) Fragment Instance Lifecycle Timings: - ExecTime: 452.829ms - ExecTreeExecTime: 449.793ms - OpenTime: 1m - ExecTreeOpenTime: 58s391ms - PrepareTime: 8.783ms - ExecTreePrepareTime: 6.900ms KrpcDataStreamSender (dst_id=170):(Total: 3.143ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.477us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 58s848ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 3.75 MB (3926997) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 182.229us - HTResizeTime: 416.638us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 963.656us Buffer pool: - AllocTime: 53.534us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 26.635us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 4.94K (4940) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 58s851ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 1.74 MB (1825749) - ProbeRows: 5.06K (5056) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 459.999us - RowsReturned: 4.94K (4940) - RowsReturnedRate: 83.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 58s849ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 154.48K (154482) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 5.865ms - RowsReturned: 5.06K (5056) - RowsReturnedRate: 85.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 58s828ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 9.61 MB (10079485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.61 MB (10079485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.61 MB (10079485) - CachedFileHandlesHitCount: 310 (310) - CachedFileHandlesMissCount: 98 (98) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.546ms - MaterializeTupleTime: 45.263ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 306 (306) - NumRowGroups: 102 (102) - NumRowGroupsWithPageIndex: 102 (102) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.07 MB (2172543) - PerReadThreadRawHdfsThroughput: 84.95 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 154.48K (154482) - RowsReturned: 154.48K (154482) - RowsReturnedRate: 2.61 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 617.887ms - TotalRawHdfsOpenFileTime: 69.811ms - TotalRawHdfsReadTime: 97.961ms - TotalReadThroughput: 135.30 KB/sec Buffer pool: - AllocTime: 704.237us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 14.56 MB (15269205) - CumulativeAllocations: 409 (409) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 39.739us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 154.48K (154482) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 50 (50) - Files rejected: 49 (49) - Files total: 152 (152) - RowGroups processed: 2 (2) - RowGroups rejected: 0 (0) - RowGroups total: 180 (180) - Rows processed: 1.83K (1832) - Rows rejected: 0 (0) - Rows total: 154.48K (154482) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 102 (102) Fragment F49: Instance 50467cb8e73eeac4:853461b40000004b (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s961ms (1s961ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m3s (776.249ms) - First Batch Sent: 1m3s (4.269us) - ExecInternal Finished: 1m3s (11.404ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 5.07 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.87 MB (8249564) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 10.906ms - TotalStorageWaitTime: 944.801ms - TotalThreadsInvoluntaryContextSwitches: 138 (138) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 8.270ms - TotalThreadsUserTime: 680.854ms - TotalThreadsVoluntaryContextSwitches: 585 (585) Fragment Instance Lifecycle Timings: - ExecTime: 787.613ms - ExecTreeExecTime: 776.464ms - OpenTime: 1m - ExecTreeOpenTime: 58s609ms - PrepareTime: 2.350ms - ExecTreePrepareTime: 1.974ms KrpcDataStreamSender (dst_id=170):(Total: 11.258ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 80.09 KB/sec ; Min: 58.93 KB/sec ; Max: 125.24 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.037ms ; Min: 246.465us ; Max: 10.639ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -518357.000ns ; Min: -8155680.000ns ; Max: -19318.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.327us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s388ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Open Finished: 1m2s (58s609ms) - First Batch Requested: 1m2s (33.746us) - First Batch Returned: 1m3s (776.243ms) - Last Batch Returned: 1m3s (264.205us) - Closed: 1m3s (48.108us) - PeakMemoryUsage: 4.46 MB (4674688) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 134.224us - HTResizeTime: 189.554us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 394.194us Buffer pool: - AllocTime: 20.381us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.57K (3572) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s387ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s235ms) - Initial build available: 1m1s (2.338us) - Open Finished: 1m2s (373.648ms) - First Batch Requested: 1m2s (873.888us) - First Batch Returned: 1m2s (546.503ms) - Last Batch Returned: 1m3s (229.305ms) - Closed: 1m3s (146.334us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.45 MB (2573440) - ProbeRows: 3.65K (3652) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 182.314us - RowsReturned: 3.57K (3572) - RowsReturnedRate: 60.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s386ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s221ms) - Initial build available: 1m1s (2.548us) - Open Finished: 1m1s (13.725ms) - First Batch Requested: 1m1s (62.629us) - First Batch Returned: 1m2s (373.628ms) - Last Batch Returned: 1m3s (776.399ms) - Closed: 1m3s (425.802us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 229.43K (229428) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 7.934ms - RowsReturned: 3.65K (3652) - RowsReturnedRate: 61.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s373ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 58s220ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m3s - Closed: 1m3s (1m3s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.89 MB - FooterProcessingTime: (Avg: 3.550ms ; Min: 448.937us ; Max: 15.649ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 113.26 KB (115981) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 240.49 KB (246264) ; Min: 78.69 KB (80574) ; Max: 321.55 KB (329267) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1620) ; Min: 162.00 B (162) ; Max: 5.83 KB (5972) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 32.63 KB (33414) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 241.19 KB (246981) ; Min: 79.58 KB (81488) ; Max: 322.13 KB (329864) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.59 KB (1624) ; Min: 158.00 B (158) ; Max: 5.88 KB (6017) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.27 MB (14966356) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.27 MB (14966356) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.27 MB (14966356) - CachedFileHandlesHitCount: 458 (458) - CachedFileHandlesMissCount: 150 (150) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.260ms - MaterializeTupleTime: 63.162ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2180981) - PerReadThreadRawHdfsThroughput: 98.38 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 229.43K (229428) - RowsReturned: 229.43K (229428) - RowsReturnedRate: 3.86 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 944.801ms - TotalRawHdfsOpenFileTime: 115.255ms - TotalRawHdfsReadTime: 145.075ms - TotalReadThroughput: 188.12 KB/sec Buffer pool: - AllocTime: 1.069ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.66 MB (22708224) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 39.573us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.43K (229428) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 266 (266) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.43K (229428) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b40000004c (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.024 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s986ms (1s986ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m3s (647.696ms) - First Batch Sent: 1m3s (3.137us) - ExecInternal Finished: 1m3s (1.781ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 5.86 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 8.15 MB (8547172) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.260ms - TotalStorageWaitTime: 937.466ms - TotalThreadsInvoluntaryContextSwitches: 21 (21) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.208ms - TotalThreadsUserTime: 231.294ms - TotalThreadsVoluntaryContextSwitches: 553 (553) Fragment Instance Lifecycle Timings: - ExecTime: 649.406ms - ExecTreeExecTime: 647.930ms - OpenTime: 1m - ExecTreeOpenTime: 58s738ms - PrepareTime: 2.335ms - ExecTreePrepareTime: 1.859ms KrpcDataStreamSender (dst_id=170):(Total: 1.595ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 66.64 KB/sec ; Min: 37.68 KB/sec ; Max: 109.63 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 534.677us ; Min: 323.488us ; Max: 791.678us ; Number of samples: 17) - RpcRecvrTime: (Avg: -61164.000ns ; Min: -277448.000ns ; Max: -24140.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.164us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s388ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Open Finished: 1m2s (58s738ms) - First Batch Requested: 1m2s (22.730us) - First Batch Returned: 1m3s (647.690ms) - Last Batch Returned: 1m3s (292.857us) - Closed: 1m3s (41.317us) - PeakMemoryUsage: 4.16 MB (4363392) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 137.334us - HTResizeTime: 214.730us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 658.316us Buffer pool: - AllocTime: 19.554us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 7.64K (7644) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s387ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s235ms) - Initial build available: 1m1s (2.570us) - Open Finished: 1m2s (502.429ms) - First Batch Requested: 1m2s (622.272us) - First Batch Returned: 1m2s (468.984ms) - Last Batch Returned: 1m3s (178.371ms) - Closed: 1m3s (88.921us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.16 MB (2262144) - ProbeRows: 7.82K (7822) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 416.176us - RowsReturned: 7.64K (7644) - RowsReturnedRate: 128.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s386ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s221ms) - Initial build available: 1m1s (5.034us) - Open Finished: 1m1s (13.734ms) - First Batch Requested: 1m1s (79.087us) - First Batch Returned: 1m2s (502.407ms) - Last Batch Returned: 1m3s (647.723ms) - Closed: 1m3s (335.815us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 229.50K (229497) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.626ms - RowsReturned: 7.82K (7822) - RowsReturnedRate: 131.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s369ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 58s220ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m3s - Closed: 1m3s (1m3s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.78 MB - FooterProcessingTime: (Avg: 3.742ms ; Min: 749.365us ; Max: 37.236ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 113.26 KB (115981) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 240.64 KB (246417) ; Min: 78.73 KB (80615) ; Max: 322.01 KB (329739) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1621) ; Min: 230.00 B (230) ; Max: 4.98 KB (5096) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 32.63 KB (33414) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 241.28 KB (247067) ; Min: 79.54 KB (81453) ; Max: 322.54 KB (330279) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.59 KB (1625) ; Min: 226.00 B (226) ; Max: 4.99 KB (5107) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.01 - BytesRead: 14.28 MB (14974904) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.28 MB (14974904) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.28 MB (14974904) - CachedFileHandlesHitCount: 460 (460) - CachedFileHandlesMissCount: 148 (148) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.386ms - MaterializeTupleTime: 65.394ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.07 MB (2174921) - PerReadThreadRawHdfsThroughput: 82.22 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 229.50K (229497) - RowsReturned: 229.50K (229497) - RowsReturnedRate: 3.87 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 937.466ms - TotalRawHdfsOpenFileTime: 104.447ms - TotalRawHdfsReadTime: 173.690ms - TotalReadThroughput: 184.04 KB/sec Buffer pool: - AllocTime: 985.108us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.66 MB (22708224) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 38.491us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.50K (229497) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 267 (267) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.50K (229497) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b400000047 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.123 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 1s429ms (1s429ms) - Open Finished: 1m1s (1m) - First Batch Produced: 1m2s (848.216ms) - First Batch Sent: 1m2s (3.714us) - ExecInternal Finished: 1m2s (2.616ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 5.06 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 6.28 MB (6581131) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.928ms - TotalStorageWaitTime: 899.144ms - TotalThreadsInvoluntaryContextSwitches: 128 (128) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.030ms - TotalThreadsUserTime: 684.363ms - TotalThreadsVoluntaryContextSwitches: 590 (590) Fragment Instance Lifecycle Timings: - ExecTime: 850.736ms - ExecTreeExecTime: 848.508ms - OpenTime: 1m - ExecTreeOpenTime: 58s268ms - PrepareTime: 14.761ms - ExecTreePrepareTime: 14.399ms KrpcDataStreamSender (dst_id=170):(Total: 2.295ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 52.35 KB/sec ; Min: 21.41 KB/sec ; Max: 71.22 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 752.722us ; Min: 386.257us ; Max: 1.674ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -181176.000ns ; Min: -630028.000ns ; Max: -25898.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 19.381us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s131ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Open Finished: 1m1s (58s268ms) - First Batch Requested: 1m1s (26.210us) - First Batch Returned: 1m2s (848.211ms) - Last Batch Returned: 1m2s (354.195us) - Closed: 1m2s (58.990us) - PeakMemoryUsage: 4.10 MB (4295808) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 193.258us - HTResizeTime: 151.051us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 497.995us Buffer pool: - AllocTime: 21.585us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.240us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 5.74K (5737) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s142ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (58s013ms) - Initial build available: 1m1s (3.700us) - Open Finished: 1m1s (254.121ms) - First Batch Requested: 1m1s (707.224us) - First Batch Returned: 1m1s (207.878ms) - Last Batch Returned: 1m2s (639.515ms) - Closed: 1m2s (539.764us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.09 MB (2194560) - ProbeRows: 5.87K (5872) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 302.420us - RowsReturned: 5.74K (5737) - RowsReturnedRate: 97.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s139ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (57s991ms) - Initial build available: 1m1s (5.891us) - Open Finished: 1m1s (22.110ms) - First Batch Requested: 1m1s (90.558us) - First Batch Returned: 1m1s (254.095ms) - Last Batch Returned: 1m2s (846.399ms) - Closed: 1m2s (2.208ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.40K (228399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 7.951ms - RowsReturned: 5.87K (5872) - RowsReturnedRate: 99.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s108ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 57s988ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34.11 KB, 9.75 MB - FooterProcessingTime: (Avg: 3.707ms ; Min: 201.828us ; Max: 27.032ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.52 KB (245272) ; Min: 78.78 KB (80666) ; Max: 320.18 KB (327866) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1613) ; Min: 248.00 B (248) ; Max: 5.68 KB (5819) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.05 KB (33845) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.15 KB (245913) ; Min: 79.70 KB (81616) ; Max: 320.65 KB (328343) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1617) ; Min: 244.00 B (244) ; Max: 5.71 KB (5847) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.23 MB (14921114) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14921114) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14921114) - CachedFileHandlesHitCount: 461 (461) - CachedFileHandlesMissCount: 147 (147) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.204ms - MaterializeTupleTime: 67.144ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2179825) - PerReadThreadRawHdfsThroughput: 91.98 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.40K (228399) - RowsReturned: 228.40K (228399) - RowsReturnedRate: 3.86 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 899.144ms - TotalRawHdfsOpenFileTime: 98.447ms - TotalRawHdfsReadTime: 154.713ms - TotalReadThroughput: 220.14 KB/sec Buffer pool: - AllocTime: 992.263us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.53 MB (22577152) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 67.002us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.40K (228399) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 269 (269) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.40K (228399) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b40000004d (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.029 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s001ms (2s001ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m3s (523.067ms) - First Batch Sent: 1m3s (2.484us) - ExecInternal Finished: 1m3s (1.502ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 4.71 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 6.72 MB (7046828) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 879.755us - TotalStorageWaitTime: 941.678ms - TotalThreadsInvoluntaryContextSwitches: 19 (19) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.143ms - TotalThreadsUserTime: 227.847ms - TotalThreadsVoluntaryContextSwitches: 566 (566) Fragment Instance Lifecycle Timings: - ExecTime: 524.495ms - ExecTreeExecTime: 523.341ms - OpenTime: 1m - ExecTreeOpenTime: 58s862ms - PrepareTime: 2.256ms - ExecTreePrepareTime: 1.877ms KrpcDataStreamSender (dst_id=170):(Total: 1.283ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 65.06 KB/sec ; Min: 43.92 KB/sec ; Max: 129.68 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 445.909us ; Min: 239.860us ; Max: 659.857us ; Number of samples: 17) - RpcRecvrTime: (Avg: -59794.000ns ; Min: -176291.000ns ; Max: -25519.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.689us - TotalBytesSent: 150.00 B (150) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s388ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Open Finished: 1m2s (58s862ms) - First Batch Requested: 1m2s (26.845us) - First Batch Returned: 1m3s (523.063ms) - Last Batch Returned: 1m3s (334.987us) - Closed: 1m3s (39.828us) - PeakMemoryUsage: 4.53 MB (4748416) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 160.658us - HTResizeTime: 158.872us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 358.086us Buffer pool: - AllocTime: 24.537us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.883us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.75K (3750) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s387ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s235ms) - Initial build available: 1m1s (3.176us) - Open Finished: 1m2s (626.728ms) - First Batch Requested: 1m2s (851.431us) - First Batch Returned: 1m2s (19.480ms) - Last Batch Returned: 1m3s (503.281ms) - Closed: 1m3s (76.851us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.52 MB (2647168) - ProbeRows: 3.84K (3841) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 149.075us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 63.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s387ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s221ms) - Initial build available: 1m1s (2.933us) - Open Finished: 1m1s (13.711ms) - First Batch Requested: 1m1s (68.023us) - First Batch Returned: 1m2s (626.703ms) - Last Batch Returned: 1m3s (523.441ms) - Closed: 1m3s (244.718us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 229.62K (229615) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.115ms - RowsReturned: 3.84K (3841) - RowsReturnedRate: 64.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s371ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 58s220ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 0:99.15% 1:0.8475% 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m3s - Closed: 1m3s (1m3s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02 MB - FooterProcessingTime: (Avg: 3.496ms ; Min: 588.297us ; Max: 14.931ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 113.68 KB (116412) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 240.89 KB (246671) ; Min: 79.08 KB (80983) ; Max: 322.01 KB (329736) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1622) ; Min: 233.00 B (233) ; Max: 5.21 KB (5330) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 32.84 KB (33630) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 241.68 KB (247476) ; Min: 80.04 KB (81964) ; Max: 322.71 KB (330459) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.59 KB (1628) ; Min: 229.00 B (229) ; Max: 5.22 KB (5350) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.28 MB (14972325) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.28 MB (14972325) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.28 MB (14972325) - CachedFileHandlesHitCount: 458 (458) - CachedFileHandlesMissCount: 150 (150) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.224ms - MaterializeTupleTime: 64.102ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176262) - PerReadThreadRawHdfsThroughput: 94.93 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 229.62K (229615) - RowsReturned: 229.62K (229615) - RowsReturnedRate: 3.87 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 941.678ms - TotalRawHdfsOpenFileTime: 118.930ms - TotalRawHdfsReadTime: 150.407ms - TotalReadThroughput: 191.05 KB/sec Buffer pool: - AllocTime: 1.047ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.75 MB (22806528) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 52.493us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.62K (229615) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 267 (267) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.62K (229615) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b400000048 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 1s435ms (1s435ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (325.816ms) - First Batch Sent: 1m2s (3.445us) - ExecInternal Finished: 1m2s (2.495ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 6.46 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 9.24 MB (9684643) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.859ms - TotalStorageWaitTime: 902.567ms - TotalThreadsInvoluntaryContextSwitches: 20 (20) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.202ms - TotalThreadsUserTime: 228.615ms - TotalThreadsVoluntaryContextSwitches: 577 (577) Fragment Instance Lifecycle Timings: - ExecTime: 328.248ms - ExecTreeExecTime: 326.101ms - OpenTime: 1m - ExecTreeOpenTime: 58s790ms - PrepareTime: 10.707ms - ExecTreePrepareTime: 9.748ms KrpcDataStreamSender (dst_id=170):(Total: 2.227ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 52.56 KB/sec ; Min: 26.76 KB/sec ; Max: 74.50 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 881.836us ; Min: 434.675us ; Max: 1.191ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -111436.000ns ; Min: -312126.000ns ; Max: -30656.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.434us - TotalBytesSent: 155.00 B (155) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s126ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Open Finished: 1m2s (58s790ms) - First Batch Requested: 1m2s (24.017us) - First Batch Returned: 1m2s (325.810ms) - Last Batch Returned: 1m2s (338.229us) - Closed: 1m2s (65.480us) - PeakMemoryUsage: 5.57 MB (5845120) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 175.885us - HTResizeTime: 203.015us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 495.351us Buffer pool: - AllocTime: 94.504us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 80.183us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 1.80K (1798) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s133ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (58s012ms) - Initial build available: 1m1s (5.573us) - Open Finished: 1m2s (777.294ms) - First Batch Requested: 1m2s (652.277us) - First Batch Returned: 1m2s (321.395ms) - Last Batch Returned: 1m2s (3.369ms) - Closed: 1m2s (618.914us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 3.57 MB (3743872) - ProbeRows: 1.83K (1835) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 79.103us - RowsReturned: 1.80K (1798) - RowsReturnedRate: 30.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s130ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (57s991ms) - Initial build available: 1m1s (8.664us) - Open Finished: 1m1s (21.625ms) - First Batch Requested: 1m1s (128.717us) - First Batch Returned: 1m2s (777.253ms) - Last Batch Returned: 1m2s (323.628ms) - Closed: 1m2s (2.400ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.61K (228614) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.109ms - RowsReturned: 1.83K (1835) - RowsReturnedRate: 31.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s108ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 57s988ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 0:99.15% 1:0.8475% 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50.00 KB, 9.60 MB - FooterProcessingTime: (Avg: 3.322ms ; Min: 392.906us ; Max: 8.163ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.53 KB (245283) ; Min: 77.90 KB (79772) ; Max: 320.73 KB (328431) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1613) ; Min: 233.00 B (233) ; Max: 5.15 KB (5275) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.05 KB (33845) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.23 KB (245997) ; Min: 78.83 KB (80719) ; Max: 321.37 KB (329082) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1618) ; Min: 229.00 B (229) ; Max: 5.17 KB (5298) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.01 - BytesRead: 14.23 MB (14921909) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14921909) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14921909) - CachedFileHandlesHitCount: 464 (464) - CachedFileHandlesMissCount: 144 (144) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.229ms - MaterializeTupleTime: 65.894ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176101) - PerReadThreadRawHdfsThroughput: 109.98 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.61K (228614) - RowsReturned: 228.61K (228614) - RowsReturnedRate: 3.87 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 902.567ms - TotalRawHdfsOpenFileTime: 97.208ms - TotalRawHdfsReadTime: 129.393ms - TotalReadThroughput: 216.44 KB/sec Buffer pool: - AllocTime: 966.403us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.53 MB (22577152) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.930us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.61K (228614) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 268 (268) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.61K (228614) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b40000004e (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.027 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s017ms (2s017ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m3s (277.109ms) - First Batch Sent: 1m3s (2.605us) - ExecInternal Finished: 1m3s (2.018ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 4.05 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.88 MB (8261104) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.387ms - TotalStorageWaitTime: 931.400ms - TotalThreadsInvoluntaryContextSwitches: 19 (19) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 10.234ms - TotalThreadsUserTime: 224.125ms - TotalThreadsVoluntaryContextSwitches: 543 (543) Fragment Instance Lifecycle Timings: - ExecTime: 278.962ms - ExecTreeExecTime: 277.321ms - OpenTime: 1m - ExecTreeOpenTime: 59s109ms - PrepareTime: 2.333ms - ExecTreePrepareTime: 1.920ms KrpcDataStreamSender (dst_id=170):(Total: 1.876ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 82.03 KB/sec ; Min: 39.11 KB/sec ; Max: 148.67 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 475.846us ; Min: 241.370us ; Max: 931.312us ; Number of samples: 17) - RpcRecvrTime: (Avg: -78701.000ns ; Min: -390267.000ns ; Max: -26930.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.178us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s388ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Open Finished: 1m2s (59s109ms) - First Batch Requested: 1m2s (47.539us) - First Batch Returned: 1m3s (277.105ms) - Last Batch Returned: 1m3s (260.519us) - Closed: 1m3s (53.512us) - PeakMemoryUsage: 5.43 MB (5698688) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 125.534us - HTResizeTime: 188.327us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 427.177us Buffer pool: - AllocTime: 20.430us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.743us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.75K (3750) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s387ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s234ms) - Initial build available: 1m1s (4.981us) - Open Finished: 1m2s (873.624ms) - First Batch Requested: 1m2s (919.177us) - First Batch Returned: 1m2s (37.863ms) - Last Batch Returned: 1m3s (238.749ms) - Closed: 1m3s (99.783us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 3.43 MB (3597440) - ProbeRows: 3.85K (3847) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 199.258us - RowsReturned: 3.75K (3750) - RowsReturnedRate: 63.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s386ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 3s739ms (3s739ms) - Waiting for builder: 1m1s (58s221ms) - Initial build available: 1m1s (7.404us) - Open Finished: 1m1s (12.951ms) - First Batch Requested: 1m1s (90.918us) - First Batch Returned: 1m2s (873.593ms) - Last Batch Returned: 1m3s (277.251ms) - Closed: 1m3s (373.277us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 229.37K (229373) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.756ms - RowsReturned: 3.85K (3847) - RowsReturnedRate: 64.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s365ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/16.00 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 58s220ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m3s - Closed: 1m3s (1m3s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.81 MB - FooterProcessingTime: (Avg: 3.575ms ; Min: 1.081ms ; Max: 8.828ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 113.68 KB (116412) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 240.63 KB (246408) ; Min: 79.23 KB (81127) ; Max: 321.64 KB (329361) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1621) ; Min: 245.00 B (245) ; Max: 5.07 KB (5194) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 32.74 KB (33522) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 241.30 KB (247096) ; Min: 80.17 KB (82097) ; Max: 322.12 KB (329855) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.59 KB (1625) ; Min: 243.00 B (243) ; Max: 5.10 KB (5225) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.29 MB (14984406) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.29 MB (14984406) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.29 MB (14984406) - CachedFileHandlesHitCount: 458 (458) - CachedFileHandlesMissCount: 150 (150) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.218ms - MaterializeTupleTime: 66.602ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.07 MB (2175398) - PerReadThreadRawHdfsThroughput: 103.56 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 229.37K (229373) - RowsReturned: 229.37K (229373) - RowsReturnedRate: 3.86 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 931.400ms - TotalRawHdfsOpenFileTime: 104.730ms - TotalRawHdfsReadTime: 137.984ms - TotalReadThroughput: 187.88 KB/sec Buffer pool: - AllocTime: 1.067ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.73 MB (22790144) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 61.089us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.37K (229373) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 267 (267) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 229.37K (229373) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b400000049 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.123 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 1s514ms (1s514ms) - Open Finished: 1m1s (59s973ms) - First Batch Produced: 1m2s (1s054ms) - First Batch Sent: 1m2s (2.171us) - ExecInternal Finished: 1m2s (2.634ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 4.87 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 6.04 MB (6334928) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.977ms - TotalStorageWaitTime: 898.041ms - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 3.794ms - TotalThreadsUserTime: 224.827ms - TotalThreadsVoluntaryContextSwitches: 566 (566) Fragment Instance Lifecycle Timings: - ExecTime: 1s057ms - ExecTreeExecTime: 1s054ms - OpenTime: 59s973ms - ExecTreeOpenTime: 58s062ms - PrepareTime: 14.747ms - ExecTreePrepareTime: 14.385ms KrpcDataStreamSender (dst_id=170):(Total: 2.378ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 67.38 KB/sec ; Min: 40.06 KB/sec ; Max: 104.33 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 520.865us ; Min: 189.366us ; Max: 829.819us ; Number of samples: 17) - RpcRecvrTime: (Avg: -88591.000ns ; Min: -218746.000ns ; Max: -29628.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.284us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s131ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Open Finished: 1m1s (58s062ms) - First Batch Requested: 1m1s (21.613us) - First Batch Returned: 1m2s (1s054ms) - Last Batch Returned: 1m2s (328.817us) - Closed: 1m2s (50.558us) - PeakMemoryUsage: 3.85 MB (4035712) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 161.532us - HTResizeTime: 286.956us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 737.991us Buffer pool: - AllocTime: 18.809us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.603us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 7.96K (7959) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s142ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (58s013ms) - Initial build available: 1m1s (2.675us) - Open Finished: 1m1s (48.292ms) - First Batch Requested: 1m1s (675.950us) - First Batch Returned: 1m1s (568.342us) - Last Batch Returned: 1m2s (1s052ms) - Closed: 1m2s (975.312us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 1.84 MB (1934464) - ProbeRows: 8.17K (8171) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 436.930us - RowsReturned: 7.96K (7959) - RowsReturnedRate: 134.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s138ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (57s991ms) - Initial build available: 1m1s (5.708us) - Open Finished: 1m1s (22.187ms) - First Batch Requested: 1m1s (77.277us) - First Batch Returned: 1m1s (48.268ms) - Last Batch Returned: 1m2s (1s052ms) - Closed: 1m2s (2.731ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.43K (228426) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 9.319ms - RowsReturned: 8.17K (8171) - RowsReturnedRate: 138.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s106ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.93 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 57s988ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.64 MB - FooterProcessingTime: (Avg: 3.352ms ; Min: 596.614us ; Max: 29.593ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.37 KB (245115) ; Min: 78.36 KB (80242) ; Max: 320.13 KB (327812) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.57 KB (1612) ; Min: 238.00 B (238) ; Max: 5.17 KB (5296) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.16 KB (33953) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.07 KB (245834) ; Min: 79.32 KB (81221) ; Max: 320.71 KB (328406) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1617) ; Min: 235.00 B (235) ; Max: 5.21 KB (5337) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 14.23 MB (14921966) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14921966) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14921966) - CachedFileHandlesHitCount: 461 (461) - CachedFileHandlesMissCount: 147 (147) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.230ms - MaterializeTupleTime: 64.306ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176257) - PerReadThreadRawHdfsThroughput: 104.66 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.43K (228426) - RowsReturned: 228.43K (228426) - RowsReturnedRate: 3.86 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 898.041ms - TotalRawHdfsOpenFileTime: 98.261ms - TotalRawHdfsReadTime: 135.974ms - TotalReadThroughput: 218.41 KB/sec Buffer pool: - AllocTime: 1.065ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.55 MB (22593536) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 54.832us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.43K (228426) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 268 (268) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.43K (228426) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b40000004a (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.124 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.92 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 1s520ms (1s520ms) - Open Finished: 1m1s (1m) - First Batch Produced: 1m2s (810.844ms) - First Batch Sent: 1m2s (3.678us) - ExecInternal Finished: 1m2s (3.609ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 6.37 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 6.77 MB (7094996) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.445ms - TotalStorageWaitTime: 910.379ms - TotalThreadsInvoluntaryContextSwitches: 15 (15) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 11.778ms - TotalThreadsUserTime: 213.139ms - TotalThreadsVoluntaryContextSwitches: 570 (570) Fragment Instance Lifecycle Timings: - ExecTime: 814.375ms - ExecTreeExecTime: 811.178ms - OpenTime: 1m - ExecTreeOpenTime: 58s305ms - PrepareTime: 19.878ms - ExecTreePrepareTime: 1.996ms KrpcDataStreamSender (dst_id=170):(Total: 3.330ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 50.87 KB/sec ; Min: 24.64 KB/sec ; Max: 81.09 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 810.750us ; Min: 423.088us ; Max: 1.916ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -199107.000ns ; Min: -1451640.000ns ; Max: -27443.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.714us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 59s118ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Open Finished: 1m1s (58s305ms) - First Batch Requested: 1m1s (24.070us) - First Batch Returned: 1m2s (810.839ms) - Last Batch Returned: 1m2s (395.446us) - Closed: 1m2s (57.776us) - PeakMemoryUsage: 4.55 MB (4769920) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 217.527us - HTResizeTime: 212.995us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 508.618us Buffer pool: - AllocTime: 29.351us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 16.477us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.57K (3571) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 59s117ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (58s013ms) - Initial build available: 1m1s (3.516us) - Open Finished: 1m1s (291.546ms) - First Batch Requested: 1m1s (645.699us) - First Batch Returned: 1m1s (240.027ms) - Last Batch Returned: 1m2s (569.923ms) - Closed: 1m2s (545.847us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 2.55 MB (2668672) - ProbeRows: 3.65K (3649) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 175.953us - RowsReturned: 3.57K (3571) - RowsReturnedRate: 60.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 59s115ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s425ms (3s425ms) - Waiting for builder: 1m1s (57s991ms) - Initial build available: 1m1s (5.650us) - Open Finished: 1m1s (22.170ms) - First Batch Requested: 1m1s (75.909us) - First Batch Returned: 1m1s (291.523ms) - Last Batch Returned: 1m2s (808.889ms) - Closed: 1m2s (2.219ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 228.45K (228448) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 7.712ms - RowsReturned: 3.65K (3649) - RowsReturnedRate: 61.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 59s101ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:152/15.92 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 152 out of 152 Runtime filters: Not all filters arrived (arrived: [], missing [40, 42]), waited for 57s988ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 0:98.31% 1:1.695% 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% File Formats: PARQUET/SNAPPY:152 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.73 MB - FooterProcessingTime: (Avg: 3.328ms ; Min: 660.910us ; Max: 28.805ms ; Number of samples: 152) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - InitialRangeIdealReservation: (Avg: 112.00 KB (114688) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 152) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 239.45 KB (245192) ; Min: 78.04 KB (79909) ; Max: 320.15 KB (327837) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.58 KB (1613) ; Min: 234.00 B (234) ; Max: 5.17 KB (5294) ; Number of samples: 456) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 152) - ParquetRowGroupIdealReservation: (Avg: 33.05 KB (33845) ; Min: 24.00 KB (24576) ; Max: 72.00 KB (73728) ; Number of samples: 152) - ParquetUncompressedBytesReadPerColumn: (Avg: 240.09 KB (245849) ; Min: 78.97 KB (80862) ; Max: 320.66 KB (328356) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.58 KB (1617) ; Min: 232.00 B (232) ; Max: 5.19 KB (5315) ; Number of samples: 456) - AverageHdfsReadThreadConcurrency: 0.02 - BytesRead: 14.23 MB (14922575) - BytesReadDataNodeCache: 0 - BytesReadLocal: 14.23 MB (14922575) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 14.23 MB (14922575) - CachedFileHandlesHitCount: 463 (463) - CachedFileHandlesMissCount: 145 (145) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 2.183ms - MaterializeTupleTime: 62.338ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 456 (456) - NumRowGroups: 152 (152) - NumRowGroupsWithPageIndex: 152 (152) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.08 MB (2176157) - PerReadThreadRawHdfsThroughput: 113.40 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 228.45K (228448) - RowsReturned: 228.45K (228448) - RowsReturnedRate: 3.87 K/sec - ScanRangesComplete: 152 (152) - ScannerIoWaitTime: 910.379ms - TotalRawHdfsOpenFileTime: 99.865ms - TotalRawHdfsReadTime: 125.495ms - TotalReadThroughput: 217.55 KB/sec Buffer pool: - AllocTime: 979.742us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 21.53 MB (22577152) - CumulativeAllocations: 608 (608) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 37.222us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.45K (228448) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 152 (152) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 271 (271) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 228.45K (228448) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 152 (152) Instance 50467cb8e73eeac4:853461b40000004f (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.846 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:134/17.30 MB Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 795.021ms (795.021ms) - Open Finished: 1m (1m) - First Batch Produced: 1m (32.463ms) - First Batch Sent: 1m (3.798us) - ExecInternal Finished: 1m (3.139ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4465340) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.345ms - TotalStorageWaitTime: 11.953ms - TotalThreadsInvoluntaryContextSwitches: 248 (248) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 4.429ms - TotalThreadsUserTime: 490.181ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 35.542ms - ExecTreeExecTime: 32.823ms - OpenTime: 1m - ExecTreeOpenTime: 57s988ms - PrepareTime: 2.018ms - ExecTreePrepareTime: 1.650ms KrpcDataStreamSender (dst_id=170):(Total: 2.771ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 37.41 KB/sec ; Min: 23.72 KB/sec ; Max: 59.40 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.157ms ; Min: 580.094us ; Max: 1.584ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -100779.000ns ; Min: -279769.000ns ; Max: -48847.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.923us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 58s022ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Open Finished: 1m (57s988ms) - First Batch Requested: 1m (74.077us) - First Batch Returned: 1m (32.451ms) - Last Batch Returned: 1m (434.065us) - Closed: 1m (65.504us) - PeakMemoryUsage: 2.07 MB (2174080) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 241.529us - HTResizeTime: 1.142ms - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 2.141ms Buffer pool: - AllocTime: 107.721us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 41.094us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 4.21K (4206) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 58s018ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s985ms) - Initial build available: 1m (13.227us) - Open Finished: 1m (282.293us) - First Batch Requested: 1m (2.509ms) - First Batch Returned: 1m (2.272ms) - Last Batch Returned: 1m (29.327ms) - Closed: 1m (272.202us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 4.29K (4295) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 804.430us - RowsReturned: 4.21K (4206) - RowsReturnedRate: 72.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 58s016ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s971ms) - Initial build available: 1m (16.642us) - Open Finished: 1m (13.618ms) - First Batch Requested: 1m (335.000us) - First Batch Returned: 1m (191.693us) - Last Batch Returned: 1m (33.806ms) - Closed: 1m (560.657us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 4.29K (4295) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 836.751us - RowsReturned: 4.29K (4295) - RowsReturnedRate: 74.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 57s999ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:134/17.30 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: Not all filters arrived (arrived: [42], missing [40]), waited for 57s969ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):132 Node Lifecycle Event Timeline: 1m - Closed: 1m (1m) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 1.721ms ; Min: 1.589ms ; Max: 1.853ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.65 KB (4759) ; Min: 1.50 KB (1538) ; Max: 6.22 KB (6373) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.32 KB (2379) ; Min: 758.00 B (758) ; Max: 3.30 KB (3382) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.67 KB (4778) ; Min: 1.53 KB (1566) ; Max: 6.24 KB (6386) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.33 KB (2389) ; Min: 769.00 B (769) ; Max: 3.31 KB (3394) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 246.57 KB (252483) - BytesReadDataNodeCache: 0 - BytesReadLocal: 246.57 KB (252483) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 246.57 KB (252483) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 149.287us - MaterializeTupleTime: 6.121ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2164244) - PerReadThreadRawHdfsThroughput: 44.71 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 4.29K (4295) - RowsReturned: 4.29K (4295) - RowsReturnedRate: 74.00 /sec - ScanRangesComplete: 134 (134) - ScannerIoWaitTime: 11.953ms - TotalRawHdfsOpenFileTime: 128.074us - TotalRawHdfsReadTime: 5.385ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 56.166us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 10.827us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 4.29K (4295) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 134 (134) - Files rejected: 132 (132) - Files total: 134 (134) - RowGroups processed: 6 (6) - RowGroups rejected: 0 (0) - RowGroups total: 6 (6) - Rows processed: 4.29K (4295) - Rows rejected: 0 (0) - Rows total: 4.29K (4295) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000050 (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.846 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 819.701ms (819.701ms) - Open Finished: 1m (59s991ms) - First Batch Produced: 1m (32.704ms) - First Batch Sent: 1m (6.661us) - ExecInternal Finished: 1m (3.210ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4469432) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.362ms - TotalStorageWaitTime: 13.472ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 40.871ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 35.781ms - ExecTreeExecTime: 33.038ms - OpenTime: 59s991ms - ExecTreeOpenTime: 57s988ms - PrepareTime: 2.122ms - ExecTreePrepareTime: 1.785ms KrpcDataStreamSender (dst_id=170):(Total: 2.817ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 42.92 KB/sec ; Min: 22.33 KB/sec ; Max: 84.18 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 829.277us ; Min: 446.676us ; Max: 1.750ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -153569.000ns ; Min: -654800.000ns ; Max: -45898.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 19.234us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 58s022ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Open Finished: 1m (57s988ms) - First Batch Requested: 1m (92.948us) - First Batch Returned: 1m (32.686ms) - Last Batch Returned: 1m (412.707us) - Closed: 1m (87.732us) - PeakMemoryUsage: 2.07 MB (2169984) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 210.671us - HTResizeTime: 843.364us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 2.271ms Buffer pool: - AllocTime: 123.183us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 55.509us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 9.58K (9578) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 58s017ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s984ms) - Initial build available: 1m (11.665us) - Open Finished: 1m (407.100us) - First Batch Requested: 1m (3.277ms) - First Batch Returned: 1m (11.765ms) - Last Batch Returned: 1m (20.236ms) - Closed: 1m (212.643us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 67.12 KB (68736) - ProbeRows: 9.78K (9784) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.336ms - RowsReturned: 9.58K (9578) - RowsReturnedRate: 165.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 58s015ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s972ms) - Initial build available: 1m (9.463us) - Open Finished: 1m (12.116ms) - First Batch Requested: 1m (328.477us) - First Batch Returned: 1m (314.440us) - Last Batch Returned: 1m (34.863ms) - Closed: 1m (611.064us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 9.78K (9784) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.589ms - RowsReturned: 9.78K (9784) - RowsReturnedRate: 168.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 58s011ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 5 out of 5 Runtime filters: Not all filters arrived (arrived: [42], missing [40]), waited for 57s970ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:5 PARQUET/Unknown(Skipped):153 Node Lifecycle Event Timeline: 1m - Closed: 1m (1m) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 1.430ms ; Min: 571.560us ; Max: 2.819ms ; Number of samples: 5) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 5) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 5) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 10.16 KB (10399) ; Min: 3.28 KB (3361) ; Max: 13.59 KB (13920) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.03 KB (2079) ; Min: 590.00 B (590) ; Max: 2.93 KB (3000) ; Number of samples: 15) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 5) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 10.19 KB (10430) ; Min: 3.33 KB (3413) ; Max: 13.61 KB (13940) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2086) ; Min: 597.00 B (597) ; Max: 2.93 KB (3002) ; Number of samples: 15) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 604.92 KB (619440) - BytesReadDataNodeCache: 0 - BytesReadLocal: 604.92 KB (619440) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 604.92 KB (619440) - CachedFileHandlesHitCount: 20 (20) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 217.087us - MaterializeTupleTime: 8.803ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 5 (5) - NumRowGroupsWithPageIndex: 5 (5) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163576) - PerReadThreadRawHdfsThroughput: 74.67 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 9.78K (9784) - RowsReturned: 9.78K (9784) - RowsReturnedRate: 168.00 /sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 13.472ms - TotalRawHdfsOpenFileTime: 227.216us - TotalRawHdfsReadTime: 7.910ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 109.127us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 840.00 KB (860160) - CumulativeAllocations: 20 (20) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 18.990us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 9.78K (9784) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 158 (158) - Files rejected: 153 (153) - Files total: 158 (158) - RowGroups processed: 12 (12) - RowGroups rejected: 0 (0) - RowGroups total: 12 (12) - Rows processed: 9.78K (9784) - Rows rejected: 0 (0) - Rows total: 9.78K (9784) - Splits processed: 5 (5) - Splits rejected: 0 (0) - Splits total: 5 (5) Instance 50467cb8e73eeac4:853461b400000051 (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.846 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 857.643ms (857.643ms) - Open Finished: 1m (59s955ms) - First Batch Produced: 1m (30.987ms) - First Batch Sent: 1m (3.957us) - ExecInternal Finished: 1m (3.387ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4465260) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.509ms - TotalStorageWaitTime: 14.447ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 59s989ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 25.083ms - TotalThreadsVoluntaryContextSwitches: 28 (28) Fragment Instance Lifecycle Timings: - ExecTime: 34.199ms - ExecTreeExecTime: 31.289ms - OpenTime: 59s955ms - ExecTreeOpenTime: 57s989ms - PrepareTime: 23.062ms - ExecTreePrepareTime: 22.707ms KrpcDataStreamSender (dst_id=170):(Total: 3.037ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 35.42 KB/sec ; Min: 24.25 KB/sec ; Max: 59.15 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.042ms ; Min: 651.253us ; Max: 1.738ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -173484.000ns ; Min: -831306.000ns ; Max: -42458.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.773us - TotalBytesSent: 154.00 B (154) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 58s043ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Open Finished: 1m (57s989ms) - First Batch Requested: 1m (82.908us) - First Batch Returned: 1m (30.973ms) - Last Batch Returned: 1m (380.618us) - Closed: 1m (88.393us) - PeakMemoryUsage: 2.07 MB (2174080) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 190.319us - HTResizeTime: 707.201us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 1.468ms Buffer pool: - AllocTime: 83.106us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.253us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.87K (3869) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 58s060ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s986ms) - Initial build available: 1m (11.327us) - Open Finished: 1m (379.431us) - First Batch Requested: 1m (3.274ms) - First Batch Returned: 1m (12.426ms) - Last Batch Returned: 1m (17.777ms) - Closed: 1m (304.484us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 3.97K (3966) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 687.905us - RowsReturned: 3.87K (3869) - RowsReturnedRate: 66.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 58s058ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s972ms) - Initial build available: 1m (12.207us) - Open Finished: 1m (13.946ms) - First Batch Requested: 1m (302.930us) - First Batch Returned: 1m (296.920us) - Last Batch Returned: 1m (33.120ms) - Closed: 1m (525.422us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.97K (3966) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 785.422us - RowsReturned: 3.97K (3966) - RowsReturnedRate: 68.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 58s021ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: Not all filters arrived (arrived: [42], missing [40]), waited for 57s970ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):156 Node Lifecycle Event Timeline: 1m - Closed: 1m (1m) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 2.906ms ; Min: 2.256ms ; Max: 3.556ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.15 KB (4248) ; Min: 1.42 KB (1453) ; Max: 5.52 KB (5649) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.07 KB (2124) ; Min: 708.00 B (708) ; Max: 2.92 KB (2990) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.17 KB (4265) ; Min: 1.46 KB (1493) ; Max: 5.52 KB (5653) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.08 KB (2132) ; Min: 731.00 B (731) ; Max: 2.92 KB (2994) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 242.52 KB (248336) - BytesReadDataNodeCache: 0 - BytesReadLocal: 242.52 KB (248336) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 242.52 KB (248336) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 132.525us - MaterializeTupleTime: 4.883ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163500) - PerReadThreadRawHdfsThroughput: 56.46 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.97K (3966) - RowsReturned: 3.97K (3966) - RowsReturnedRate: 68.00 /sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 14.447ms - TotalRawHdfsOpenFileTime: 116.127us - TotalRawHdfsReadTime: 4.194ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 53.064us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.801us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 3.97K (3966) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 158 (158) - Files rejected: 156 (156) - Files total: 158 (158) - RowGroups processed: 5 (5) - RowGroups rejected: 0 (0) - RowGroups total: 5 (5) - Rows processed: 3.97K (3966) - Rows rejected: 0 (0) - Rows total: 3.97K (3966) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Instance 50467cb8e73eeac4:853461b400000052 (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.845 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 855.242ms (855.242ms) - Open Finished: 1m (59s954ms) - First Batch Produced: 1m (34.393ms) - First Batch Sent: 1m (11.359us) - ExecInternal Finished: 1m (3.282ms) - MemoryUsage (1s000ms): 120.81 KB, 120.81 KB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB, 2.12 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 4.26 MB (4465060) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.400ms - TotalStorageWaitTime: 9.290ms - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 59s991ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 24.293ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 37.567ms - ExecTreeExecTime: 34.758ms - OpenTime: 59s954ms - ExecTreeOpenTime: 57s986ms - PrepareTime: 8.831ms - ExecTreePrepareTime: 8.502ms KrpcDataStreamSender (dst_id=170):(Total: 2.845ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 41.28 KB/sec ; Min: 21.04 KB/sec ; Max: 76.70 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 1.198ms ; Min: 572.009us ; Max: 1.970ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -226325.000ns ; Min: -778618.000ns ; Max: -44708.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.628us - TotalBytesSent: 156.00 B (156) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=82):(Total: 58s029ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Open Finished: 1m (57s986ms) - First Batch Requested: 1m (89.148us) - First Batch Returned: 1m (34.377ms) - Last Batch Returned: 1m (451.480us) - Closed: 1m (70.838us) - PeakMemoryUsage: 2.07 MB (2174080) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 238.287us - HTResizeTime: 701.273us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 1.605ms Buffer pool: - AllocTime: 79.256us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 43.636us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 3.86K (3856) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=81):(Total: 58s032ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s983ms) - Initial build available: 1m (11.932us) - Open Finished: 1m (262.783us) - First Batch Requested: 1m (2.426ms) - First Batch Returned: 1m (8.872ms) - Last Batch Returned: 1m (24.863ms) - Closed: 1m (154.442us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 3.94K (3939) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 750.009us - RowsReturned: 3.86K (3856) - RowsReturnedRate: 66.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=80):(Total: 58s031ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s823ms (2s823ms) - Waiting for builder: 1m (57s971ms) - Initial build available: 1m (9.778us) - Open Finished: 1m (11.564ms) - First Batch Requested: 1m (296.754us) - First Batch Returned: 1m (180.757us) - Last Batch Returned: 1m (35.796ms) - Closed: 1m (496.573us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 46.12 KB (47232) - ProbeRows: 3.94K (3939) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 643.745us - RowsReturned: 3.94K (3939) - RowsReturnedRate: 67.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=77):(Total: 58s000ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:158/17.31 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 2 out of 2 Runtime filters: Not all filters arrived (arrived: [42], missing [40]), waited for 57s969ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:2 PARQUET/Unknown(Skipped):156 Node Lifecycle Event Timeline: 1m - Closed: 1m (1m) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 1.850ms ; Min: 1.428ms ; Max: 2.271ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 2) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 4.08 KB (4174) ; Min: 1.29 KB (1325) ; Max: 5.47 KB (5605) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 2.04 KB (2087) ; Min: 596.00 B (596) ; Max: 2.88 KB (2953) ; Number of samples: 6) - ParquetRowGroupActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 2) - ParquetRowGroupIdealReservation: (Avg: 40.00 KB (40960) ; Min: 40.00 KB (40960) ; Max: 40.00 KB (40960) ; Number of samples: 2) - ParquetUncompressedBytesReadPerColumn: (Avg: 4.09 KB (4184) ; Min: 1.31 KB (1340) ; Max: 5.48 KB (5609) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 2.04 KB (2092) ; Min: 602.00 B (602) ; Max: 2.89 KB (2958) ; Number of samples: 6) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 242.20 KB (248008) - BytesReadDataNodeCache: 0 - BytesReadLocal: 242.20 KB (248008) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 242.20 KB (248008) - CachedFileHandlesHitCount: 8 (8) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 120.457us - MaterializeTupleTime: 4.413ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 6 (6) - NumRowGroups: 2 (2) - NumRowGroupsWithPageIndex: 2 (2) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2163300) - PerReadThreadRawHdfsThroughput: 44.50 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 3.94K (3939) - RowsReturned: 3.94K (3939) - RowsReturnedRate: 67.00 /sec - ScanRangesComplete: 158 (158) - ScannerIoWaitTime: 9.290ms - TotalRawHdfsOpenFileTime: 119.677us - TotalRawHdfsReadTime: 5.315ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 58.277us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 336.00 KB (344064) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 26.629us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 40 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 3.94K (3939) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 42 (1.00 MB): - Files processed: 158 (158) - Files rejected: 156 (156) - Files total: 158 (158) - RowGroups processed: 5 (5) - RowGroups rejected: 0 (0) - RowGroups total: 5 (5) - Rows processed: 3.94K (3939) - Rows rejected: 0 (0) - Rows total: 3.94K (3939) - Splits processed: 2 (2) - Splits rejected: 0 (0) - Splits total: 2 (2) Averaged Fragment F57:(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.71 MB, max: 43.58 MB, avg: 32.21 MB, stddev: 15.91 MB completion times: min:1m1s max:1m3s mean: 1m2s stddev:543.931ms execution rates: min:160.46 KB/sec max:705.64 KB/sec mean:523.50 KB/sec stddev:256.71 KB/sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 16.72 MB (17530588) - PeakReservation: 10.10 MB (10594986) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 462.247us - TotalStorageWaitTime: 4.361ms - TotalThreadsInvoluntaryContextSwitches: 91 (91) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 4.006ms - TotalThreadsUserTime: 465.729ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 160.979ms - ExecTreeExecTime: 160.306ms - OpenTime: 1m - ExecTreeOpenTime: 58s731ms - PrepareTime: 719.285us - ExecTreePrepareTime: 390.378us KrpcDataStreamSender (dst_id=177):(Total: 750.481us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 46.77 KB (47893) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.326us - TotalBytesSent: 34.00 B (34) - UncompressedRowBatchSize: 60.00 B (60) AGGREGATION_NODE (id=93):(Total: 58s892ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 8.09 MB (8480896) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 33.289us - HTResizeTime: 52.825us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1 (1) - StreamingTime: 519.378us Buffer pool: - AllocTime: 13.659us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.935us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.73K (2730) - HashCollisions: 0 (0) - Probes: 10.56K (10564) - Resizes: 5 (5) - Travel: 0 (0) HASH_JOIN_NODE (id=92):(Total: 58s886ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 480.52K (480516) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 14.701ms - RowsReturned: 10.56K (10564) - RowsReturnedRate: 178.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=90):(Total: 58s803ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.97 MB (4161220) - BytesReadDataNodeCache: 0 - BytesReadLocal: 3.97 MB (4161220) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.97 MB (4161220) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 977.240us - MaterializeTupleTime: 131.864ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 69 (69) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.61 MB (9025709) - PerReadThreadRawHdfsThroughput: 1.11 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 480.52K (480516) - RowsReturned: 480.52K (480516) - RowsReturnedRate: 8.16 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.361ms - TotalRawHdfsOpenFileTime: 44.725us - TotalRawHdfsReadTime: 4.156ms - TotalReadThroughput: 30.36 KB/sec Buffer pool: - AllocTime: 95.229us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.24 MB (6545408) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.10 MB (8497834) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.12 MB (6414336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 81.409us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 48 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F57: Instance 50467cb8e73eeac4:853461b400000053 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.126 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.58 MB Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 1s378ms (1s378ms) - Open Finished: 1m1s (1m) - First Batch Produced: 1m1s (222.753ms) - First Batch Sent: 1m1s (7.183us) - ExecInternal Finished: 1m1s (617.444us) - MemoryUsage (1s000ms): 87.69 KB, 4.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 9.68 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 18.75 MB (19665118) - PeakReservation: 10.16 MB (10649600) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 342.209us - TotalStorageWaitTime: 4.636ms - TotalThreadsInvoluntaryContextSwitches: 94 (94) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 7.982ms - TotalThreadsUserTime: 542.679ms - TotalThreadsVoluntaryContextSwitches: 41 (41) Fragment Instance Lifecycle Timings: - ExecTime: 223.294ms - ExecTreeExecTime: 222.754ms - OpenTime: 1m - ExecTreeOpenTime: 58s695ms - PrepareTime: 741.880us - ExecTreePrepareTime: 404.111us KrpcDataStreamSender (dst_id=177):(Total: 627.167us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: 0.00 /sec (Number of samples: 0) - RpcNetworkTime: (Avg: 323.317us ; Min: 255.718us ; Max: 385.946us ; Number of samples: 12) - RpcRecvrTime: (Avg: -74050.000ns ; Min: -148264.000ns ; Max: -34587.000ns ; Number of samples: 12) - EosSent: 12 (12) - PeakMemoryUsage: 41.44 KB (42432) - RowsSent: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - TotalBytesSent: 0 - UncompressedRowBatchSize: 0 AGGREGATION_NODE (id=93):(Total: 58s919ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m1s - Open Started: 2s723ms (2s723ms) - Open Finished: 1m1s (58s695ms) - First Batch Requested: 1m1s (48.882us) - First Batch Returned: 1m1s (222.744ms) - Last Batch Returned: 1m1s (15.914us) - Closed: 1m1s (71.738us) - PeakMemoryUsage: 10.03 MB (10517632) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 0 (0) - StreamingTime: 23.880us Buffer pool: - AllocTime: 10.397us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.273us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) HASH_JOIN_NODE (id=92):(Total: 58s912ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m1s - Open Started: 2s723ms (2s723ms) - Waiting for builder: 1m1s (58s655ms) - Initial build available: 1m1s (14.950us) - Open Finished: 1m1s (38.498ms) - First Batch Requested: 1m1s (1.498ms) - First Batch Returned: 1m1s (165.880ms) - Last Batch Returned: 1m1s (52.979ms) - Closed: 1m1s (3.093ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 656.13K (656132) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 19.857ms - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=90):(Total: 58s696ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.58 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [48]), waited for 58s468ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m1s - Closed: 1m1s (1m1s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.67 MB - FooterProcessingTime: (Avg: 1.885ms ; Min: 1.885ms ; Max: 1.885ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.23 MB (1292048) ; Min: 14.06 KB (14395) ; Max: 2.41 MB (2532089) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 53.13 KB (54402) ; Min: 101.00 B (101) ; Max: 64.64 KB (66191) ; Number of samples: 95) - ParquetRowGroupActualReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.24 MB (1299260) ; Min: 17.34 KB (17761) ; Max: 2.41 MB (2531811) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 53.42 KB (54705) ; Min: 98.00 B (98) ; Max: 64.80 KB (66358) ; Number of samples: 95) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.34 MB (5596483) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.34 MB (5596483) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.34 MB (5596483) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.273ms - MaterializeTupleTime: 185.443ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 95 (95) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.67 MB (9089093) - PerReadThreadRawHdfsThroughput: 655.14 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 656.13K (656132) - RowsReturned: 656.13K (656132) - RowsReturnedRate: 11.18 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.636ms - TotalRawHdfsOpenFileTime: 86.405us - TotalRawHdfsReadTime: 8.146ms - TotalReadThroughput: 91.09 KB/sec Buffer pool: - AllocTime: 238.590us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.28 MB (8683520) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.16 MB (8552448) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.16 MB (8552448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 212.021us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 48 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b400000054 (host=tarmstrong-Precision-7540:22000):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:12.897 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.33 MB Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 2s044ms (2s044ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m2s (222.597ms) - First Batch Sent: 1m2s (4.427us) - ExecInternal Finished: 1m2s (1.176ms) - MemoryUsage (1s000ms): 87.69 KB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 18.74 MB (19649899) - PeakReservation: 10.16 MB (10649600) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 616.136us - TotalStorageWaitTime: 7.274ms - TotalThreadsInvoluntaryContextSwitches: 81 (81) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 4.038ms - TotalThreadsUserTime: 512.977ms - TotalThreadsVoluntaryContextSwitches: 23 (23) Fragment Instance Lifecycle Timings: - ExecTime: 223.703ms - ExecTreeExecTime: 222.779ms - OpenTime: 1m - ExecTreeOpenTime: 58s943ms - PrepareTime: 735.941us - ExecTreePrepareTime: 419.514us KrpcDataStreamSender (dst_id=177):(Total: 962.614us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 83.28 KB/sec ; Min: 62.35 KB/sec ; Max: 94.88 KB/sec ; Number of samples: 4) - RpcNetworkTime: (Avg: 348.571us ; Min: 236.117us ; Max: 492.279us ; Number of samples: 16) - RpcRecvrTime: (Avg: -74193.000ns ; Min: -309632.000ns ; Max: -29430.000ns ; Number of samples: 16) - EosSent: 12 (12) - PeakMemoryUsage: 57.44 KB (58816) - RowsSent: 4 (4) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.979us - TotalBytesSent: 102.00 B (102) - UncompressedRowBatchSize: 180.00 B (180) AGGREGATION_NODE (id=93):(Total: 59s167ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 3s122ms (3s122ms) - Open Finished: 1m2s (58s943ms) - First Batch Requested: 1m2s (31.726us) - First Batch Returned: 1m2s (222.591ms) - Last Batch Returned: 1m2s (233.433us) - Closed: 1m2s (74.001us) - PeakMemoryUsage: 10.03 MB (10517632) - RowsReturned: 4 (4) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 99.869us - HTResizeTime: 158.477us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 4 (4) - StreamingTime: 1.528ms Buffer pool: - AllocTime: 22.871us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.533us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 31.69K (31693) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=92):(Total: 59s158ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m2s - Open Started: 3s122ms (3s122ms) - Waiting for builder: 1m2s (58s921ms) - Initial build available: 1m2s (6.441us) - Open Finished: 1m2s (21.730ms) - First Batch Requested: 1m2s (861.680us) - First Batch Returned: 1m2s (5.711ms) - Last Batch Returned: 1m2s (212.096ms) - Closed: 1m2s (4.371ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 652.17K (652171) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 20.692ms - RowsReturned: 31.69K (31693) - RowsReturnedRate: 535.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=90):(Total: 59s129ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/43.33 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [48]), waited for 58s921ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m2s - Closed: 1m2s (1m2s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 893.408us ; Min: 893.408us ; Max: 893.408us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.23 MB (1284633) ; Min: 13.91 KB (14239) ; Max: 2.40 MB (2516023) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 53.38 KB (54665) ; Min: 242.00 B (242) ; Max: 64.61 KB (66164) ; Number of samples: 94) - ParquetRowGroupActualReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.16 MB (8552448) ; Min: 8.16 MB (8552448) ; Max: 8.16 MB (8552448) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.23 MB (1293391) ; Min: 17.39 KB (17806) ; Max: 2.40 MB (2515748) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 53.75 KB (55037) ; Min: 262.00 B (262) ; Max: 64.76 KB (66315) ; Number of samples: 94) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.31 MB (5566485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.31 MB (5566485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.31 MB (5566485) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.453ms - MaterializeTupleTime: 180.793ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 94 (94) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.67 MB (9089102) - PerReadThreadRawHdfsThroughput: 1.97 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 652.17K (652171) - RowsReturned: 652.17K (652171) - RowsReturnedRate: 11.03 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 7.274ms - TotalRawHdfsOpenFileTime: 20.812us - TotalRawHdfsReadTime: 2.637ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 34.998us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.28 MB (8683520) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.16 MB (8552448) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.16 MB (8552448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 27.963us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 48 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b400000055 (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.850 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.71 MB Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 875.055ms (875.055ms) - Open Finished: 1m (1m) - First Batch Produced: 1m (35.383ms) - First Batch Sent: 1m (2.606us) - ExecInternal Finished: 1m (603.732us) - MemoryUsage (1s000ms): 87.69 KB, 4.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB, 8.09 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 12.66 MB (13276749) - PeakReservation: 10.00 MB (10485760) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 428.396us - TotalStorageWaitTime: 1.175ms - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 341.530ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 35.940ms - ExecTreeExecTime: 35.384ms - OpenTime: 1m - ExecTreeOpenTime: 58s555ms - PrepareTime: 680.035us - ExecTreePrepareTime: 347.510us KrpcDataStreamSender (dst_id=177):(Total: 661.663us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: 0.00 /sec (Number of samples: 0) - RpcNetworkTime: (Avg: 408.900us ; Min: 376.610us ; Max: 433.970us ; Number of samples: 12) - RpcRecvrTime: (Avg: -58209.000ns ; Min: -101815.000ns ; Max: -27869.000ns ; Number of samples: 12) - EosSent: 12 (12) - PeakMemoryUsage: 41.44 KB (42432) - RowsSent: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - TotalBytesSent: 0 - UncompressedRowBatchSize: 0 AGGREGATION_NODE (id=93):(Total: 58s591ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m - Open Started: 2s331ms (2s331ms) - Open Finished: 1m (58s555ms) - First Batch Requested: 1m (26.660us) - First Batch Returned: 1m (35.378ms) - Last Batch Returned: 1m (9.125us) - Closed: 1m (42.362us) - PeakMemoryUsage: 4.20 MB (4407424) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 0 (0) - StreamingTime: 5.758us Buffer pool: - AllocTime: 7.710us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) HASH_JOIN_NODE (id=92):(Total: 58s589ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m - Open Started: 2s331ms (2s331ms) - Waiting for builder: 1m (58s543ms) - Initial build available: 1m (5.281us) - Open Finished: 1m (11.156ms) - First Batch Requested: 1m (842.146us) - First Batch Returned: 1m (34.440ms) - Last Batch Returned: 1m (372.236us) - Closed: 1m (96.049us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 133.25K (133245) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.556ms - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=90):(Total: 58s584ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [48]), waited for 58s544ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m - Closed: 1m (1m) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 636.557us ; Min: 636.557us ; Max: 636.557us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 219.08 KB (224336) ; Min: 2.55 KB (2612) ; Max: 429.76 KB (440072) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 46.12 KB (47228) ; Min: 1007.00 B (1007) ; Max: 64.62 KB (66173) ; Number of samples: 19) - ParquetRowGroupActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 2.04 MB (2138112) ; Min: 2.04 MB (2138112) ; Max: 2.04 MB (2138112) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 220.50 KB (225794) ; Min: 3.36 KB (3436) ; Max: 429.71 KB (440019) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 46.42 KB (47535) ; Min: 1.24 KB (1266) ; Max: 64.80 KB (66354) ; Number of samples: 19) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.26 MB (1320693) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.26 MB (1320693) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.26 MB (1320693) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 204.624us - MaterializeTupleTime: 29.357ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 19 (19) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.49 MB (8898933) - PerReadThreadRawHdfsThroughput: 747.29 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 133.25K (133245) - RowsReturned: 133.25K (133245) - RowsReturnedRate: 2.27 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.175ms - TotalRawHdfsOpenFileTime: 26.960us - TotalRawHdfsReadTime: 1.685ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 12.101us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.16 MB (2269184) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.04 MB (2138112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.243us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 48 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F63:(Total: 2s267ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 4.68 MB, max: 40.42 MB, avg: 22.55 MB, stddev: 17.87 MB completion times: min:7s299ms max:8s046ms mean: 7s673ms stddev:373.698ms execution rates: min:656.16 KB/sec max:5.02 MB/sec mean:2.83 MB/sec stddev:2.19 MB/sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 11.16 MB (11700216) - PeakReservation: 10.38 MB (10878976) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.976ms - TotalStorageWaitTime: 20.428ms - TotalThreadsInvoluntaryContextSwitches: 392 (392) - TotalThreadsTotalWallClockTime: 2s257ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 615.180ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 150.446ms - ExecTreeExecTime: 145.721ms - OpenTime: 2s107ms - ExecTreeOpenTime: 98.945ms - PrepareTime: 9.615ms - ExecTreePrepareTime: 557.310us KrpcDataStreamSender (dst_id=185):(Total: 4.791ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 47.695us - TotalBytesSent: 711.00 B (711) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=104):(Total: 245.210ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.16 MB (2268288) - RowsReturned: 30 (30) - RowsReturnedRate: 224.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 462.923us - HTResizeTime: 1.258ms - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 1.995ms Buffer pool: - AllocTime: 42.591us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.476us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 7.80K (7796) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=103):(Total: 239.238ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 123.62 KB (126592) - ProbeRows: 7.80K (7796) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 668.435us - RowsReturned: 7.80K (7796) - RowsReturnedRate: 26.82 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=102):(Total: 237.880ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 87.62 KB (89728) - ProbeRows: 7.80K (7796) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 577.747us - RowsReturned: 7.80K (7796) - RowsReturnedRate: 26.99 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=99):(Total: 235.050ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.32 MB (3479738) - BytesReadDataNodeCache: 0 - BytesReadLocal: 3.32 MB (3479738) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.32 MB (3479738) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 709.400us - MaterializeTupleTime: 179.691ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 56 (56) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.91 MB (9337779) - PerReadThreadRawHdfsThroughput: 258.09 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 359.69K (359692) - RowsReturned: 7.80K (7796) - RowsReturnedRate: 27.56 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 20.428ms - TotalRawHdfsOpenFileTime: 4.412ms - TotalRawHdfsReadTime: 19.542ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 41.727us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 5.05 MB (5292032) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.38 MB (8781824) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.92 MB (5160960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.444us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 52 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 359.69K (359692) - Rows rejected: 94 (94) - Rows total: 359.69K (359692) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 54 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 359.60K (359598) - Rows rejected: 351.80K (351801) - Rows total: 359.60K (359598) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F63: Instance 50467cb8e73eeac4:853461b400000056 (host=tarmstrong-Precision-7540:22001):(Total: 2s786ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.935 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB Fragment Instance Lifecycle Event Timeline: 4s163ms - Prepare Finished: 1s377ms (1s377ms) - Open Finished: 3s880ms (2s503ms) - First Batch Produced: 4s159ms (278.868ms) - First Batch Sent: 4s159ms (3.275us) - ExecInternal Finished: 4s163ms (3.629ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 11.61 MB (12174763) - PeakReservation: 10.75 MB (11272192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.134ms - TotalStorageWaitTime: 39.579ms - TotalThreadsInvoluntaryContextSwitches: 633 (633) - TotalThreadsTotalWallClockTime: 2s785ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 728.729ms - TotalThreadsVoluntaryContextSwitches: 53 (53) Fragment Instance Lifecycle Timings: - ExecTime: 282.342ms - ExecTreeExecTime: 279.606ms - OpenTime: 2s503ms - ExecTreeOpenTime: 130.410ms - PrepareTime: 783.613us - ExecTreePrepareTime: 459.814us KrpcDataStreamSender (dst_id=185):(Total: 2.802ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 74.21 KB/sec ; Min: 15.30 KB/sec ; Max: 212.64 KB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 784.235us ; Min: 239.897us ; Max: 1.853ms ; Number of samples: 23) - RpcRecvrTime: (Avg: -120666.000ns ; Min: -568611.000ns ; Max: -29671.000ns ; Number of samples: 23) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 43.658us - TotalBytesSent: 710.00 B (710) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=104):(Total: 410.463ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s160ms - Open Started: 3s750ms (3s750ms) - Open Finished: 3s880ms (130.405ms) - First Batch Requested: 3s880ms (41.140us) - First Batch Returned: 4s159ms (278.861ms) - Last Batch Returned: 4s160ms (949.108us) - Closed: 4s160ms (72.582us) - PeakMemoryUsage: 2.22 MB (2325632) - RowsReturned: 30 (30) - RowsReturnedRate: 73.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 480.180us - HTResizeTime: 2.231ms - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 3.415ms Buffer pool: - AllocTime: 48.404us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 14.18K (14179) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=103):(Total: 401.170ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s159ms - Open Started: 3s750ms (3s750ms) - Waiting for builder: 3s877ms (126.897ms) - Initial build available: 3s877ms (5.354us) - Open Finished: 3s877ms (111.127us) - First Batch Requested: 3s880ms (3.441ms) - First Batch Returned: 3s880ms (112.362us) - Last Batch Returned: 4s157ms (276.992ms) - Closed: 4s159ms (1.668ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 140.12 KB (143488) - ProbeRows: 14.18K (14179) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.225ms - RowsReturned: 14.18K (14179) - RowsReturnedRate: 35.34 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=102):(Total: 399.209ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s159ms - Open Started: 3s750ms (3s750ms) - Waiting for builder: 3s750ms (494.986us) - Initial build available: 3s750ms (4.339us) - Open Finished: 3s877ms (126.305ms) - First Batch Requested: 3s877ms (115.563us) - First Batch Returned: 3s877ms (74.013us) - Last Batch Returned: 4s157ms (280.263ms) - Closed: 4s159ms (1.942ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 104.12 KB (106624) - ProbeRows: 14.18K (14179) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.050ms - RowsReturned: 14.18K (14179) - RowsReturnedRate: 35.52 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=99):(Total: 397.335ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s302ms. Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 4s159ms - Closed: 4s159ms (4s159ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0 - FooterProcessingTime: (Avg: 11.989ms ; Min: 11.989ms ; Max: 11.989ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 1.37 MB (1432701) ; Min: 161.78 KB (165666) ; Max: 2.42 MB (2537281) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 54.87 KB (56184) ; Min: 10.80 KB (11060) ; Max: 64.10 KB (65643) ; Number of samples: 102) - ParquetRowGroupActualReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.37 MB (1432544) ; Min: 161.74 KB (165624) ; Max: 2.42 MB (2537003) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 54.86 KB (56178) ; Min: 10.80 KB (11055) ; Max: 64.11 KB (65646) ; Number of samples: 102) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.88 MB (6163182) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.88 MB (6163182) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.88 MB (6163182) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.260ms - MaterializeTupleTime: 309.379ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 102 (102) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.29 MB (9740981) - PerReadThreadRawHdfsThroughput: 159.03 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 657.44K (657444) - RowsReturned: 14.18K (14179) - RowsReturnedRate: 35.69 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 39.579ms - TotalRawHdfsOpenFileTime: 8.798ms - TotalRawHdfsReadTime: 36.959ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 45.306us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.88 MB (9306112) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.75 MB (9175040) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.75 MB (9175040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 36.157us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 52 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 657.44K (657444) - Rows rejected: 175 (175) - Rows total: 657.44K (657444) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 54 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 657.27K (657269) - Rows rejected: 643.09K (643090) - Rows total: 657.27K (657269) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance 50467cb8e73eeac4:853461b400000057 (host=tarmstrong-Precision-7540:22000):(Total: 1s748ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.204 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB Fragment Instance Lifecycle Event Timeline: 3s862ms - Prepare Finished: 2s132ms (2s132ms) - Open Finished: 3s843ms (1s711ms) - First Batch Produced: 3s854ms (11.100ms) - First Batch Sent: 3s854ms (3.480us) - ExecInternal Finished: 3s862ms (7.567ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.71 MB (11225670) - PeakReservation: 10.00 MB (10485760) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 30 (30) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.818ms - TotalStorageWaitTime: 1.276ms - TotalThreadsInvoluntaryContextSwitches: 151 (151) - TotalThreadsTotalWallClockTime: 1s729ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 501.632ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 18.551ms - ExecTreeExecTime: 11.836ms - OpenTime: 1s711ms - ExecTreeOpenTime: 67.480ms - PrepareTime: 18.447ms - ExecTreePrepareTime: 654.807us KrpcDataStreamSender (dst_id=185):(Total: 6.781ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 135.49 KB/sec ; Min: 33.79 KB/sec ; Max: 349.75 KB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 852.367us ; Min: 266.529us ; Max: 5.183ms ; Number of samples: 23) - RpcRecvrTime: (Avg: -335341.000ns ; Min: -4815267.000ns ; Max: -45184.000ns ; Number of samples: 23) - EosSent: 12 (12) - PeakMemoryUsage: 85.44 KB (87488) - RowsSent: 30 (30) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 51.733us - TotalBytesSent: 712.00 B (712) - UncompressedRowBatchSize: 1.32 KB (1350) AGGREGATION_NODE (id=104):(Total: 79.957ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s855ms - Open Started: 3s775ms (3s775ms) - Open Finished: 3s843ms (67.475ms) - First Batch Requested: 3s843ms (32.256us) - First Batch Returned: 3s854ms (11.094ms) - Last Batch Returned: 3s855ms (907.611us) - Closed: 3s855ms (78.701us) - PeakMemoryUsage: 2.11 MB (2210944) - RowsReturned: 30 (30) - RowsReturnedRate: 375.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 445.666us - HTResizeTime: 284.662us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 30 (30) - StreamingTime: 575.817us Buffer pool: - AllocTime: 36.778us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.953us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.41K (1414) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=103):(Total: 77.306ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s854ms - Open Started: 3s775ms (3s775ms) - Waiting for builder: 3s842ms (66.394ms) - Initial build available: 3s842ms (20.304us) - Open Finished: 3s842ms (117.753us) - First Batch Requested: 3s843ms (981.566us) - First Batch Returned: 3s843ms (80.022us) - Last Batch Returned: 3s854ms (10.432ms) - Closed: 3s854ms (487.312us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 107.12 KB (109696) - ProbeRows: 1.41K (1414) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 111.209us - RowsReturned: 1.41K (1414) - RowsReturnedRate: 18.29 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=102):(Total: 76.551ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s854ms - Open Started: 3s776ms (3s776ms) - Waiting for builder: 3s783ms (7.712ms) - Initial build available: 3s783ms (5.851us) - Open Finished: 3s842ms (58.584ms) - First Batch Requested: 3s842ms (132.895us) - First Batch Returned: 3s842ms (78.140us) - Last Batch Returned: 3s853ms (11.177ms) - Closed: 3s854ms (795.250us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 71.12 KB (72832) - ProbeRows: 1.41K (1414) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 105.232us - RowsReturned: 1.41K (1414) - RowsReturnedRate: 18.47 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=99):(Total: 72.766ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_sales Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 536ms. Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s854ms - Closed: 3s854ms (3s854ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0 - FooterProcessingTime: (Avg: 1.034ms ; Min: 1.034ms ; Max: 1.034ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 89.57 KB (91718) ; Min: 15.23 KB (15596) ; Max: 151.01 KB (154639) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 35.83 KB (36687) ; Min: 3.65 KB (3737) ; Max: 64.03 KB (65566) ; Number of samples: 10) - ParquetRowGroupActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 1.09 MB (1146880) ; Min: 1.09 MB (1146880) ; Max: 1.09 MB (1146880) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 89.55 KB (91704) ; Min: 15.22 KB (15588) ; Max: 150.99 KB (154615) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 35.82 KB (36681) ; Min: 3.65 KB (3733) ; Max: 64.02 KB (65559) ; Number of samples: 10) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 777.63 KB (796295) - BytesReadDataNodeCache: 0 - BytesReadLocal: 777.63 KB (796295) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 777.63 KB (796295) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 158.106us - MaterializeTupleTime: 50.004ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.52 MB (8934578) - PerReadThreadRawHdfsThroughput: 357.15 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 61.94K (61940) - RowsReturned: 1.41K (1414) - RowsReturnedRate: 19.43 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.276ms - TotalRawHdfsOpenFileTime: 27.165us - TotalRawHdfsReadTime: 2.126ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 38.148us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.22 MB (1277952) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.09 MB (1146880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.731us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 52 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 61.94K (61940) - Rows rejected: 13 (13) - Rows total: 61.94K (61940) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 54 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 61.93K (61927) - Rows rejected: 60.51K (60513) - Rows total: 61.93K (61927) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F77:(Total: 2s656ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s251ms max:8s058ms mean: 7s201ms stddev:739.550ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4095914) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s312ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 29 (29) - TotalThreadsTotalWallClockTime: 2s654ms - TotalThreadsSysTime: 570.083us - TotalThreadsUserTime: 61.283ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 346.510ms - ExecTreeExecTime: 40.179us - OpenTime: 2s307ms - ExecTreeOpenTime: 1s315ms - PrepareTime: 2.032ms - ExecTreePrepareTime: 1.855ms Hash Join Builder (join_node_id=14):(Total: 347.168ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 9.341us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 20.674us - LargestPartitionPercent: 37 (37) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2044373) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 2.031us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 58.67 KB (60074) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 58.67 KB (60074) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s316ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 17.698us - GetResultsTime: 14.719us - HTResizeTime: 1.694us - LargestPartitionPercent: 37 (37) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046762) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.370us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 288.00 KB (294912) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.704us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 512 (512) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s312ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.431us - PeakMemoryUsage: 6.67 KB (6826) - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 1.473us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.67 KB (6826) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 6.67 KB (6826) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.67 KB (6826) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 620.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s312ms - TotalBytesDequeued: 22.00 B (22) - TotalGetBatchTime: 1s312ms - DataWaitTime: 1s312ms Enqueue: - DeserializeRowBatchTime: 7.891us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 12.00 B (12) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F77: Instance 50467cb8e73eeac4:853461b40000008a (host=tarmstrong-Precision-7540:22002):(Total: 3s239ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.121 Fragment Instance Lifecycle Event Timeline: 4s155ms - Prepare Finished: 926.722ms (926.722ms) - Open Finished: 3s801ms (2s874ms) - First Batch Produced: 3s801ms (40.480us) - First Batch Sent: 3s801ms (17.058us) - ExecInternal Finished: 4s155ms (354.221ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s696ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 3s228ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 236.142ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 354.172ms - ExecTreeExecTime: 71.235us - OpenTime: 2s874ms - ExecTreeOpenTime: 1s698ms - PrepareTime: 10.560ms - ExecTreePrepareTime: 10.393ms Hash Join Builder (join_node_id=14):(Total: 354.476ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 16.142us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 44.917us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.311us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s708ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s801ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s800ms (1s698ms) - First Batch Requested: 3s801ms (471.459us) - First Batch Returned: 3s801ms (36.087us) - Last Batch Returned: 3s801ms (53.573us) - Closed: 3s801ms (64.373us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 21.973us - GetResultsTime: 27.686us - HTResizeTime: 1.246us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.448us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.848us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s696ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s800ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s798ms (1s696ms) - First Batch Requested: 3s800ms (1.450ms) - First Batch Returned: 3s800ms (15.383us) - Last Batch Returned: 3s800ms (412.000ns) - Closed: 3s800ms (61.543us) - ConvertRowBatchTime: 3.432us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.507us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.170us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s696ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1s696ms - DataWaitTime: 1s696ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -85277.000ns ; Min: -85277.000ns ; Max: -85277.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.390us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000008b (host=tarmstrong-Precision-7540:22002):(Total: 3s208ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.121 Fragment Instance Lifecycle Event Timeline: 4s154ms - Prepare Finished: 946.953ms (946.953ms) - Open Finished: 3s800ms (2s853ms) - First Batch Produced: 3s800ms (10.130us) - First Batch Sent: 3s800ms (3.448us) - ExecInternal Finished: 4s154ms (353.836ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s695ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s207ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.648ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 353.740ms - ExecTreeExecTime: 6.562us - OpenTime: 2s853ms - ExecTreeOpenTime: 1s697ms - PrepareTime: 430.970us - ExecTreePrepareTime: 270.197us Hash Join Builder (join_node_id=14):(Total: 354.095ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.540us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s698ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s800ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s800ms (1s697ms) - First Batch Requested: 3s800ms (452.529us) - First Batch Returned: 3s800ms (3.825us) - Last Batch Returned: 3s800ms (357.000ns) - Closed: 3s800ms (63.175us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 6.817us - GetResultsTime: 0.000ns - HTResizeTime: 1.728us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.376us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.816us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s695ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s799ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s798ms (1s695ms) - First Batch Requested: 3s799ms (1.410ms) - First Batch Returned: 3s799ms (9.473us) - Last Batch Returned: 3s799ms (756.000ns) - Closed: 3s799ms (58.240us) - ConvertRowBatchTime: 3.316us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s695ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s695ms - DataWaitTime: 1s695ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000008c (host=tarmstrong-Precision-7540:22002):(Total: 3s195ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.121 Fragment Instance Lifecycle Event Timeline: 4s157ms - Prepare Finished: 962.114ms (962.114ms) - Open Finished: 3s800ms (2s838ms) - First Batch Produced: 3s800ms (41.985us) - First Batch Sent: 3s800ms (17.678us) - ExecInternal Finished: 4s157ms (356.693ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s695ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s195ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.022ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 356.665ms - ExecTreeExecTime: 72.337us - OpenTime: 2s838ms - ExecTreeOpenTime: 1s697ms - PrepareTime: 467.789us - ExecTreePrepareTime: 286.406us Hash Join Builder (join_node_id=14):(Total: 356.971ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 16.628us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 44.489us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.676us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s698ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s800ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s800ms (1s697ms) - First Batch Requested: 3s800ms (478.583us) - First Batch Returned: 3s800ms (36.725us) - Last Batch Returned: 3s800ms (54.331us) - Closed: 3s800ms (66.419us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 31.074us - GetResultsTime: 26.157us - HTResizeTime: 2.143us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.066us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s695ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s799ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s797ms (1s695ms) - First Batch Requested: 3s799ms (1.403ms) - First Batch Returned: 3s799ms (20.143us) - Last Batch Returned: 3s799ms (610.000ns) - Closed: 3s799ms (92.671us) - ConvertRowBatchTime: 5.097us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.117us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.648us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s695ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1s695ms - DataWaitTime: 1s695ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -107925.000ns ; Min: -107925.000ns ; Max: -107925.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.312us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000008d (host=tarmstrong-Precision-7540:22002):(Total: 3s191ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.121 Fragment Instance Lifecycle Event Timeline: 4s155ms - Prepare Finished: 964.226ms (964.226ms) - Open Finished: 3s804ms (2s839ms) - First Batch Produced: 3s804ms (10.045us) - First Batch Sent: 3s804ms (4.140us) - ExecInternal Finished: 4s155ms (351.548ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s698ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s191ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.499ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 351.458ms - ExecTreeExecTime: 6.195us - OpenTime: 2s839ms - ExecTreeOpenTime: 1s700ms - PrepareTime: 385.926us - ExecTreePrepareTime: 237.315us Hash Join Builder (join_node_id=14):(Total: 351.895ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.295us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s701ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s804ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s803ms (1s700ms) - First Batch Requested: 3s804ms (541.412us) - First Batch Returned: 3s804ms (3.781us) - Last Batch Returned: 3s804ms (341.000ns) - Closed: 3s804ms (67.070us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.828us - GetResultsTime: 0.000ns - HTResizeTime: 1.076us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.359us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s698ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s802ms - Open Started: 2s102ms (2s102ms) - Open Finished: 3s801ms (1s698ms) - First Batch Requested: 3s802ms (1.169ms) - First Batch Returned: 3s802ms (6.467us) - Last Batch Returned: 3s802ms (382.000ns) - Closed: 3s802ms (58.162us) - ConvertRowBatchTime: 2.387us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s698ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s698ms - DataWaitTime: 1s698ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000092 (host=tarmstrong-Precision-7540:22001):(Total: 2s963ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.941 Fragment Instance Lifecycle Event Timeline: 4s211ms - Prepare Finished: 1s248ms (1s248ms) - Open Finished: 3s772ms (2s524ms) - First Batch Produced: 3s772ms (10.473us) - First Batch Sent: 3s772ms (3.452us) - ExecInternal Finished: 4s211ms (439.154ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s510ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 196 (196) - TotalThreadsTotalWallClockTime: 2s963ms - TotalThreadsSysTime: 6.841ms - TotalThreadsUserTime: 231.974ms - TotalThreadsVoluntaryContextSwitches: 44 (44) Fragment Instance Lifecycle Timings: - ExecTime: 439.042ms - ExecTreeExecTime: 6.899us - OpenTime: 2s524ms - ExecTreeOpenTime: 1s512ms - PrepareTime: 464.650us - ExecTreePrepareTime: 290.645us Hash Join Builder (join_node_id=14):(Total: 443.040ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.565us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s512ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s772ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s768ms (1s512ms) - First Batch Requested: 3s772ms (4.115ms) - First Batch Returned: 3s772ms (4.405us) - Last Batch Returned: 3s772ms (395.000ns) - Closed: 3s772ms (80.369us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.810us - GetResultsTime: 0.000ns - HTResizeTime: 1.141us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.758us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s510ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s767ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s766ms (1s510ms) - First Batch Requested: 3s767ms (1.552ms) - First Batch Returned: 3s767ms (5.979us) - Last Batch Returned: 3s767ms (355.000ns) - Closed: 3s767ms (38.930us) - ConvertRowBatchTime: 2.164us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s510ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s510ms - DataWaitTime: 1s510ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000093 (host=tarmstrong-Precision-7540:22001):(Total: 2s935ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.940 Fragment Instance Lifecycle Event Timeline: 4s211ms - Prepare Finished: 1s276ms (1s276ms) - Open Finished: 3s772ms (2s495ms) - First Batch Produced: 3s772ms (10.289us) - First Batch Sent: 3s772ms (4.145us) - ExecInternal Finished: 4s211ms (439.818ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s512ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 5 (5) - TotalThreadsTotalWallClockTime: 2s934ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.737ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 439.739ms - ExecTreeExecTime: 6.297us - OpenTime: 2s495ms - ExecTreeOpenTime: 1s515ms - PrepareTime: 466.853us - ExecTreePrepareTime: 297.586us Hash Join Builder (join_node_id=14):(Total: 440.140ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.684us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s515ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s772ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s771ms (1s515ms) - First Batch Requested: 3s772ms (523.241us) - First Batch Returned: 3s772ms (3.646us) - Last Batch Returned: 3s772ms (370.000ns) - Closed: 3s772ms (83.623us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.130us - GetResultsTime: 0.000ns - HTResizeTime: 1.341us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.193us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s512ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s770ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s768ms (1s512ms) - First Batch Requested: 3s770ms (1.398ms) - First Batch Returned: 3s770ms (6.859us) - Last Batch Returned: 3s770ms (2.842us) - Closed: 3s770ms (47.175us) - ConvertRowBatchTime: 2.893us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s512ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s512ms - DataWaitTime: 1s512ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000094 (host=tarmstrong-Precision-7540:22001):(Total: 2s919ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.947 Fragment Instance Lifecycle Event Timeline: 4s211ms - Prepare Finished: 1s292ms (1s292ms) - Open Finished: 3s772ms (2s479ms) - First Batch Produced: 3s772ms (10.107us) - First Batch Sent: 3s772ms (3.455us) - ExecInternal Finished: 4s211ms (439.745ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s513ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s919ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.907ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 439.651ms - ExecTreeExecTime: 6.116us - OpenTime: 2s479ms - ExecTreeOpenTime: 1s515ms - PrepareTime: 428.563us - ExecTreePrepareTime: 259.687us Hash Join Builder (join_node_id=14):(Total: 440.042ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.858us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s515ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s772ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s771ms (1s515ms) - First Batch Requested: 3s772ms (514.770us) - First Batch Returned: 3s772ms (3.854us) - Last Batch Returned: 3s772ms (337.000ns) - Closed: 3s772ms (85.697us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.658us - GetResultsTime: 0.000ns - HTResizeTime: 1.353us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.750us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.853us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s513ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s770ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s769ms (1s513ms) - First Batch Requested: 3s770ms (1.452ms) - First Batch Returned: 3s770ms (7.217us) - Last Batch Returned: 3s770ms (404.000ns) - Closed: 3s770ms (47.720us) - ConvertRowBatchTime: 2.699us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s513ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s513ms - DataWaitTime: 1s513ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000095 (host=tarmstrong-Precision-7540:22001):(Total: 2s883ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.947 Fragment Instance Lifecycle Event Timeline: 4s212ms - Prepare Finished: 1s337ms (1s337ms) - Open Finished: 3s768ms (2s430ms) - First Batch Produced: 3s768ms (40.547us) - First Batch Sent: 3s768ms (17.617us) - ExecInternal Finished: 4s212ms (443.636ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s509ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 2s874ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.447ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 443.583ms - ExecTreeExecTime: 72.380us - OpenTime: 2s430ms - ExecTreeOpenTime: 1s512ms - PrepareTime: 9.184ms - ExecTreePrepareTime: 8.972ms Hash Join Builder (join_node_id=14):(Total: 443.907ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 16.741us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 45.909us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.725us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 1s521ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s768ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s767ms (1s512ms) - First Batch Requested: 3s768ms (497.420us) - First Batch Returned: 3s768ms (36.073us) - Last Batch Returned: 3s768ms (55.125us) - Closed: 3s768ms (67.912us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 32.314us - GetResultsTime: 26.789us - HTResizeTime: 1.598us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.561us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.538us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 1s509ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s767ms - Open Started: 2s255ms (2s255ms) - Open Finished: 3s765ms (1s509ms) - First Batch Requested: 3s766ms (1.256ms) - First Batch Returned: 3s767ms (22.059us) - Last Batch Returned: 3s767ms (677.000ns) - Closed: 3s767ms (93.648us) - ConvertRowBatchTime: 5.547us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.593us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.168us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s509ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1s509ms - DataWaitTime: 1s509ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -81047.000ns ; Min: -81047.000ns ; Max: -81047.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.009us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000008e (host=tarmstrong-Precision-7540:22000):(Total: 1s872ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.199 Fragment Instance Lifecycle Event Timeline: 4s009ms - Prepare Finished: 2s137ms (2s137ms) - Open Finished: 3s761ms (1s624ms) - First Batch Produced: 3s761ms (9.669us) - First Batch Sent: 3s761ms (3.964us) - ExecInternal Finished: 4s009ms (247.638ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 723.642ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 50 (50) - TotalThreadsTotalWallClockTime: 1s871ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 234.132ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 247.557ms - ExecTreeExecTime: 6.831us - OpenTime: 1s624ms - ExecTreeOpenTime: 725.749ms - PrepareTime: 587.754us - ExecTreePrepareTime: 382.006us Hash Join Builder (join_node_id=14):(Total: 247.954ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.098us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 726.133ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s761ms - Open Started: 3s035ms (3s035ms) - Open Finished: 3s760ms (725.744ms) - First Batch Requested: 3s761ms (500.501us) - First Batch Returned: 3s761ms (4.221us) - Last Batch Returned: 3s761ms (337.000ns) - Closed: 3s761ms (68.535us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.620us - GetResultsTime: 0.000ns - HTResizeTime: 1.625us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.375us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.815us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 723.657ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s760ms - Open Started: 3s035ms (3s035ms) - Open Finished: 3s758ms (723.645ms) - First Batch Requested: 3s760ms (1.315ms) - First Batch Returned: 3s760ms (7.597us) - Last Batch Returned: 3s760ms (418.000ns) - Closed: 3s760ms (47.340us) - ConvertRowBatchTime: 2.794us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0 - FirstBatchWaitTime: 723.637ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 723.641ms - DataWaitTime: 723.637ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000008f (host=tarmstrong-Precision-7540:22000):(Total: 1s836ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.199 Fragment Instance Lifecycle Event Timeline: 4s005ms - Prepare Finished: 2s168ms (2s168ms) - Open Finished: 3s764ms (1s595ms) - First Batch Produced: 3s764ms (50.251us) - First Batch Sent: 3s764ms (18.887us) - ExecInternal Finished: 4s005ms (240.591ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 736.071ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1s836ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.043ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 240.578ms - ExecTreeExecTime: 150.034us - OpenTime: 1s595ms - ExecTreeOpenTime: 738.299ms - PrepareTime: 448.922us - ExecTreePrepareTime: 269.875us Hash Join Builder (join_node_id=14):(Total: 240.810ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 32.343us - BuildRowsPartitioned: 2 (2) - HashTablesBuildTime: 68.942us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.254us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2 (2) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 738.714ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s764ms - Open Started: 3s025ms (3s025ms) - Open Finished: 3s763ms (738.295ms) - First Batch Requested: 3s764ms (502.678us) - First Batch Returned: 3s764ms (44.329us) - Last Batch Returned: 3s764ms (145.488us) - Closed: 3s764ms (79.159us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 54.867us - GetResultsTime: 65.853us - HTResizeTime: 2.874us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.358us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.584us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 736.093ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s762ms - Open Started: 3s025ms (3s025ms) - Open Finished: 3s754ms (728.892ms) - First Batch Requested: 3s755ms (1.215ms) - First Batch Returned: 3s762ms (7.194ms) - Last Batch Returned: 3s762ms (1.643us) - Closed: 3s762ms (122.777us) - ConvertRowBatchTime: 4.450us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 3.506us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.454us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0 - FirstBatchWaitTime: 728.882ms - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 736.068ms - DataWaitTime: 736.058ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0 - DispatchTime: (Avg: -67495.000ns ; Min: -67495.000ns ; Max: -67495.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.728us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 46.00 B (46) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000090 (host=tarmstrong-Precision-7540:22000):(Total: 1s822ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.218 Fragment Instance Lifecycle Event Timeline: 4s004ms - Prepare Finished: 2s182ms (2s182ms) - Open Finished: 3s760ms (1s578ms) - First Batch Produced: 3s760ms (9.586us) - First Batch Sent: 3s760ms (3.840us) - ExecInternal Finished: 4s004ms (243.983ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 732.381ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1s821ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.614ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 243.878ms - ExecTreeExecTime: 5.744us - OpenTime: 1s578ms - ExecTreeOpenTime: 734.681ms - PrepareTime: 403.074us - ExecTreePrepareTime: 251.082us Hash Join Builder (join_node_id=14):(Total: 244.338ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.053us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 734.934ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s760ms - Open Started: 3s025ms (3s025ms) - Open Finished: 3s760ms (734.675ms) - First Batch Requested: 3s760ms (570.013us) - First Batch Returned: 3s760ms (3.796us) - Last Batch Returned: 3s760ms (342.000ns) - Closed: 3s760ms (72.490us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 6.191us - GetResultsTime: 0.000ns - HTResizeTime: 2.246us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.551us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 732.393ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s759ms - Open Started: 3s025ms (3s025ms) - Open Finished: 3s757ms (732.382ms) - First Batch Requested: 3s759ms (1.442ms) - First Batch Returned: 3s759ms (7.736us) - Last Batch Returned: 3s759ms (399.000ns) - Closed: 3s759ms (56.399us) - ConvertRowBatchTime: 2.418us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 732.377ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 732.379ms - DataWaitTime: 732.377ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000091 (host=tarmstrong-Precision-7540:22000):(Total: 1s805ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.199 Fragment Instance Lifecycle Event Timeline: 4s005ms - Prepare Finished: 2s200ms (2s200ms) - Open Finished: 3s757ms (1s557ms) - First Batch Produced: 3s757ms (42.004us) - First Batch Sent: 3s757ms (18.856us) - ExecInternal Finished: 4s005ms (248.076ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 729.015ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1s805ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.230ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 248.055ms - ExecTreeExecTime: 71.524us - OpenTime: 1s557ms - ExecTreeOpenTime: 731.118ms - PrepareTime: 563.266us - ExecTreePrepareTime: 353.976us Hash Join Builder (join_node_id=14):(Total: 248.354ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 17.147us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 43.839us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.416us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=123):(Total: 731.539ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s757ms - Open Started: 3s025ms (3s025ms) - Open Finished: 3s756ms (731.114ms) - First Batch Requested: 3s757ms (483.973us) - First Batch Returned: 3s757ms (37.771us) - Last Batch Returned: 3s757ms (53.590us) - Closed: 3s757ms (79.385us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 33.093us - GetResultsTime: 30.145us - HTResizeTime: 1.963us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.647us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=122):(Total: 729.032ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s755ms - Open Started: 3s025ms (3s025ms) - Open Finished: 3s754ms (728.996ms) - First Batch Requested: 3s755ms (1.132ms) - First Batch Returned: 3s755ms (30.580us) - Last Batch Returned: 3s755ms (576.000ns) - Closed: 3s755ms (105.191us) - ConvertRowBatchTime: 3.975us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 2.962us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.006us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 728.990ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 729.013ms - DataWaitTime: 728.990ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -95282.000ns ; Min: -95282.000ns ; Max: -95282.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.264us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F04:(Total: 2s546ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 15.43 MB, max: 15.43 MB, avg: 15.43 MB, stddev: 0 completion times: min:8s056ms max:8s056ms mean: 8s056ms stddev:0.000ns execution rates: min:1.91 MB/sec max:1.91 MB/sec mean:1.91 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.46 MB (7819106) - PeakReservation: 6.62 MB (6946816) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 6.856ms - TotalStorageWaitTime: 3.601ms - TotalThreadsInvoluntaryContextSwitches: 218 (218) - TotalThreadsTotalWallClockTime: 2s545ms - TotalThreadsSysTime: 4.160ms - TotalThreadsUserTime: 681.934ms - TotalThreadsVoluntaryContextSwitches: 54 (54) Fragment Instance Lifecycle Timings: - ExecTime: 299.600ms - ExecTreeExecTime: 292.393ms - OpenTime: 2s245ms - ExecTreeOpenTime: 286.029ms - PrepareTime: 903.988us - ExecTreePrepareTime: 507.939us KrpcDataStreamSender (dst_id=122):(Total: 7.350ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.422us - TotalBytesSent: 150.00 B (150) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=13):(Total: 578.924ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.17 MB (2273408) - RowsReturned: 6 (6) - RowsReturnedRate: 10.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 158.625us - HTResizeTime: 209.824us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 463.954us Buffer pool: - AllocTime: 39.137us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.648us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 2.92K (2917) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=12):(Total: 518.682ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 140.12 KB (143488) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 175.460us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 5.62 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=11):(Total: 517.932ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 70.12 KB (71808) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 243.763us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 5.63 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=8):(Total: 517.014ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 2.85 MB (2992390) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.85 MB (2992390) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.85 MB (2992390) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.117ms - MaterializeTupleTime: 479.148ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 40 (40) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 5.24 MB (5497722) - PerReadThreadRawHdfsThroughput: 838.64 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 287.51K (287514) - RowsReturned: 2.92K (2917) - RowsReturnedRate: 5.64 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 3.601ms - TotalRawHdfsOpenFileTime: 40.677us - TotalRawHdfsReadTime: 3.402ms - TotalReadThroughput: 1.14 MB/sec Buffer pool: - AllocTime: 66.499us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.75 MB (4980736) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 4.62 MB (4849664) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.62 MB (4849664) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 50.824us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 4 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 287.51K (287514) - Rows rejected: 10.06K (10062) - Rows total: 287.51K (287514) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 277.45K (277452) - Rows rejected: 274.54K (274535) - Rows total: 277.45K (277452) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F04: Instance 50467cb8e73eeac4:853461b400000089 (host=tarmstrong-Precision-7540:22001):(Total: 2s546ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.945 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/15.43 MB Fragment Instance Lifecycle Event Timeline: 3s772ms - Prepare Finished: 1s226ms (1s226ms) - Open Finished: 3s472ms (2s245ms) - First Batch Produced: 3s764ms (292.120ms) - First Batch Sent: 3s764ms (4.003us) - ExecInternal Finished: 3s772ms (7.635ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 4.90 MB, 7.33 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.46 MB (7819106) - PeakReservation: 6.62 MB (6946816) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 6.856ms - TotalStorageWaitTime: 3.601ms - TotalThreadsInvoluntaryContextSwitches: 218 (218) - TotalThreadsTotalWallClockTime: 2s545ms - TotalThreadsSysTime: 4.160ms - TotalThreadsUserTime: 681.934ms - TotalThreadsVoluntaryContextSwitches: 54 (54) Fragment Instance Lifecycle Timings: - ExecTime: 299.600ms - ExecTreeExecTime: 292.393ms - OpenTime: 2s245ms - ExecTreeOpenTime: 286.029ms - PrepareTime: 903.988us - ExecTreePrepareTime: 507.939us KrpcDataStreamSender (dst_id=122):(Total: 7.350ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 48.44 KB/sec ; Min: 25.60 KB/sec ; Max: 109.57 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 2.397ms ; Min: 370.145us ; Max: 3.948ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -618838.000ns ; Min: -3183267.000ns ; Max: -73722.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.422us - TotalBytesSent: 150.00 B (150) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=13):(Total: 578.924ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s764ms - Open Started: 3s186ms (3s186ms) - Open Finished: 3s472ms (286.026ms) - First Batch Requested: 3s472ms (23.912us) - First Batch Returned: 3s764ms (292.114ms) - Last Batch Returned: 3s764ms (336.159us) - Closed: 3s764ms (71.727us) - PeakMemoryUsage: 2.17 MB (2273408) - RowsReturned: 6 (6) - RowsReturnedRate: 10.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 158.625us - HTResizeTime: 209.824us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 463.954us Buffer pool: - AllocTime: 39.137us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.648us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 2.92K (2917) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=12):(Total: 518.682ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s764ms - Open Started: 3s186ms (3s186ms) - Waiting for builder: 3s471ms (285.136ms) - Initial build available: 3s471ms (3.897us) - Open Finished: 3s471ms (143.496us) - First Batch Requested: 3s472ms (767.322us) - First Batch Returned: 3s472ms (69.384us) - Last Batch Returned: 3s705ms (233.139ms) - Closed: 3s764ms (58.549ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 140.12 KB (143488) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 175.460us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 5.62 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=11):(Total: 517.932ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s764ms - Open Started: 3s186ms (3s186ms) - Waiting for builder: 3s186ms (306.138us) - Initial build available: 3s186ms (4.439us) - Open Finished: 3s471ms (284.733ms) - First Batch Requested: 3s471ms (104.186us) - First Batch Returned: 3s471ms (111.814us) - Last Batch Returned: 3s705ms (233.694ms) - Closed: 3s764ms (58.821ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 70.12 KB (71808) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 243.763us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 5.63 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=8):(Total: 517.014ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/15.43 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s115ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s764ms - Closed: 3s764ms (3s764ms) - BytesReadSeries (500.000ms): 0, 0, 0, 2.85 MB, 2.85 MB - FooterProcessingTime: (Avg: 3.819ms ; Min: 3.819ms ; Max: 3.819ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 4.00 MB (4194304) ; Min: 4.00 MB (4194304) ; Max: 4.00 MB (4194304) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 625.23 KB (640234) ; Min: 120.79 KB (123689) ; Max: 998.59 KB (1022552) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 62.52 KB (64023) ; Min: 29.33 KB (30033) ; Max: 75.40 KB (77208) ; Number of samples: 40) - ParquetRowGroupActualReservation: (Avg: 4.62 MB (4849664) ; Min: 4.62 MB (4849664) ; Max: 4.62 MB (4849664) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 4.62 MB (4849664) ; Min: 4.62 MB (4849664) ; Max: 4.62 MB (4849664) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 632.42 KB (647597) ; Min: 129.29 KB (132397) ; Max: 1004.82 KB (1028937) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 63.24 KB (64759) ; Min: 29.45 KB (30160) ; Max: 80.77 KB (82707) ; Number of samples: 40) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 2.85 MB (2992390) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.85 MB (2992390) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.85 MB (2992390) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.117ms - MaterializeTupleTime: 479.148ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 40 (40) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 5.24 MB (5497722) - PerReadThreadRawHdfsThroughput: 838.64 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 287.51K (287514) - RowsReturned: 2.92K (2917) - RowsReturnedRate: 5.64 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 3.601ms - TotalRawHdfsOpenFileTime: 40.677us - TotalRawHdfsReadTime: 3.402ms - TotalReadThroughput: 1.14 MB/sec Buffer pool: - AllocTime: 66.499us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.75 MB (4980736) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 4.62 MB (4849664) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.62 MB (4849664) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 50.824us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 4 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 287.51K (287514) - Rows rejected: 10.06K (10062) - Rows total: 287.51K (287514) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 277.45K (277452) - Rows rejected: 274.54K (274535) - Rows total: 277.45K (277452) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F78:(Total: 2s499ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s050ms max:8s050ms mean: 8s050ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 15.328us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 371 (371) - TotalThreadsTotalWallClockTime: 2s499ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 169.121ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 1s661ms - ExecTreeExecTime: 35.270us - OpenTime: 837.478ms - ExecTreeOpenTime: 12.514us - PrepareTime: 265.806us - ExecTreePrepareTime: 119.656us Hash Join Builder (join_node_id=12):(Total: 1s671ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 166.203us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 330.076us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 52.615us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.312us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 2.93K (2929) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=121):(Total: 44.420us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 12.267us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 270.15 K/sec Buffer pool: - AllocTime: 3.501us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 13.492us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 23.148us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F78: Instance 50467cb8e73eeac4:853461b400000097 (host=tarmstrong-Precision-7540:22001):(Total: 2s499ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.939 Fragment Instance Lifecycle Event Timeline: 3s705ms - Prepare Finished: 1s206ms (1s206ms) - Open Finished: 2s044ms (837.500ms) - First Batch Produced: 2s044ms (42.811us) - First Batch Sent: 2s044ms (169.021us) - ExecInternal Finished: 3s705ms (1s661ms) - MemoryUsage (500.000ms): 33.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 15.328us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 371 (371) - TotalThreadsTotalWallClockTime: 2s499ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 169.121ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 1s661ms - ExecTreeExecTime: 35.270us - OpenTime: 837.478ms - ExecTreeOpenTime: 12.514us - PrepareTime: 265.806us - ExecTreePrepareTime: 119.656us Hash Join Builder (join_node_id=12):(Total: 1s671ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 166.203us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 330.076us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 52.615us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.312us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 2.93K (2929) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=121):(Total: 44.420us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s044ms - Open Started: 2s034ms (2s034ms) - Open Finished: 2s034ms (9.823us) - First Batch Requested: 2s044ms (9.970ms) - First Batch Returned: 2s044ms (31.460us) - Last Batch Returned: 2s044ms (456.000ns) - Closed: 2s044ms (263.254us) - ConvertRowBatchTime: 12.267us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 270.15 K/sec Buffer pool: - AllocTime: 3.501us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 13.492us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 100.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -68499.000ns ; Min: -68499.000ns ; Max: -68499.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.148us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F06:(Total: 226.421ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.93 KB, max: 9.93 KB, avg: 9.93 KB, stddev: 0 completion times: min:8s063ms max:8s063ms mean: 8s063ms stddev:0.000ns execution rates: min:1.23 KB/sec max:1.23 KB/sec mean:1.23 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.01 - PeakMemoryUsage: 62.64 KB (64144) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 294.937us - TotalStorageWaitTime: 25.129ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 226.074ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.722ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 26.550ms - ExecTreeExecTime: 25.969ms - OpenTime: 199.531ms - ExecTreeOpenTime: 203.138us - PrepareTime: 287.932us - ExecTreePrepareTime: 109.125us KrpcDataStreamSender (dst_id=121):(Total: 560.866us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.259us - TotalBytesSent: 100.00 B (100) - UncompressedRowBatchSize: 156.00 B (156) HDFS_SCAN_NODE (id=10):(Total: 26.298ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 11.263us - MaterializeTupleTime: 21.662us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 12.42 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 456.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 25.129ms - TotalRawHdfsOpenFileTime: 20.973us - TotalRawHdfsReadTime: 788.731us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.839us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.405us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F06: Instance 50467cb8e73eeac4:853461b400000096 (host=tarmstrong-Precision-7540:22001):(Total: 226.421ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.952 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB Fragment Instance Lifecycle Event Timeline: 1s394ms - Prepare Finished: 1s168ms (1s168ms) - Open Finished: 1s368ms (199.540ms) - First Batch Produced: 1s394ms (25.804ms) - First Batch Sent: 1s394ms (138.369us) - ExecInternal Finished: 1s394ms (681.077us) - MemoryUsage (500.000ms): 33.59 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.01 - PeakMemoryUsage: 62.64 KB (64144) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 294.937us - TotalStorageWaitTime: 25.129ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 226.074ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.722ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 26.550ms - ExecTreeExecTime: 25.969ms - OpenTime: 199.531ms - ExecTreeOpenTime: 203.138us - PrepareTime: 287.932us - ExecTreePrepareTime: 109.125us KrpcDataStreamSender (dst_id=121):(Total: 560.866us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 160.17 KB/sec ; Min: 160.17 KB/sec ; Max: 160.17 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 436.701us ; Min: 263.681us ; Max: 609.722us ; Number of samples: 2) - RpcRecvrTime: (Avg: -72992.000ns ; Min: -99383.000ns ; Max: -46601.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.259us - TotalBytesSent: 100.00 B (100) - UncompressedRowBatchSize: 156.00 B (156) HDFS_SCAN_NODE (id=10):(Total: 26.298ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s394ms - Closed: 1s394ms (1s394ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 17.910ms ; Min: 17.910ms ; Max: 17.910ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 11.263us - MaterializeTupleTime: 21.662us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 12.42 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 456.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 25.129ms - TotalRawHdfsOpenFileTime: 20.973us - TotalRawHdfsReadTime: 788.731us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.839us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.405us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F79:(Total: 2s534ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s059ms max:8s059ms mean: 8s059ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 393.419ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 154 (154) - TotalThreadsTotalWallClockTime: 2s533ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 162.619ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 1s383ms - ExecTreeExecTime: 18.989ms - OpenTime: 1s150ms - ExecTreeOpenTime: 374.480ms - PrepareTime: 318.692us - ExecTreePrepareTime: 150.778us Hash Join Builder (join_node_id=11):(Total: 1s365ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 208.204us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 469.849us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 91.556us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 75.938us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 2.95K (2948) - Resizes: 0 (0) - Travel: 1.68K (1675) EXCHANGE_NODE (id=120):(Total: 393.467ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 23.858us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 78.00 /sec Buffer pool: - AllocTime: 4.574us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 374.466ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 393.417ms - DataWaitTime: 393.406ms Enqueue: - DeserializeRowBatchTime: 28.085us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F79: Instance 50467cb8e73eeac4:853461b400000099 (host=tarmstrong-Precision-7540:22001):(Total: 2s534ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.948 Fragment Instance Lifecycle Event Timeline: 3s706ms - Prepare Finished: 1s171ms (1s171ms) - Open Finished: 2s322ms (1s150ms) - First Batch Produced: 2s341ms (18.994ms) - First Batch Sent: 2s341ms (213.261us) - ExecInternal Finished: 3s706ms (1s364ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 393.419ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 154 (154) - TotalThreadsTotalWallClockTime: 2s533ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 162.619ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 1s383ms - ExecTreeExecTime: 18.989ms - OpenTime: 1s150ms - ExecTreeOpenTime: 374.480ms - PrepareTime: 318.692us - ExecTreePrepareTime: 150.778us Hash Join Builder (join_node_id=11):(Total: 1s365ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 208.204us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 469.849us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 91.556us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 75.938us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 2.95K (2948) - Resizes: 0 (0) - Travel: 1.68K (1675) EXCHANGE_NODE (id=120):(Total: 393.467ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s341ms - Open Started: 1s947ms (1s947ms) - Open Finished: 2s321ms (374.477ms) - First Batch Requested: 2s322ms (1.089ms) - First Batch Returned: 2s341ms (18.980ms) - Last Batch Returned: 2s341ms (2.549us) - Closed: 2s341ms (269.360us) - ConvertRowBatchTime: 23.858us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 78.00 /sec Buffer pool: - AllocTime: 4.574us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 374.466ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 393.417ms - DataWaitTime: 393.406ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -74333.000ns ; Min: -74333.000ns ; Max: -74333.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 28.085us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F05:(Total: 1s211ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s057ms max:8s057ms mean: 8s057ms stddev:0.000ns execution rates: min:273.78 KB/sec max:273.78 KB/sec mean:273.78 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.778us - TotalStorageWaitTime: 4.341ms - TotalThreadsInvoluntaryContextSwitches: 197 (197) - TotalThreadsTotalWallClockTime: 1s191ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 216.414ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 226.050ms - ExecTreeExecTime: 205.844ms - OpenTime: 965.801ms - ExecTreeOpenTime: 313.902us - PrepareTime: 19.132ms - ExecTreePrepareTime: 169.403us KrpcDataStreamSender (dst_id=120):(Total: 17.533ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 27.082us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=9):(Total: 206.378ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 26.043us - MaterializeTupleTime: 148.922ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 124.00 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 150.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.341ms - TotalRawHdfsOpenFileTime: 48.763us - TotalRawHdfsReadTime: 3.437ms - TotalReadThroughput: 290.97 KB/sec Buffer pool: - AllocTime: 12.911us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F05: Instance 50467cb8e73eeac4:853461b400000098 (host=tarmstrong-Precision-7540:22001):(Total: 1s211ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.946 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 2s341ms - Prepare Finished: 1s149ms (1s149ms) - Open Finished: 2s115ms (965.809ms) - First Batch Produced: 2s321ms (205.524ms) - First Batch Sent: 2s338ms (17.099ms) - ExecInternal Finished: 2s341ms (3.526ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB, 2.22 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.778us - TotalStorageWaitTime: 4.341ms - TotalThreadsInvoluntaryContextSwitches: 197 (197) - TotalThreadsTotalWallClockTime: 1s191ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 216.414ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 226.050ms - ExecTreeExecTime: 205.844ms - OpenTime: 965.801ms - ExecTreeOpenTime: 313.902us - PrepareTime: 19.132ms - ExecTreePrepareTime: 169.403us KrpcDataStreamSender (dst_id=120):(Total: 17.533ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 936.89 KB/sec ; Min: 936.89 KB/sec ; Max: 936.89 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 449.823us ; Min: 445.185us ; Max: 454.461us ; Number of samples: 2) - RpcRecvrTime: (Avg: -96246.000ns ; Min: -117314.000ns ; Max: -75178.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 27.082us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=9):(Total: 206.378ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s341ms - Closed: 2s341ms (2s341ms) - BytesReadSeries (500.000ms): 0, 0, 436.46 KB - FooterProcessingTime: (Avg: 282.079us ; Min: 282.079us ; Max: 282.079us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 2.267ms ; Min: 2.267ms ; Max: 2.267ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 26.043us - MaterializeTupleTime: 148.922ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 124.00 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 150.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.341ms - TotalRawHdfsOpenFileTime: 48.763us - TotalRawHdfsReadTime: 3.437ms - TotalReadThroughput: 290.97 KB/sec Buffer pool: - AllocTime: 12.911us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F80:(Total: 2s609ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s267ms max:8s040ms mean: 7s201ms stddev:726.781ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s979ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 2s608ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.018ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 533.766ms - ExecTreeExecTime: 371.442us - OpenTime: 2s075ms - ExecTreeOpenTime: 1s979ms - PrepareTime: 420.813us - ExecTreePrepareTime: 315.495us Nested Loop Join Builder:(Total: 533.330ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=130):(Total: 1s979ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.887us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.832us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.295us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s979ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 1s979ms - DataWaitTime: 1s979ms Enqueue: - DeserializeRowBatchTime: 24.189us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F80: Instance 50467cb8e73eeac4:853461b40000009c (host=tarmstrong-Precision-7540:22002):(Total: 3s503ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.138 Fragment Instance Lifecycle Event Timeline: 4s158ms - Prepare Finished: 654.857ms (654.857ms) - Open Finished: 3s626ms (2s971ms) - First Batch Produced: 3s626ms (334.155us) - First Batch Sent: 3s626ms (27.784us) - ExecInternal Finished: 4s158ms (531.672ms) - MemoryUsage (500.000ms): 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 28.00 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s859ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 9 (9) - TotalThreadsTotalWallClockTime: 3s503ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 21.685ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 531.993ms - ExecTreeExecTime: 330.657us - OpenTime: 2s971ms - ExecTreeOpenTime: 2s858ms - PrepareTime: 222.565us - ExecTreePrepareTime: 133.053us Nested Loop Join Builder:(Total: 531.595ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=130):(Total: 2s859ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s626ms - Open Started: 767.266ms (767.266ms) - Open Finished: 3s626ms (2s858ms) - First Batch Requested: 3s626ms (23.478us) - First Batch Returned: 3s626ms (326.750us) - Last Batch Returned: 3s626ms (1.012us) - Closed: 3s626ms (81.519us) - ConvertRowBatchTime: 3.598us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.254us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.265us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s858ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s859ms - DataWaitTime: 2s859ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -88060.000ns ; Min: -88060.000ns ; Max: -88060.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.618us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000009d (host=tarmstrong-Precision-7540:22000):(Total: 2s481ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.202 Fragment Instance Lifecycle Event Timeline: 4s032ms - Prepare Finished: 1s552ms (1s552ms) - Open Finished: 3s583ms (2s031ms) - First Batch Produced: 3s583ms (383.521us) - First Batch Sent: 3s583ms (25.258us) - ExecInternal Finished: 4s032ms (449.417ms) - MemoryUsage (500.000ms): 8.00 KB, 8.00 KB, 8.00 KB, 8.00 KB, 28.00 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s926ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 13 (13) - TotalThreadsTotalWallClockTime: 2s480ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 21.949ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 449.721ms - ExecTreeExecTime: 379.649us - OpenTime: 2s031ms - ExecTreeOpenTime: 1s925ms - PrepareTime: 270.276us - ExecTreePrepareTime: 162.363us Nested Loop Join Builder:(Total: 449.280ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=130):(Total: 1s926ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s583ms - Open Started: 1s657ms (1s657ms) - Open Finished: 3s583ms (1s925ms) - First Batch Requested: 3s583ms (23.419us) - First Batch Returned: 3s583ms (376.252us) - Last Batch Returned: 3s583ms (741.000ns) - Closed: 3s583ms (71.901us) - ConvertRowBatchTime: 3.673us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.516us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 654.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0 - FirstBatchWaitTime: 1s925ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 1s926ms - DataWaitTime: 1s926ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0 - DispatchTime: (Avg: -115052.000ns ; Min: -115052.000ns ; Max: -115052.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.353us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000009e (host=tarmstrong-Precision-7540:22001):(Total: 1s843ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.929 Fragment Instance Lifecycle Event Timeline: 4s213ms - Prepare Finished: 2s371ms (2s371ms) - Open Finished: 3s593ms (1s222ms) - First Batch Produced: 3s594ms (408.086us) - First Batch Sent: 3s594ms (28.574us) - ExecInternal Finished: 4s213ms (619.195ms) - MemoryUsage (500.000ms): 8.00 KB, 8.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s152ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 4 (4) - TotalThreadsTotalWallClockTime: 1s842ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.421ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 619.585ms - ExecTreeExecTime: 404.020us - OpenTime: 1s222ms - ExecTreeOpenTime: 1s152ms - PrepareTime: 769.598us - ExecTreePrepareTime: 651.070us Nested Loop Join Builder:(Total: 619.115ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=130):(Total: 1s152ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s594ms - Open Started: 2s441ms (2s441ms) - Open Finished: 3s593ms (1s152ms) - First Batch Requested: 3s593ms (24.935us) - First Batch Returned: 3s594ms (400.218us) - Last Batch Returned: 3s594ms (766.000ns) - Closed: 3s594ms (79.144us) - ConvertRowBatchTime: 4.391us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.726us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.967us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 1s152ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 1s152ms - DataWaitTime: 1s152ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -163467.000ns ; Min: -163467.000ns ; Max: -163467.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 31.596us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F13:(Total: 2s197ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s302ms max:7s302ms mean: 7s302ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 51.62 KB (52864) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s090ms - TotalNetworkSendTime: 2.363ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 11 (11) - TotalThreadsTotalWallClockTime: 2s196ms - TotalThreadsSysTime: 3.761ms - TotalThreadsUserTime: 19.117ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 2.543ms - ExecTreeExecTime: 9.794us - OpenTime: 2s194ms - ExecTreeOpenTime: 2s090ms - PrepareTime: 453.707us - ExecTreePrepareTime: 243.198us KrpcDataStreamSender (dst_id=130):(Total: 2.585ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 11.62 KB (11904) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.903us - TotalBytesSent: 75.00 B (75) - UncompressedRowBatchSize: 123.00 B (123) AGGREGATION_NODE (id=129):(Total: 2s091ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 8.830us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=128):(Total: 2s090ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.785us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.510us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.237us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 2s089ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s090ms - DataWaitTime: 2s090ms Enqueue: - DeserializeRowBatchTime: 28.819us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F13: Instance 50467cb8e73eeac4:853461b40000009b (host=tarmstrong-Precision-7540:22000):(Total: 2s197ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.208 Fragment Instance Lifecycle Event Timeline: 3s583ms - Prepare Finished: 1s387ms (1s387ms) - Open Finished: 3s581ms (2s194ms) - First Batch Produced: 3s581ms (12.041us) - First Batch Sent: 3s581ms (95.155us) - ExecInternal Finished: 3s583ms (2.512ms) - MemoryUsage (500.000ms): 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 51.62 KB (52864) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s090ms - TotalNetworkSendTime: 2.363ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 11 (11) - TotalThreadsTotalWallClockTime: 2s196ms - TotalThreadsSysTime: 3.761ms - TotalThreadsUserTime: 19.117ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 2.543ms - ExecTreeExecTime: 9.794us - OpenTime: 2s194ms - ExecTreeOpenTime: 2s090ms - PrepareTime: 453.707us - ExecTreePrepareTime: 243.198us KrpcDataStreamSender (dst_id=130):(Total: 2.585ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0, 0 - NetworkThroughput: (Avg: 11.40 KB/sec ; Min: 11.19 KB/sec ; Max: 11.67 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.313ms ; Min: 437.497us ; Max: 2.180ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -128893.000ns ; Min: -212661.000ns ; Max: -41755.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 11.62 KB (11904) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.903us - TotalBytesSent: 75.00 B (75) - UncompressedRowBatchSize: 123.00 B (123) AGGREGATION_NODE (id=129):(Total: 2s091ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s581ms - Open Started: 1s490ms (1s490ms) - Open Finished: 3s581ms (2s090ms) - First Batch Requested: 3s581ms (26.903us) - First Batch Returned: 3s581ms (7.653us) - Last Batch Returned: 3s581ms (384.000ns) - Closed: 3s581ms (114.008us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: - BuildTime: 8.830us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=128):(Total: 2s090ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s581ms - Open Started: 1s490ms (1s490ms) - Open Finished: 3s580ms (2s089ms) - First Batch Requested: 3s580ms (20.192us) - First Batch Returned: 3s581ms (866.750us) - Last Batch Returned: 3s581ms (841.000ns) - Closed: 3s581ms (71.679us) - ConvertRowBatchTime: 3.785us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 10.510us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.237us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0 - FirstBatchWaitTime: 2s089ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s090ms - DataWaitTime: 2s090ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0 - DispatchTime: (Avg: -65900.000ns ; Min: -65900.000ns ; Max: -65900.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 28.819us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F11:(Total: 1s201ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 10.62 MB, max: 10.62 MB, avg: 10.62 MB, stddev: 0 completion times: min:8s040ms max:8s040ms mean: 8s040ms stddev:0.000ns execution rates: min:1.32 MB/sec max:1.32 MB/sec mean:1.32 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.97 MB (3115801) - PeakReservation: 2.25 MB (2359296) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.008ms - TotalStorageWaitTime: 2.057ms - TotalThreadsInvoluntaryContextSwitches: 83 (83) - TotalThreadsTotalWallClockTime: 1s200ms - TotalThreadsSysTime: 3.957ms - TotalThreadsUserTime: 276.971ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 2.555ms - ExecTreeExecTime: 11.183us - OpenTime: 1s198ms - ExecTreeOpenTime: 264.808ms - PrepareTime: 548.133us - ExecTreePrepareTime: 325.948us KrpcDataStreamSender (dst_id=128):(Total: 2.567ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 3.88 KB (3968) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 7.806us - TotalBytesSent: 25.00 B (25) - UncompressedRowBatchSize: 41.00 B (41) AGGREGATION_NODE (id=22):(Total: 265.141ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 175.00 KB (179200) - RowsReturned: 1 (1) - RowsReturnedRate: 3.00 /sec NonGroupingAggregator 0: - BuildTime: 38.894us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) HASH_JOIN_NODE (id=21):(Total: 263.430ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 94.12 KB (96384) - ProbeRows: 1.61K (1611) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 141.727us - RowsReturned: 1.61K (1611) - RowsReturnedRate: 6.12 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=19):(Total: 249.428ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.49 MB (1559615) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.49 MB (1559615) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.49 MB (1559615) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 343.270us - MaterializeTupleTime: 132.739ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 20 (20) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.78 MB (2914370) - PerReadThreadRawHdfsThroughput: 811.24 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 144.07K (144067) - RowsReturned: 1.61K (1611) - RowsReturnedRate: 6.46 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 2.057ms - TotalRawHdfsOpenFileTime: 20.213us - TotalRawHdfsReadTime: 1.833ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 25.074us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.38 MB (2490368) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.25 MB (2359296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.25 MB (2359296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.138us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 10 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 144.07K (144067) - Rows rejected: 142.46K (142456) - Rows total: 144.07K (144067) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F11: Instance 50467cb8e73eeac4:853461b40000009a (host=tarmstrong-Precision-7540:22001):(Total: 1s201ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.929 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/10.62 MB Fragment Instance Lifecycle Event Timeline: 3s593ms - Prepare Finished: 2s392ms (2s392ms) - Open Finished: 3s590ms (1s198ms) - First Batch Produced: 3s590ms (13.810us) - First Batch Sent: 3s590ms (54.509us) - ExecInternal Finished: 3s593ms (2.588ms) - MemoryUsage (500.000ms): 41.00 KB, 41.00 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.97 MB (3115801) - PeakReservation: 2.25 MB (2359296) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.008ms - TotalStorageWaitTime: 2.057ms - TotalThreadsInvoluntaryContextSwitches: 83 (83) - TotalThreadsTotalWallClockTime: 1s200ms - TotalThreadsSysTime: 3.957ms - TotalThreadsUserTime: 276.971ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 2.555ms - ExecTreeExecTime: 11.183us - OpenTime: 1s198ms - ExecTreeOpenTime: 264.808ms - PrepareTime: 548.133us - ExecTreePrepareTime: 325.948us KrpcDataStreamSender (dst_id=128):(Total: 2.567ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 56.84 KB/sec ; Min: 56.84 KB/sec ; Max: 56.84 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1.035ms ; Min: 429.513us ; Max: 1.641ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -81825.000ns ; Min: -106300.000ns ; Max: -57351.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 3.88 KB (3968) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 7.806us - TotalBytesSent: 25.00 B (25) - UncompressedRowBatchSize: 41.00 B (41) AGGREGATION_NODE (id=22):(Total: 265.141ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s590ms - Open Started: 3s325ms (3s325ms) - Open Finished: 3s590ms (264.805ms) - First Batch Requested: 3s590ms (28.231us) - First Batch Returned: 3s590ms (8.253us) - Last Batch Returned: 3s590ms (502.000ns) - Closed: 3s590ms (77.455us) - PeakMemoryUsage: 175.00 KB (179200) - RowsReturned: 1 (1) - RowsReturnedRate: 3.00 /sec NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 38.894us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) HASH_JOIN_NODE (id=21):(Total: 263.430ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s590ms - Open Started: 3s325ms (3s325ms) - Waiting for builder: 3s426ms (101.138ms) - Initial build available: 3s427ms (465.183us) - Open Finished: 3s495ms (67.734ms) - First Batch Requested: 3s495ms (23.093us) - First Batch Returned: 3s495ms (81.043us) - Last Batch Returned: 3s588ms (93.604ms) - Closed: 3s590ms (1.749ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 94.12 KB (96384) - ProbeRows: 1.61K (1611) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 141.727us - RowsReturned: 1.61K (1611) - RowsReturnedRate: 6.12 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=19):(Total: 249.428ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/10.62 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 100ms. Maximum arrival delay: 1s035ms. Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s590ms - Closed: 3s590ms (3s590ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 798.435us ; Min: 798.435us ; Max: 798.435us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 367.33 KB (376144) ; Min: 192.85 KB (197477) ; Max: 457.52 KB (468498) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 55.10 KB (56421) ; Min: 1.43 KB (1467) ; Max: 65.61 KB (67189) ; Number of samples: 20) - ParquetRowGroupActualReservation: (Avg: 2.25 MB (2359296) ; Min: 2.25 MB (2359296) ; Max: 2.25 MB (2359296) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 2.25 MB (2359296) ; Min: 2.25 MB (2359296) ; Max: 2.25 MB (2359296) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 368.85 KB (377701) ; Min: 192.83 KB (197454) ; Max: 459.82 KB (470859) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 55.33 KB (56655) ; Min: 1.43 KB (1462) ; Max: 66.34 KB (67929) ; Number of samples: 20) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.49 MB (1559615) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.49 MB (1559615) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.49 MB (1559615) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 343.270us - MaterializeTupleTime: 132.739ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 20 (20) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.78 MB (2914370) - PerReadThreadRawHdfsThroughput: 811.24 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 144.07K (144067) - RowsReturned: 1.61K (1611) - RowsReturnedRate: 6.46 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 2.057ms - TotalRawHdfsOpenFileTime: 20.213us - TotalRawHdfsReadTime: 1.833ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 25.074us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.38 MB (2490368) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.25 MB (2359296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.25 MB (2359296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.138us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 10 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 144.07K (144067) - Rows rejected: 142.46K (142456) - Rows total: 144.07K (144067) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F81:(Total: 1s178ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s062ms max:8s062ms mean: 8s062ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 246.139ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 124 (124) - TotalThreadsTotalWallClockTime: 1s177ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.515ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 215.817ms - ExecTreeExecTime: 46.561ms - OpenTime: 961.965ms - ExecTreeOpenTime: 199.632ms - PrepareTime: 380.269us - ExecTreePrepareTime: 134.055us Hash Join Builder (join_node_id=21):(Total: 170.304ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 7.037ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 469.992us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.916ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.894ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.64K (1642) - Resizes: 0 (0) - Travel: 829 (829) EXCHANGE_NODE (id=127):(Total: 246.191ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 30.005us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 125.00 /sec Buffer pool: - AllocTime: 4.520us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 199.615ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 246.136ms - DataWaitTime: 246.122ms Enqueue: - DeserializeRowBatchTime: 4.433ms - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F81: Instance 50467cb8e73eeac4:853461b4000000a0 (host=tarmstrong-Precision-7540:22001):(Total: 1s178ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.951 Fragment Instance Lifecycle Event Timeline: 3s589ms - Prepare Finished: 2s411ms (2s411ms) - Open Finished: 3s373ms (961.982ms) - First Batch Produced: 3s419ms (46.566ms) - First Batch Sent: 3s426ms (7.041ms) - ExecInternal Finished: 3s589ms (162.339ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 246.139ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 124 (124) - TotalThreadsTotalWallClockTime: 1s177ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.515ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 215.817ms - ExecTreeExecTime: 46.561ms - OpenTime: 961.965ms - ExecTreeOpenTime: 199.632ms - PrepareTime: 380.269us - ExecTreePrepareTime: 134.055us Hash Join Builder (join_node_id=21):(Total: 170.304ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 7.037ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 469.992us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.916ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.894ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.64K (1642) - Resizes: 0 (0) - Travel: 829 (829) EXCHANGE_NODE (id=127):(Total: 246.191ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s426ms - Open Started: 3s172ms (3s172ms) - Open Finished: 3s371ms (199.627ms) - First Batch Requested: 3s373ms (1.172ms) - First Batch Returned: 3s419ms (46.557ms) - Last Batch Returned: 3s419ms (842.000ns) - Closed: 3s426ms (7.112ms) - ConvertRowBatchTime: 30.005us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 125.00 /sec Buffer pool: - AllocTime: 4.520us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 199.615ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 246.136ms - DataWaitTime: 246.122ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -65782.000ns ; Min: -65782.000ns ; Max: -65782.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 4.433ms - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F12:(Total: 969.607ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s063ms max:8s063ms mean: 8s063ms stddev:0.000ns execution rates: min:273.60 KB/sec max:273.60 KB/sec mean:273.60 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 317.879us - TotalStorageWaitTime: 12.290us - TotalThreadsInvoluntaryContextSwitches: 53 (53) - TotalThreadsTotalWallClockTime: 969.228ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 207.173ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 149.818ms - ExecTreeExecTime: 147.562ms - OpenTime: 819.418ms - ExecTreeOpenTime: 258.488us - PrepareTime: 306.798us - ExecTreePrepareTime: 145.889us KrpcDataStreamSender (dst_id=127):(Total: 2.046ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.885us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=20):(Total: 148.009ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 21.640us - MaterializeTupleTime: 45.759ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 161.61 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 209.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 12.290us - TotalRawHdfsOpenFileTime: 47.773us - TotalRawHdfsReadTime: 2.637ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.080us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.480us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F12: Instance 50467cb8e73eeac4:853461b40000009f (host=tarmstrong-Precision-7540:22001):(Total: 969.607ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.952 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 3s419ms - Prepare Finished: 2s450ms (2s450ms) - Open Finished: 3s269ms (819.427ms) - First Batch Produced: 3s367ms (97.307ms) - First Batch Sent: 3s368ms (1.625ms) - ExecInternal Finished: 3s419ms (50.967ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 317.879us - TotalStorageWaitTime: 12.290us - TotalThreadsInvoluntaryContextSwitches: 53 (53) - TotalThreadsTotalWallClockTime: 969.228ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 207.173ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 149.818ms - ExecTreeExecTime: 147.562ms - OpenTime: 819.418ms - ExecTreeOpenTime: 258.488us - PrepareTime: 306.798us - ExecTreePrepareTime: 145.889us KrpcDataStreamSender (dst_id=127):(Total: 2.046ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 42.43 KB/sec ; Min: 42.43 KB/sec ; Max: 42.43 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 7.446ms ; Min: 4.858ms ; Max: 10.034ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -2303142.000ns ; Min: -4517122.000ns ; Max: -89163.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.885us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=20):(Total: 148.009ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s419ms - Closed: 3s419ms (3s419ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 234.991us ; Min: 234.991us ; Max: 234.991us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 637.162us ; Min: 637.162us ; Max: 637.162us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 21.640us - MaterializeTupleTime: 45.759ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 161.61 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 209.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 12.290us - TotalRawHdfsOpenFileTime: 47.773us - TotalRawHdfsReadTime: 2.637ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.080us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.480us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F82:(Total: 2s764ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s250ms max:8s049ms mean: 7s202ms stddev:733.254ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1s702ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 17 (17) - TotalThreadsTotalWallClockTime: 2s763ms - TotalThreadsSysTime: 284.083us - TotalThreadsUserTime: 61.134ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 32.561ms - ExecTreeExecTime: 372.229us - OpenTime: 2s731ms - ExecTreeOpenTime: 1s704ms - PrepareTime: 470.995us - ExecTreePrepareTime: 291.011us Hash Join Builder (join_node_id=36):(Total: 32.578ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 47.736us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 90.510us - LargestPartitionPercent: 43 (43) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.413us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 261.33 KB (267605) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 261.33 KB (267605) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 125.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 1s704ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: - BuildTime: 56.684us - GetResultsTime: 247.651us - HTResizeTime: 2.409us - LargestPartitionPercent: 43 (43) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.146us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 453.33 KB (464213) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 453.33 KB (464213) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.619us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.16K (3157) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 1s702ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 5.148us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.481us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 683.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s697ms - TotalBytesDequeued: 150.00 B (150) - TotalGetBatchTime: 1s702ms - DataWaitTime: 1s702ms Enqueue: - DeserializeRowBatchTime: 17.753us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 84.00 B (84) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F82: Instance 50467cb8e73eeac4:853461b4000000a6 (host=tarmstrong-Precision-7540:22000):(Total: 3s436ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.215 Fragment Instance Lifecycle Event Timeline: 4s144ms - Prepare Finished: 708.473ms (708.473ms) - Open Finished: 4s131ms (3s422ms) - First Batch Produced: 4s131ms (53.205us) - First Batch Sent: 4s131ms (19.493us) - ExecInternal Finished: 4s144ms (13.460ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s167ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 53 (53) - TotalThreadsTotalWallClockTime: 3s435ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 232.864ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 13.394ms - ExecTreeExecTime: 79.198us - OpenTime: 3s422ms - ExecTreeOpenTime: 2s169ms - PrepareTime: 470.083us - ExecTreePrepareTime: 289.818us Hash Join Builder (join_node_id=36):(Total: 13.666ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 18.361us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 52.683us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.620us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s169ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s131ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s130ms (2s169ms) - First Batch Requested: 4s131ms (512.996us) - First Batch Returned: 4s131ms (43.602us) - Last Batch Returned: 4s131ms (57.266us) - Closed: 4s131ms (114.326us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 35.655us - GetResultsTime: 35.942us - HTResizeTime: 2.146us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.725us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s167ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s129ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s125ms (2s164ms) - First Batch Requested: 4s126ms (1.234ms) - First Batch Returned: 4s129ms (3.079ms) - Last Batch Returned: 4s129ms (847.000ns) - Closed: 4s129ms (187.912us) - ConvertRowBatchTime: 3.123us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.629us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.280us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s164ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 2s167ms - DataWaitTime: 2s167ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -51207.000ns ; Min: -51207.000ns ; Max: -51207.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.391us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a8 (host=tarmstrong-Precision-7540:22000):(Total: 3s379ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.212 Fragment Instance Lifecycle Event Timeline: 4s147ms - Prepare Finished: 767.823ms (767.823ms) - Open Finished: 4s132ms (3s365ms) - First Batch Produced: 4s133ms (42.817us) - First Batch Sent: 4s133ms (19.533us) - ExecInternal Finished: 4s147ms (13.966ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 2s169ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s379ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.776ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 13.934ms - ExecTreeExecTime: 196.082us - OpenTime: 3s365ms - ExecTreeOpenTime: 2s171ms - PrepareTime: 457.655us - ExecTreePrepareTime: 284.077us Hash Join Builder (join_node_id=36):(Total: 14.106ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 44.115us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 97.460us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.133us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.500us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s172ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s133ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s132ms (2s171ms) - First Batch Requested: 4s132ms (484.271us) - First Batch Returned: 4s133ms (38.020us) - Last Batch Returned: 4s133ms (214.290us) - Closed: 4s133ms (72.158us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 54.085us - GetResultsTime: 82.332us - HTResizeTime: 1.665us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.677us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s169ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s131ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s125ms (2s164ms) - First Batch Requested: 4s126ms (1.145ms) - First Batch Returned: 4s131ms (5.204ms) - Last Batch Returned: 4s131ms (638.000ns) - Closed: 4s131ms (101.071us) - ConvertRowBatchTime: 4.895us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 4.461us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s164ms - TotalBytesDequeued: 135.00 B (135) - TotalGetBatchTime: 2s169ms - DataWaitTime: 2s169ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -121053.000ns ; Min: -121053.000ns ; Max: -121053.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.429us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 77.00 B (77) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a7 (host=tarmstrong-Precision-7540:22000):(Total: 3s362ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.218 Fragment Instance Lifecycle Event Timeline: 4s144ms - Prepare Finished: 782.998ms (782.998ms) - Open Finished: 4s135ms (3s352ms) - First Batch Produced: 4s135ms (41.482us) - First Batch Sent: 4s135ms (17.175us) - ExecInternal Finished: 4s144ms (9.837ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s171ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s361ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.974ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 9.825ms - ExecTreeExecTime: 243.020us - OpenTime: 3s352ms - ExecTreeOpenTime: 2s173ms - PrepareTime: 589.445us - ExecTreePrepareTime: 360.872us Hash Join Builder (join_node_id=36):(Total: 9.956ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 65.755us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 103.164us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.242us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s174ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s135ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s134ms (2s173ms) - First Batch Requested: 4s135ms (490.907us) - First Batch Returned: 4s135ms (36.917us) - Last Batch Returned: 4s135ms (288.621us) - Closed: 4s135ms (67.825us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 64.375us - GetResultsTime: 98.786us - HTResizeTime: 1.993us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.726us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.766us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s171ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s133ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s126ms (2s165ms) - First Batch Requested: 4s127ms (1.349ms) - First Batch Returned: 4s133ms (5.944ms) - Last Batch Returned: 4s133ms (679.000ns) - Closed: 4s133ms (104.486us) - ConvertRowBatchTime: 5.920us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 2.549us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s165ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s171ms - DataWaitTime: 2s171ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -1339739.000ns ; Min: -1339739.000ns ; Max: -1339739.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 16.912us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a9 (host=tarmstrong-Precision-7540:22000):(Total: 3s347ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.218 Fragment Instance Lifecycle Event Timeline: 4s147ms - Prepare Finished: 799.885ms (799.885ms) - Open Finished: 4s133ms (3s333ms) - First Batch Produced: 4s133ms (48.170us) - First Batch Sent: 4s133ms (18.129us) - ExecInternal Finished: 4s147ms (13.757ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 2s169ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s347ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.633ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 13.738ms - ExecTreeExecTime: 144.328us - OpenTime: 3s333ms - ExecTreeOpenTime: 2s171ms - PrepareTime: 419.767us - ExecTreePrepareTime: 259.733us Hash Join Builder (join_node_id=36):(Total: 13.983ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 32.165us - BuildRowsPartitioned: 2 (2) - HashTablesBuildTime: 62.324us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.248us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2 (2) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s172ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s133ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s132ms (2s171ms) - First Batch Requested: 4s133ms (503.489us) - First Batch Returned: 4s133ms (42.474us) - Last Batch Returned: 4s133ms (142.378us) - Closed: 4s133ms (71.358us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 45.147us - GetResultsTime: 57.357us - HTResizeTime: 2.755us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.088us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.112us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s169ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s132ms - Open Started: 1s960ms (1s960ms) - Open Finished: 4s125ms (2s164ms) - First Batch Requested: 4s126ms (1.122ms) - First Batch Returned: 4s131ms (5.450ms) - Last Batch Returned: 4s131ms (774.000ns) - Closed: 4s132ms (92.621us) - ConvertRowBatchTime: 3.904us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.940us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s164ms - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 2s169ms - DataWaitTime: 2s169ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -72605.000ns ; Min: -72605.000ns ; Max: -72605.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.654us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 51.00 B (51) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a4 (host=tarmstrong-Precision-7540:22002):(Total: 3s201ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.120 Fragment Instance Lifecycle Event Timeline: 4s191ms - Prepare Finished: 990.930ms (990.930ms) - Open Finished: 4s174ms (3s183ms) - First Batch Produced: 4s174ms (44.560us) - First Batch Sent: 4s174ms (19.136us) - ExecInternal Finished: 4s191ms (17.787ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 2s081ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 3s200ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.445ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 17.737ms - ExecTreeExecTime: 292.892us - OpenTime: 3s183ms - ExecTreeOpenTime: 2s083ms - PrepareTime: 425.267us - ExecTreePrepareTime: 259.610us Hash Join Builder (join_node_id=36):(Total: 17.838ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 62.977us - BuildRowsPartitioned: 6 (6) - HashTablesBuildTime: 107.470us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.229us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 10 (10) - HashCollisions: 0 (0) - Probes: 11 (11) - Resizes: 0 (0) - Travel: 4 (4) AGGREGATION_NODE (id=138):(Total: 2s083ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s174ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s173ms (2s083ms) - First Batch Requested: 4s174ms (514.659us) - First Batch Returned: 4s174ms (39.878us) - Last Batch Returned: 4s174ms (334.057us) - Closed: 4s174ms (69.853us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 6 (6) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 67.756us - GetResultsTime: 144.899us - HTResizeTime: 1.922us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 6 (6) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.332us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.935us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s081ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s172ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s168ms (2s077ms) - First Batch Requested: 4s169ms (1.103ms) - First Batch Returned: 4s172ms (3.364ms) - Last Batch Returned: 4s172ms (721.000ns) - Closed: 4s172ms (114.084us) - ConvertRowBatchTime: 6.635us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 6 (6) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 4.130us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.080us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s077ms - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 2s081ms - DataWaitTime: 2s081ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -123638.000ns ; Min: -123638.000ns ; Max: -123638.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.379us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 155.00 B (155) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a2 (host=tarmstrong-Precision-7540:22002):(Total: 3s200ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.127 Fragment Instance Lifecycle Event Timeline: 4s188ms - Prepare Finished: 988.814ms (988.814ms) - Open Finished: 4s175ms (3s186ms) - First Batch Produced: 4s175ms (46.107us) - First Batch Sent: 4s175ms (18.847us) - ExecInternal Finished: 4s188ms (12.939ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s081ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 79 (79) - TotalThreadsTotalWallClockTime: 3s199ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 235.590ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 12.912ms - ExecTreeExecTime: 77.979us - OpenTime: 3s186ms - ExecTreeOpenTime: 2s084ms - PrepareTime: 552.339us - ExecTreePrepareTime: 328.608us Hash Join Builder (join_node_id=36):(Total: 13.254ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 17.647us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 46.734us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.659us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s085ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s175ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s174ms (2s084ms) - First Batch Requested: 4s175ms (527.331us) - First Batch Returned: 4s175ms (40.548us) - Last Batch Returned: 4s175ms (57.461us) - Closed: 4s175ms (68.634us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 25.897us - GetResultsTime: 33.236us - HTResizeTime: 2.485us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.451us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.616us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s081ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s174ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s168ms (2s077ms) - First Batch Requested: 4s169ms (1.125ms) - First Batch Returned: 4s172ms (3.373ms) - Last Batch Returned: 4s172ms (819.000ns) - Closed: 4s174ms (1.533ms) - ConvertRowBatchTime: 3.558us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.852us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s077ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 2s081ms - DataWaitTime: 2s081ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -68423.000ns ; Min: -68423.000ns ; Max: -68423.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.224us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a3 (host=tarmstrong-Precision-7540:22002):(Total: 3s197ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.134 Fragment Instance Lifecycle Event Timeline: 4s187ms - Prepare Finished: 990.426ms (990.426ms) - Open Finished: 4s173ms (3s183ms) - First Batch Produced: 4s174ms (45.776us) - First Batch Sent: 4s174ms (19.116us) - ExecInternal Finished: 4s187ms (13.874ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s081ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 3s197ms - TotalThreadsSysTime: 1.550ms - TotalThreadsUserTime: 1.958ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 13.853ms - ExecTreeExecTime: 2.162ms - OpenTime: 3s183ms - ExecTreeOpenTime: 2s082ms - PrepareTime: 430.680us - ExecTreePrepareTime: 270.196us Hash Join Builder (join_node_id=36):(Total: 12.083ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 63.836us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 112.903us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.073us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s085ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s176ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s173ms (2s082ms) - First Batch Requested: 4s173ms (521.618us) - First Batch Returned: 4s174ms (40.639us) - Last Batch Returned: 4s176ms (2.204ms) - Closed: 4s176ms (77.044us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 62.584us - GetResultsTime: 2.005ms - HTResizeTime: 3.544us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.932us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s081ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s172ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s168ms (2s077ms) - First Batch Requested: 4s169ms (1.199ms) - First Batch Returned: 4s172ms (3.266ms) - Last Batch Returned: 4s172ms (880.000ns) - Closed: 4s172ms (113.053us) - ConvertRowBatchTime: 5.384us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 4.322us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s077ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s081ms - DataWaitTime: 2s081ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -40033.000ns ; Min: -40033.000ns ; Max: -40033.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.406us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000a5 (host=tarmstrong-Precision-7540:22002):(Total: 3s163ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.120 Fragment Instance Lifecycle Event Timeline: 4s187ms - Prepare Finished: 1s023ms (1s023ms) - Open Finished: 4s173ms (3s149ms) - First Batch Produced: 4s174ms (42.991us) - First Batch Sent: 4s174ms (18.427us) - ExecInternal Finished: 4s187ms (13.436ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 2s081ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 3s163ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.760ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 13.411ms - ExecTreeExecTime: 256.565us - OpenTime: 3s149ms - ExecTreeOpenTime: 2s082ms - PrepareTime: 494.879us - ExecTreePrepareTime: 312.871us Hash Join Builder (join_node_id=36):(Total: 13.553ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 46.658us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 97.488us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.166us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 2s083ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s174ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s173ms (2s082ms) - First Batch Requested: 4s173ms (517.149us) - First Batch Returned: 4s174ms (38.252us) - Last Batch Returned: 4s174ms (277.964us) - Closed: 4s174ms (71.810us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 65.146us - GetResultsTime: 79.454us - HTResizeTime: 2.583us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.445us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 2s081ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s172ms - Open Started: 2s090ms (2s090ms) - Open Finished: 4s168ms (2s077ms) - First Batch Requested: 4s169ms (1.057ms) - First Batch Returned: 4s172ms (3.337ms) - Last Batch Returned: 4s172ms (779.000ns) - Closed: 4s172ms (120.517us) - ConvertRowBatchTime: 4.567us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 1.958us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s077ms - TotalBytesDequeued: 135.00 B (135) - TotalGetBatchTime: 2s081ms - DataWaitTime: 2s081ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -28281.000ns ; Min: -28281.000ns ; Max: -28281.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 14.622us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 72.00 B (72) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000aa (host=tarmstrong-Precision-7540:22001):(Total: 1s748ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.929 Fragment Instance Lifecycle Event Timeline: 4s214ms - Prepare Finished: 2s466ms (2s466ms) - Open Finished: 4s141ms (1s674ms) - First Batch Produced: 4s141ms (47.400us) - First Batch Sent: 4s141ms (19.657us) - ExecInternal Finished: 4s214ms (72.958ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 853.419ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 78 (78) - TotalThreadsTotalWallClockTime: 1s747ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 235.030ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 72.923ms - ExecTreeExecTime: 260.720us - OpenTime: 1s674ms - ExecTreeOpenTime: 855.268ms - PrepareTime: 493.717us - ExecTreePrepareTime: 313.831us Hash Join Builder (join_node_id=36):(Total: 72.985ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 57.697us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 132.317us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.158us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 855.837ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s142ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s141ms (855.265ms) - First Batch Requested: 4s141ms (483.546us) - First Batch Returned: 4s141ms (43.124us) - Last Batch Returned: 4s141ms (292.518us) - Closed: 4s142ms (111.840us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 68.361us - GetResultsTime: 114.124us - HTResizeTime: 1.694us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.364us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 853.438ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s140ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s136ms (850.400ms) - First Batch Requested: 4s137ms (1.139ms) - First Batch Returned: 4s140ms (3.034ms) - Last Batch Returned: 4s140ms (753.000ns) - Closed: 4s140ms (123.883us) - ConvertRowBatchTime: 5.647us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 3.304us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 802.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 850.395ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 853.418ms - DataWaitTime: 853.410ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -178912.000ns ; Min: -178912.000ns ; Max: -178912.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.437us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 102.00 B (102) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000ab (host=tarmstrong-Precision-7540:22001):(Total: 1s732ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.938 Fragment Instance Lifecycle Event Timeline: 4s214ms - Prepare Finished: 2s482ms (2s482ms) - Open Finished: 4s142ms (1s659ms) - First Batch Produced: 4s142ms (48.187us) - First Batch Sent: 4s142ms (18.036us) - ExecInternal Finished: 4s214ms (72.828ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 853.666ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1s731ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.648ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 72.776ms - ExecTreeExecTime: 272.667us - OpenTime: 1s659ms - ExecTreeOpenTime: 855.592ms - PrepareTime: 502.710us - ExecTreePrepareTime: 306.019us Hash Join Builder (join_node_id=36):(Total: 72.998ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 60.370us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 74.664us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.217us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 856.164ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s142ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s141ms (855.588ms) - First Batch Requested: 4s142ms (661.223us) - First Batch Returned: 4s142ms (43.051us) - Last Batch Returned: 4s142ms (307.158us) - Closed: 4s142ms (79.154us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 64.528us - GetResultsTime: 113.785us - HTResizeTime: 3.136us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.052us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 853.686ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s140ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s136ms (850.621ms) - First Batch Requested: 4s137ms (1.153ms) - First Batch Returned: 4s140ms (3.061ms) - Last Batch Returned: 4s140ms (720.000ns) - Closed: 4s140ms (112.464us) - ConvertRowBatchTime: 5.972us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 3.052us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.513us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 850.615ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 853.664ms - DataWaitTime: 853.654ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -210927.000ns ; Min: -210927.000ns ; Max: -210927.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.603us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000ac (host=tarmstrong-Precision-7540:22001):(Total: 1s700ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.928 Fragment Instance Lifecycle Event Timeline: 4s214ms - Prepare Finished: 2s514ms (2s514ms) - Open Finished: 4s145ms (1s631ms) - First Batch Produced: 4s145ms (43.643us) - First Batch Sent: 4s145ms (18.976us) - ExecInternal Finished: 4s214ms (68.931ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 857.476ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1s699ms - TotalThreadsSysTime: 1.859ms - TotalThreadsUserTime: 1.985ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 68.909ms - ExecTreeExecTime: 204.123us - OpenTime: 1s631ms - ExecTreeOpenTime: 859.433ms - PrepareTime: 450.003us - ExecTreePrepareTime: 278.614us Hash Join Builder (join_node_id=36):(Total: 69.090ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 47.501us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 91.281us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.627us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6 (6) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 2 (2) AGGREGATION_NODE (id=138):(Total: 859.911ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s146ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s145ms (859.429ms) - First Batch Requested: 4s145ms (506.814us) - First Batch Returned: 4s145ms (39.019us) - Last Batch Returned: 4s146ms (224.856us) - Closed: 4s146ms (75.201us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 57.663us - GetResultsTime: 82.364us - HTResizeTime: 2.198us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.275us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 857.499ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s144ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s138ms (853.012ms) - First Batch Requested: 4s140ms (1.191ms) - First Batch Returned: 4s144ms (4.482ms) - Last Batch Returned: 4s144ms (867.000ns) - Closed: 4s144ms (111.791us) - ConvertRowBatchTime: 6.225us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 2.629us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.078us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 853.004ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 857.474ms - DataWaitTime: 857.465ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -238613.000ns ; Min: -238613.000ns ; Max: -238613.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.427us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 94.00 B (94) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000ad (host=tarmstrong-Precision-7540:22001):(Total: 1s700ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.928 Fragment Instance Lifecycle Event Timeline: 4s215ms - Prepare Finished: 2s515ms (2s515ms) - Open Finished: 4s147ms (1s632ms) - First Batch Produced: 4s147ms (41.595us) - First Batch Sent: 4s147ms (16.578us) - ExecInternal Finished: 4s215ms (67.326ms) - MemoryUsage (500.000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 859.424ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1s699ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.945ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 67.316ms - ExecTreeExecTime: 276.927us - OpenTime: 1s632ms - ExecTreeOpenTime: 861.431ms - PrepareTime: 365.400us - ExecTreePrepareTime: 227.888us Hash Join Builder (join_node_id=36):(Total: 67.424ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 55.757us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 107.643us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.594us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=138):(Total: 861.931ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s148ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s147ms (861.428ms) - First Batch Requested: 4s147ms (512.479us) - First Batch Returned: 4s147ms (37.394us) - Last Batch Returned: 4s148ms (309.774us) - Closed: 4s148ms (81.308us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 69.017us - GetResultsTime: 124.255us - HTResizeTime: 2.792us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.696us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=137):(Total: 859.445ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s146ms - Open Started: 3s285ms (3s285ms) - Open Finished: 4s137ms (851.669ms) - First Batch Requested: 4s138ms (1.298ms) - First Batch Returned: 4s146ms (7.772ms) - Last Batch Returned: 4s146ms (831.000ns) - Closed: 4s146ms (126.251us) - ConvertRowBatchTime: 5.955us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 4.00 /sec Buffer pool: - AllocTime: 2.957us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.454us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 851.662ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 859.422ms - DataWaitTime: 859.412ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -267822.000ns ; Min: -267822.000ns ; Max: -267822.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.557us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F18:(Total: 1s621ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.66 MB, max: 5.66 MB, avg: 5.66 MB, stddev: 0 completion times: min:8s039ms max:8s039ms mean: 8s039ms stddev:0.000ns execution rates: min:721.21 KB/sec max:721.21 KB/sec mean:721.21 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.88 MB (4072554) - PeakReservation: 3.19 MB (3342336) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 40 (40) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.992ms - TotalStorageWaitTime: 18.818us - TotalThreadsInvoluntaryContextSwitches: 364 (364) - TotalThreadsTotalWallClockTime: 1s620ms - TotalThreadsSysTime: 4.122ms - TotalThreadsUserTime: 525.962ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 13.223ms - ExecTreeExecTime: 2.659ms - OpenTime: 1s607ms - ExecTreeOpenTime: 59.350ms - PrepareTime: 964.528us - ExecTreePrepareTime: 569.599us KrpcDataStreamSender (dst_id=137):(Total: 10.603ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 89.44 KB (91584) - RowsSent: 40 (40) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 68.841us - TotalBytesSent: 1011.00 B (1011) - UncompressedRowBatchSize: 1.76 KB (1800) AGGREGATION_NODE (id=35):(Total: 62.567ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.10 MB (2202752) - RowsReturned: 40 (40) - RowsReturnedRate: 639.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 434.380us - HTResizeTime: 194.258us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 40 (40) - StreamingTime: 460.672us Buffer pool: - AllocTime: 35.329us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.04K (1039) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=34):(Total: 60.294ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 99.12 KB (101504) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 73.556us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 17.23 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=33):(Total: 59.652ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.025us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 17.42 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=30):(Total: 58.955ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 924.19 KB (946371) - BytesReadDataNodeCache: 0 - BytesReadLocal: 924.19 KB (946371) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 924.19 KB (946371) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 187.135us - MaterializeTupleTime: 44.418ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.79 MB (1872733) - PerReadThreadRawHdfsThroughput: 506.27 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 71.76K (71763) - RowsReturned: 1.04K (1039) - RowsReturnedRate: 17.62 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 18.818us - TotalRawHdfsOpenFileTime: 27.924us - TotalRawHdfsReadTime: 1.782ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.508us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.31 MB (1376256) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.19 MB (1245184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.19 MB (1245184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 16 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 71.76K (71763) - Rows rejected: 3.13K (3130) - Rows total: 71.76K (71763) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 18 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 68.63K (68633) - Rows rejected: 67.59K (67594) - Rows total: 68.63K (68633) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F18: Instance 50467cb8e73eeac4:853461b4000000a1 (host=tarmstrong-Precision-7540:22001):(Total: 1s621ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.928 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.66 MB Fragment Instance Lifecycle Event Timeline: 4s146ms - Prepare Finished: 2s525ms (2s525ms) - Open Finished: 4s132ms (1s607ms) - First Batch Produced: 4s134ms (1.968ms) - First Batch Sent: 4s134ms (3.439us) - ExecInternal Finished: 4s146ms (11.334ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.88 MB (4072554) - PeakReservation: 3.19 MB (3342336) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 40 (40) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.992ms - TotalStorageWaitTime: 18.818us - TotalThreadsInvoluntaryContextSwitches: 364 (364) - TotalThreadsTotalWallClockTime: 1s620ms - TotalThreadsSysTime: 4.122ms - TotalThreadsUserTime: 525.962ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 13.223ms - ExecTreeExecTime: 2.659ms - OpenTime: 1s607ms - ExecTreeOpenTime: 59.350ms - PrepareTime: 964.528us - ExecTreePrepareTime: 569.599us KrpcDataStreamSender (dst_id=137):(Total: 10.603ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 70.99 KB/sec ; Min: 15.28 KB/sec ; Max: 279.32 KB/sec ; Number of samples: 12) - RpcNetworkTime: (Avg: 1.491ms ; Min: 326.400us ; Max: 4.482ms ; Number of samples: 24) - RpcRecvrTime: (Avg: -171573.000ns ; Min: -1365865.000ns ; Max: -36889.000ns ; Number of samples: 24) - EosSent: 12 (12) - PeakMemoryUsage: 89.44 KB (91584) - RowsSent: 40 (40) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 68.841us - TotalBytesSent: 1011.00 B (1011) - UncompressedRowBatchSize: 1.76 KB (1800) AGGREGATION_NODE (id=35):(Total: 62.567ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 4s135ms - Open Started: 4s073ms (4s073ms) - Open Finished: 4s132ms (59.346ms) - First Batch Requested: 4s132ms (27.467us) - First Batch Returned: 4s134ms (1.962ms) - Last Batch Returned: 4s135ms (863.440us) - Closed: 4s135ms (65.932us) - PeakMemoryUsage: 2.10 MB (2202752) - RowsReturned: 40 (40) - RowsReturnedRate: 639.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 434.380us - HTResizeTime: 194.258us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 40 (40) - StreamingTime: 460.672us Buffer pool: - AllocTime: 35.329us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.04K (1039) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=34):(Total: 60.294ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s134ms - Open Started: 4s073ms (4s073ms) - Waiting for builder: 4s131ms (58.245ms) - Initial build available: 4s131ms (5.288us) - Open Finished: 4s131ms (124.725us) - First Batch Requested: 4s132ms (1.000ms) - First Batch Returned: 4s132ms (74.770us) - Last Batch Returned: 4s134ms (1.679ms) - Closed: 4s134ms (140.838us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 99.12 KB (101504) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 73.556us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 17.23 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=33):(Total: 59.652ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 4s134ms - Open Started: 4s073ms (4s073ms) - Waiting for builder: 4s073ms (317.537us) - Initial build available: 4s073ms (4.599us) - Open Finished: 4s131ms (57.826ms) - First Batch Requested: 4s131ms (116.604us) - First Batch Returned: 4s131ms (87.497us) - Last Batch Returned: 4s134ms (2.449ms) - Closed: 4s134ms (438.898us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.025us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 17.42 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=30):(Total: 58.955ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.66 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 969ms. Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 4s134ms - Closed: 4s134ms (4s134ms) - BytesReadSeries (500.000ms): 0, 0, 0 - FooterProcessingTime: (Avg: 222.702us ; Min: 222.702us ; Max: 222.702us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 125.72 KB (128735) ; Min: 55.96 KB (57304) ; Max: 173.40 KB (177560) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 50.29 KB (51494) ; Min: 11.41 KB (11688) ; Max: 67.55 KB (69170) ; Number of samples: 10) - ParquetRowGroupActualReservation: (Avg: 1.19 MB (1245184) ; Min: 1.19 MB (1245184) ; Max: 1.19 MB (1245184) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 1.19 MB (1245184) ; Min: 1.19 MB (1245184) ; Max: 1.19 MB (1245184) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 127.59 KB (130652) ; Min: 58.04 KB (59435) ; Max: 175.16 KB (179365) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 51.04 KB (52261) ; Min: 11.43 KB (11706) ; Max: 68.84 KB (70495) ; Number of samples: 10) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 924.19 KB (946371) - BytesReadDataNodeCache: 0 - BytesReadLocal: 924.19 KB (946371) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 924.19 KB (946371) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 187.135us - MaterializeTupleTime: 44.418ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.79 MB (1872733) - PerReadThreadRawHdfsThroughput: 506.27 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 71.76K (71763) - RowsReturned: 1.04K (1039) - RowsReturnedRate: 17.62 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 18.818us - TotalRawHdfsOpenFileTime: 27.924us - TotalRawHdfsReadTime: 1.782ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.508us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.31 MB (1376256) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.19 MB (1245184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.19 MB (1245184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 16 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 71.76K (71763) - Rows rejected: 3.13K (3130) - Rows total: 71.76K (71763) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 18 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 68.63K (68633) - Rows rejected: 67.59K (67594) - Rows total: 68.63K (68633) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F83:(Total: 1s598ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s046ms max:8s046ms mean: 8s046ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 12.454us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 59 (59) - TotalThreadsTotalWallClockTime: 1s598ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 158.168ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 849.677ms - ExecTreeExecTime: 59.509us - OpenTime: 748.459ms - ExecTreeOpenTime: 11.610us - PrepareTime: 291.208us - ExecTreePrepareTime: 137.774us Hash Join Builder (join_node_id=34):(Total: 850.564ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 171.823us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 375.725us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 30.780us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.237us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.10K (1099) - Resizes: 0 (0) - Travel: 613 (613) EXCHANGE_NODE (id=136):(Total: 68.424us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 41.772us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 876.88 K/sec Buffer pool: - AllocTime: 3.363us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 10.788us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 21.342us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F83: Instance 50467cb8e73eeac4:853461b4000000af (host=tarmstrong-Precision-7540:22001):(Total: 1s598ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.935 Fragment Instance Lifecycle Event Timeline: 4s134ms - Prepare Finished: 2s536ms (2s536ms) - Open Finished: 3s285ms (748.472ms) - First Batch Produced: 3s285ms (63.269us) - First Batch Sent: 3s285ms (174.118us) - ExecInternal Finished: 4s134ms (849.532ms) - MemoryUsage (500.000ms): 17.12 KB, 33.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 12.454us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 59 (59) - TotalThreadsTotalWallClockTime: 1s598ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 158.168ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 849.677ms - ExecTreeExecTime: 59.509us - OpenTime: 748.459ms - ExecTreeOpenTime: 11.610us - PrepareTime: 291.208us - ExecTreePrepareTime: 137.774us Hash Join Builder (join_node_id=34):(Total: 850.564ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 171.823us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 375.725us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 30.780us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.237us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.10K (1099) - Resizes: 0 (0) - Travel: 613 (613) EXCHANGE_NODE (id=136):(Total: 68.424us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s285ms - Open Started: 3s283ms (3s283ms) - Open Finished: 3s283ms (8.164us) - First Batch Requested: 3s285ms (1.052ms) - First Batch Returned: 3s285ms (56.821us) - Last Batch Returned: 3s285ms (488.000ns) - Closed: 3s285ms (236.428us) - ConvertRowBatchTime: 41.772us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 876.88 K/sec Buffer pool: - AllocTime: 3.363us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 10.788us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 484.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -79700.000ns ; Min: -79700.000ns ; Max: -79700.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.342us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F20:(Total: 164.789ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.56 KB, max: 5.56 KB, avg: 5.56 KB, stddev: 0 completion times: min:8s039ms max:8s039ms mean: 8s039ms stddev:0.000ns execution rates: min:708.00 B/sec max:708.00 B/sec mean:708.00 B/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.08 - PeakMemoryUsage: 54.83 KB (56144) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 526.465us - TotalStorageWaitTime: 7.830ms - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 164.383ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.412ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 9.366ms - ExecTreeExecTime: 8.507ms - OpenTime: 155.025ms - ExecTreeOpenTime: 199.489us - PrepareTime: 323.681us - ExecTreePrepareTime: 149.957us KrpcDataStreamSender (dst_id=136):(Total: 813.595us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 31.071us - TotalBytesSent: 484.00 B (484) - UncompressedRowBatchSize: 780.00 B (780) HDFS_SCAN_NODE (id=32):(Total: 8.891ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 12.830us - MaterializeTupleTime: 23.726us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 7.90 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 6.75 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 7.830ms - TotalRawHdfsOpenFileTime: 18.705us - TotalRawHdfsReadTime: 728.247us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.278us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F20: Instance 50467cb8e73eeac4:853461b4000000ae (host=tarmstrong-Precision-7540:22001):(Total: 164.789ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.928 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB Fragment Instance Lifecycle Event Timeline: 2s709ms - Prepare Finished: 2s544ms (2s544ms) - Open Finished: 2s699ms (155.034ms) - First Batch Produced: 2s708ms (8.353ms) - First Batch Sent: 2s708ms (176.954us) - ExecInternal Finished: 2s709ms (919.260us) - MemoryUsage (500.000ms): 33.59 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.08 - PeakMemoryUsage: 54.83 KB (56144) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 526.465us - TotalStorageWaitTime: 7.830ms - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 164.383ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.412ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 9.366ms - ExecTreeExecTime: 8.507ms - OpenTime: 155.025ms - ExecTreeOpenTime: 199.489us - PrepareTime: 323.681us - ExecTreePrepareTime: 149.957us KrpcDataStreamSender (dst_id=136):(Total: 813.595us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 535.27 KB/sec ; Min: 535.27 KB/sec ; Max: 535.27 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 571.113us ; Min: 259.211us ; Max: 883.016us ; Number of samples: 2) - RpcRecvrTime: (Avg: -75018.000ns ; Min: -109415.000ns ; Max: -40621.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 31.071us - TotalBytesSent: 484.00 B (484) - UncompressedRowBatchSize: 780.00 B (780) HDFS_SCAN_NODE (id=32):(Total: 8.891ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_page Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s708ms - Closed: 2s708ms (2s708ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 6.253ms ; Min: 6.253ms ; Max: 6.253ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 12.830us - MaterializeTupleTime: 23.726us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 7.90 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 6.75 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 7.830ms - TotalRawHdfsOpenFileTime: 18.705us - TotalRawHdfsReadTime: 728.247us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.278us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F84:(Total: 1s574ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s060ms max:8s060ms mean: 8s060ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 116.336ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 172 (172) - TotalThreadsTotalWallClockTime: 1s572ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 160.442ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 641.345ms - ExecTreeExecTime: 49.749us - OpenTime: 931.254ms - ExecTreeOpenTime: 116.338ms - PrepareTime: 1.395ms - ExecTreePrepareTime: 136.972us Hash Join Builder (join_node_id=33):(Total: 642.434ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 263.329us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 387.395us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 46.405us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.534us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.07K (1070) - Resizes: 0 (0) - Travel: 553 (553) EXCHANGE_NODE (id=135):(Total: 116.385ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 29.761us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 266.00 /sec Buffer pool: - AllocTime: 3.565us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 116.323ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 116.334ms - DataWaitTime: 116.323ms Enqueue: - DeserializeRowBatchTime: 28.161us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F84: Instance 50467cb8e73eeac4:853461b4000000b1 (host=tarmstrong-Precision-7540:22001):(Total: 1s574ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.949 Fragment Instance Lifecycle Event Timeline: 4s134ms - Prepare Finished: 2s562ms (2s562ms) - Open Finished: 3s493ms (931.270ms) - First Batch Produced: 3s493ms (54.924us) - First Batch Sent: 3s493ms (266.446us) - ExecInternal Finished: 4s134ms (641.125ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 116.336ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 172 (172) - TotalThreadsTotalWallClockTime: 1s572ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 160.442ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 641.345ms - ExecTreeExecTime: 49.749us - OpenTime: 931.254ms - ExecTreeOpenTime: 116.338ms - PrepareTime: 1.395ms - ExecTreePrepareTime: 136.972us Hash Join Builder (join_node_id=33):(Total: 642.434ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 263.329us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 387.395us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 46.405us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.534us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.07K (1070) - Resizes: 0 (0) - Travel: 553 (553) EXCHANGE_NODE (id=135):(Total: 116.385ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s493ms - Open Started: 3s375ms (3s375ms) - Open Finished: 3s492ms (116.334ms) - First Batch Requested: 3s493ms (1.247ms) - First Batch Returned: 3s493ms (45.795us) - Last Batch Returned: 3s493ms (550.000ns) - Closed: 3s493ms (323.480us) - ConvertRowBatchTime: 29.761us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 266.00 /sec Buffer pool: - AllocTime: 3.565us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 116.323ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 116.334ms - DataWaitTime: 116.323ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -82942.000ns ; Min: -82942.000ns ; Max: -82942.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 28.161us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F19:(Total: 928.234ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s039ms max:8s039ms mean: 8s039ms stddev:0.000ns execution rates: min:274.42 KB/sec max:274.42 KB/sec mean:274.42 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 10.307ms - TotalStorageWaitTime: 1.218ms - TotalThreadsInvoluntaryContextSwitches: 66 (66) - TotalThreadsTotalWallClockTime: 927.662ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 209.653ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 92.919ms - ExecTreeExecTime: 82.333ms - OpenTime: 834.753ms - ExecTreeOpenTime: 23.815ms - PrepareTime: 455.043us - ExecTreePrepareTime: 216.263us KrpcDataStreamSender (dst_id=135):(Total: 10.472ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.546us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=31):(Total: 106.448ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 24.454us - MaterializeTupleTime: 28.748ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 156.25 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 291.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.218ms - TotalRawHdfsOpenFileTime: 42.824us - TotalRawHdfsReadTime: 2.727ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 25.221us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.368us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F19: Instance 50467cb8e73eeac4:853461b4000000b0 (host=tarmstrong-Precision-7540:22001):(Total: 928.234ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.928 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 3s502ms - Prepare Finished: 2s574ms (2s574ms) - Open Finished: 3s409ms (834.765ms) - First Batch Produced: 3s491ms (82.092ms) - First Batch Sent: 3s491ms (79.271us) - ExecInternal Finished: 3s502ms (10.857ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 10.307ms - TotalStorageWaitTime: 1.218ms - TotalThreadsInvoluntaryContextSwitches: 66 (66) - TotalThreadsTotalWallClockTime: 927.662ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 209.653ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 92.919ms - ExecTreeExecTime: 82.333ms - OpenTime: 834.753ms - ExecTreeOpenTime: 23.815ms - PrepareTime: 455.043us - ExecTreePrepareTime: 216.263us KrpcDataStreamSender (dst_id=135):(Total: 10.472ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 902.18 KB/sec ; Min: 902.18 KB/sec ; Max: 902.18 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 375.947us ; Min: 279.947us ; Max: 471.947us ; Number of samples: 2) - RpcRecvrTime: (Avg: -81229.000ns ; Min: -124838.000ns ; Max: -37621.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.546us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=31):(Total: 106.448ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s492ms - Closed: 3s492ms (3s492ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 234.114us ; Min: 234.114us ; Max: 234.114us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 712.576us ; Min: 712.576us ; Max: 712.576us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 24.454us - MaterializeTupleTime: 28.748ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 156.25 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 291.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.218ms - TotalRawHdfsOpenFileTime: 42.824us - TotalRawHdfsReadTime: 2.727ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 25.221us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.368us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F85:(Total: 2s348ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s250ms max:8s050ms mean: 7s201ms stddev:738.236ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 852.391ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 57 (57) - TotalThreadsTotalWallClockTime: 2s343ms - TotalThreadsSysTime: 576.333us - TotalThreadsUserTime: 157.157ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 724.194ms - ExecTreeExecTime: 27.090us - OpenTime: 1s619ms - ExecTreeOpenTime: 852.392ms - PrepareTime: 310.047us - ExecTreePrepareTime: 134.840us Hash Join Builder (join_node_id=6):(Total: 725.029ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 148.444us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 343.545us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 39.981us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 27.160us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 19.77K (19775) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=117):(Total: 852.416ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 10.964us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 119.32 K/sec Buffer pool: - AllocTime: 4.926us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.487us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 852.380ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 852.389ms - DataWaitTime: 852.380ms Enqueue: - DeserializeRowBatchTime: 22.769us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F85: Instance 50467cb8e73eeac4:853461b4000000b4 (host=tarmstrong-Precision-7540:22000):(Total: 3s242ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.208 Fragment Instance Lifecycle Event Timeline: 3s629ms - Prepare Finished: 387.800ms (387.800ms) - Open Finished: 2s810ms (2s422ms) - First Batch Produced: 2s810ms (31.189us) - First Batch Sent: 2s810ms (153.102us) - ExecInternal Finished: 3s629ms (819.104ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 1s514ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 97 (97) - TotalThreadsTotalWallClockTime: 3s241ms - TotalThreadsSysTime: 1.729ms - TotalThreadsUserTime: 157.066ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 819.135ms - ExecTreeExecTime: 27.243us - OpenTime: 2s422ms - ExecTreeOpenTime: 1s514ms - PrepareTime: 300.365us - ExecTreePrepareTime: 128.190us Hash Join Builder (join_node_id=6):(Total: 819.940ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 150.412us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 316.675us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 44.907us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 36.278us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 18.73K (18728) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=117):(Total: 1s514ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s810ms - Open Started: 1s294ms (1s294ms) - Open Finished: 2s809ms (1s514ms) - First Batch Requested: 2s810ms (927.879us) - First Batch Returned: 2s810ms (24.531us) - Last Batch Returned: 2s810ms (399.000ns) - Closed: 2s810ms (207.770us) - ConvertRowBatchTime: 11.082us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 7.00 /sec Buffer pool: - AllocTime: 4.483us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s514ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 1s514ms - DataWaitTime: 1s514ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -69470.000ns ; Min: -69470.000ns ; Max: -69470.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.591us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000b5 (host=tarmstrong-Precision-7540:22002):(Total: 2s522ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.120 Fragment Instance Lifecycle Event Timeline: 3s589ms - Prepare Finished: 1s078ms (1s078ms) - Open Finished: 2s853ms (1s775ms) - First Batch Produced: 2s853ms (29.037us) - First Batch Sent: 2s853ms (127.146us) - ExecInternal Finished: 3s589ms (735.688ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 1s042ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 45 (45) - TotalThreadsTotalWallClockTime: 2s510ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 160.480ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 735.681ms - ExecTreeExecTime: 25.795us - OpenTime: 1s775ms - ExecTreeOpenTime: 1s042ms - PrepareTime: 340.823us - ExecTreePrepareTime: 150.064us Hash Join Builder (join_node_id=6):(Total: 736.560ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 124.197us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 386.258us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 18.506us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 21.52K (21521) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=117):(Total: 1s042ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s853ms - Open Started: 1s810ms (1s810ms) - Open Finished: 2s852ms (1s042ms) - First Batch Requested: 2s853ms (1.011ms) - First Batch Returned: 2s853ms (22.917us) - Last Batch Returned: 2s853ms (405.000ns) - Closed: 2s853ms (178.629us) - ConvertRowBatchTime: 10.242us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 11.00 /sec Buffer pool: - AllocTime: 5.658us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.079us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0 - FirstBatchWaitTime: 1s042ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 1s042ms - DataWaitTime: 1s042ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0 - DispatchTime: (Avg: -52729.000ns ; Min: -52729.000ns ; Max: -52729.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 24.208us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000b3 (host=tarmstrong-Precision-7540:22001):(Total: 1s278ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.939 Fragment Instance Lifecycle Event Timeline: 3s867ms - Prepare Finished: 2s588ms (2s588ms) - Open Finished: 3s249ms (660.708ms) - First Batch Produced: 3s249ms (31.534us) - First Batch Sent: 3s249ms (173.299us) - ExecInternal Finished: 3s867ms (617.732ms) - MemoryUsage (500.000ms): 17.12 KB, 33.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 10.121us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 29 (29) - TotalThreadsTotalWallClockTime: 1s278ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 153.926ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 617.766ms - ExecTreeExecTime: 28.232us - OpenTime: 660.696ms - ExecTreeOpenTime: 8.558us - PrepareTime: 288.954us - ExecTreePrepareTime: 126.267us Hash Join Builder (join_node_id=6):(Total: 618.587ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 170.723us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 327.703us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 56.531us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 45.202us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 19.08K (19077) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=117):(Total: 33.524us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s249ms - Open Started: 3s248ms (3s248ms) - Open Finished: 3s248ms (5.619us) - First Batch Requested: 3s249ms (951.735us) - First Batch Returned: 3s249ms (25.343us) - Last Batch Returned: 3s249ms (488.000ns) - Closed: 3s249ms (236.052us) - ConvertRowBatchTime: 11.569us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 357.95 K/sec Buffer pool: - AllocTime: 4.637us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.382us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 8.525us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 100.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -43387.000ns ; Min: -43387.000ns ; Max: -43387.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.509us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F02:(Total: 224.743ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.93 KB, max: 9.93 KB, avg: 9.93 KB, stddev: 0 completion times: min:8s051ms max:8s051ms mean: 8s051ms stddev:0.000ns execution rates: min:1.23 KB/sec max:1.23 KB/sec mean:1.23 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.03 - PeakMemoryUsage: 113.83 KB (116560) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 172.707us - TotalStorageWaitTime: 1.571ms - TotalThreadsInvoluntaryContextSwitches: 7 (7) - TotalThreadsTotalWallClockTime: 224.366ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.644ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 12.430ms - ExecTreeExecTime: 11.950ms - OpenTime: 211.944ms - ExecTreeOpenTime: 6.027ms - PrepareTime: 305.478us - ExecTreePrepareTime: 120.697us KrpcDataStreamSender (dst_id=117):(Total: 391.847us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 76.78 KB (78624) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.302us - TotalBytesSent: 300.00 B (300) - UncompressedRowBatchSize: 468.00 B (468) HDFS_SCAN_NODE (id=4):(Total: 18.124ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.965us - MaterializeTupleTime: 18.365us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 14.44 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 662.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.571ms - TotalRawHdfsOpenFileTime: 18.804us - TotalRawHdfsReadTime: 678.302us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.283us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.726us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F02: Instance 50467cb8e73eeac4:853461b4000000b2 (host=tarmstrong-Precision-7540:22001):(Total: 224.743ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.940 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB Fragment Instance Lifecycle Event Timeline: 2s821ms - Prepare Finished: 2s596ms (2s596ms) - Open Finished: 2s808ms (211.955ms) - First Batch Produced: 2s820ms (11.801ms) - First Batch Sent: 2s820ms (83.095us) - ExecInternal Finished: 2s821ms (661.761us) - MemoryUsage (500.000ms): 84.78 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.03 - PeakMemoryUsage: 113.83 KB (116560) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 172.707us - TotalStorageWaitTime: 1.571ms - TotalThreadsInvoluntaryContextSwitches: 7 (7) - TotalThreadsTotalWallClockTime: 224.366ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.644ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 12.430ms - ExecTreeExecTime: 11.950ms - OpenTime: 211.944ms - ExecTreeOpenTime: 6.027ms - PrepareTime: 305.478us - ExecTreePrepareTime: 120.697us KrpcDataStreamSender (dst_id=117):(Total: 391.847us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 244.82 KB/sec ; Min: 218.90 KB/sec ; Max: 273.61 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 329.085us ; Min: 239.915us ; Max: 446.131us ; Number of samples: 6) - RpcRecvrTime: (Avg: -64361.000ns ; Min: -106329.000ns ; Max: -36831.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 76.78 KB (78624) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.302us - TotalBytesSent: 300.00 B (300) - UncompressedRowBatchSize: 468.00 B (468) HDFS_SCAN_NODE (id=4):(Total: 18.124ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s820ms - Closed: 2s820ms (2s820ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 626.046us ; Min: 626.046us ; Max: 626.046us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.965us - MaterializeTupleTime: 18.365us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 14.44 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 662.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.571ms - TotalRawHdfsOpenFileTime: 18.804us - TotalRawHdfsReadTime: 678.302us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.283us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.726us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F86:(Total: 2s454ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s256ms max:8s051ms mean: 7s203ms stddev:736.253ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s511ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 84 (84) - TotalThreadsTotalWallClockTime: 2s454ms - TotalThreadsSysTime: 2.497ms - TotalThreadsUserTime: 157.011ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 217.576ms - ExecTreeExecTime: 14.089ms - OpenTime: 2s236ms - ExecTreeOpenTime: 1s497ms - PrepareTime: 307.485us - ExecTreePrepareTime: 136.733us Hash Join Builder (join_node_id=5):(Total: 204.413ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 212.966us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 402.946us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 42.631us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.000us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 19.79K (19794) - Resizes: 0 (0) - Travel: 10.18K (10182) EXCHANGE_NODE (id=116):(Total: 1s511ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 27.199us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 62.00 /sec Buffer pool: - AllocTime: 4.690us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.388us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s497ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s511ms - DataWaitTime: 1s511ms Enqueue: - DeserializeRowBatchTime: 27.770us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F86: Instance 50467cb8e73eeac4:853461b4000000b8 (host=tarmstrong-Precision-7540:22000):(Total: 3s255ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.208 Fragment Instance Lifecycle Event Timeline: 3s630ms - Prepare Finished: 375.001ms (375.001ms) - Open Finished: 3s468ms (3s093ms) - First Batch Produced: 3s475ms (7.201ms) - First Batch Sent: 3s475ms (244.372us) - ExecInternal Finished: 3s630ms (154.378ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 2s369ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 158 (158) - TotalThreadsTotalWallClockTime: 3s255ms - TotalThreadsSysTime: 3.712ms - TotalThreadsUserTime: 155.791ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 161.687ms - ExecTreeExecTime: 7.196ms - OpenTime: 3s093ms - ExecTreeOpenTime: 2s362ms - PrepareTime: 292.667us - ExecTreePrepareTime: 129.393us Hash Join Builder (join_node_id=5):(Total: 155.449ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 239.280us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 422.577us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 71.793us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 57.136us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 18.75K (18747) - Resizes: 0 (0) - Travel: 9.44K (9435) EXCHANGE_NODE (id=116):(Total: 2s369ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s476ms - Open Started: 1s104ms (1s104ms) - Open Finished: 3s467ms (2s362ms) - First Batch Requested: 3s468ms (1.071ms) - First Batch Returned: 3s475ms (7.192ms) - Last Batch Returned: 3s475ms (1.162us) - Closed: 3s476ms (305.878us) - ConvertRowBatchTime: 21.657us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 13.00 /sec Buffer pool: - AllocTime: 3.995us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s362ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 2s369ms - DataWaitTime: 2s369ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -69741.000ns ; Min: -69741.000ns ; Max: -69741.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 26.752us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000b9 (host=tarmstrong-Precision-7540:22002):(Total: 2s857ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.126 Fragment Instance Lifecycle Event Timeline: 3s594ms - Prepare Finished: 736.261ms (736.261ms) - Open Finished: 3s490ms (2s754ms) - First Batch Produced: 3s518ms (27.922ms) - First Batch Sent: 3s518ms (221.739us) - ExecInternal Finished: 3s594ms (75.321ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s970ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 49 (49) - TotalThreadsTotalWallClockTime: 2s857ms - TotalThreadsSysTime: 3.779ms - TotalThreadsUserTime: 157.291ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 103.098ms - ExecTreeExecTime: 27.916ms - OpenTime: 2s754ms - ExecTreeOpenTime: 1s943ms - PrepareTime: 303.168us - ExecTreePrepareTime: 132.581us Hash Join Builder (join_node_id=5):(Total: 76.098ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 216.563us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 377.373us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 25.575us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 21.54K (21540) - Resizes: 0 (0) - Travel: 11.46K (11457) EXCHANGE_NODE (id=116):(Total: 1s971ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s518ms - Open Started: 1s546ms (1s546ms) - Open Finished: 3s489ms (1s943ms) - First Batch Requested: 3s490ms (1.044ms) - First Batch Returned: 3s518ms (27.910ms) - Last Batch Returned: 3s518ms (2.198us) - Closed: 3s518ms (297.980us) - ConvertRowBatchTime: 38.201us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 15.00 /sec Buffer pool: - AllocTime: 4.886us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.763us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s943ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s970ms - DataWaitTime: 1s970ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -552112.000ns ; Min: -552112.000ns ; Max: -552112.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 31.521us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000b7 (host=tarmstrong-Precision-7540:22001):(Total: 1s251ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.940 Fragment Instance Lifecycle Event Timeline: 3s868ms - Prepare Finished: 2s616ms (2s616ms) - Open Finished: 3s479ms (862.878ms) - First Batch Produced: 3s486ms (7.160ms) - First Batch Sent: 3s486ms (187.077us) - ExecInternal Finished: 3s868ms (381.213ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 192.698ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 45 (45) - TotalThreadsTotalWallClockTime: 1s250ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 157.953ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 387.943ms - ExecTreeExecTime: 7.156ms - OpenTime: 862.867ms - ExecTreeOpenTime: 185.581ms - PrepareTime: 326.621us - ExecTreePrepareTime: 148.226us Hash Join Builder (join_node_id=5):(Total: 381.692ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 183.056us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 408.888us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 30.526us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 17.866us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 19.10K (19096) - Resizes: 0 (0) - Travel: 9.66K (9656) EXCHANGE_NODE (id=116):(Total: 192.735ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s486ms - Open Started: 3s292ms (3s292ms) - Open Finished: 3s478ms (185.578ms) - First Batch Requested: 3s479ms (998.786us) - First Batch Returned: 3s486ms (7.152ms) - Last Batch Returned: 3s486ms (750.000ns) - Closed: 3s486ms (238.976us) - ConvertRowBatchTime: 21.740us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 160.00 /sec Buffer pool: - AllocTime: 5.189us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.402us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 185.568ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 192.695ms - DataWaitTime: 192.685ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -42168.000ns ; Min: -42168.000ns ; Max: -42168.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 25.039us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F01:(Total: 852.067ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s038ms max:8s038ms mean: 8s038ms stddev:0.000ns execution rates: min:274.42 KB/sec max:274.42 KB/sec mean:274.42 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 8.383ms - TotalStorageWaitTime: 2.626ms - TotalThreadsInvoluntaryContextSwitches: 150 (150) - TotalThreadsTotalWallClockTime: 851.597ms - TotalThreadsSysTime: 4.170ms - TotalThreadsUserTime: 212.555ms - TotalThreadsVoluntaryContextSwitches: 24 (24) Fragment Instance Lifecycle Timings: - ExecTime: 75.847ms - ExecTreeExecTime: 45.877ms - OpenTime: 775.763ms - ExecTreeOpenTime: 245.716us - PrepareTime: 357.240us - ExecTreePrepareTime: 153.660us KrpcDataStreamSender (dst_id=116):(Total: 29.908ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.983us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=3):(Total: 46.331ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 19.966us - MaterializeTupleTime: 20.658ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 240.88 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 669.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 2.626ms - TotalRawHdfsOpenFileTime: 26.641us - TotalRawHdfsReadTime: 1.769ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 10.037us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F01: Instance 50467cb8e73eeac4:853461b4000000b6 (host=tarmstrong-Precision-7540:22001):(Total: 852.067ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.927 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 3s487ms - Prepare Finished: 2s635ms (2s635ms) - Open Finished: 3s411ms (775.777ms) - First Batch Produced: 3s456ms (45.607ms) - First Batch Sent: 3s478ms (21.381ms) - ExecInternal Finished: 3s487ms (8.943ms) - MemoryUsage (500.000ms): 30.57 KB, 30.57 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 8.383ms - TotalStorageWaitTime: 2.626ms - TotalThreadsInvoluntaryContextSwitches: 150 (150) - TotalThreadsTotalWallClockTime: 851.597ms - TotalThreadsSysTime: 4.170ms - TotalThreadsUserTime: 212.555ms - TotalThreadsVoluntaryContextSwitches: 24 (24) Fragment Instance Lifecycle Timings: - ExecTime: 75.847ms - ExecTreeExecTime: 45.877ms - OpenTime: 775.763ms - ExecTreeOpenTime: 245.716us - PrepareTime: 357.240us - ExecTreePrepareTime: 153.660us KrpcDataStreamSender (dst_id=116):(Total: 29.908ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 590.73 KB/sec ; Min: 296.92 KB/sec ; Max: 815.91 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 983.661us ; Min: 521.846us ; Max: 1.472ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -232600.000ns ; Min: -596528.000ns ; Max: -77756.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.983us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=3):(Total: 46.331ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s478ms - Closed: 3s478ms (3s478ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 381.788us ; Min: 381.788us ; Max: 381.788us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 418.024us ; Min: 418.024us ; Max: 418.024us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 19.966us - MaterializeTupleTime: 20.658ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 240.88 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 669.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 2.626ms - TotalRawHdfsOpenFileTime: 26.641us - TotalRawHdfsReadTime: 1.769ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 10.037us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F87:(Total: 2s631ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s251ms max:8s038ms mean: 7s201ms stddev:733.658ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s492ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 63 (63) - TotalThreadsTotalWallClockTime: 2s630ms - TotalThreadsSysTime: 3.905ms - TotalThreadsUserTime: 153.826ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 393.947ms - ExecTreeExecTime: 2.820ms - OpenTime: 2s236ms - ExecTreeOpenTime: 1s489ms - PrepareTime: 300.457us - ExecTreePrepareTime: 136.775us Hash Join Builder (join_node_id=17):(Total: 402.113ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 264.303us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 482.034us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 70.204us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.061us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 10.60K (10595) - Resizes: 0 (0) - Travel: 5.40K (5396) EXCHANGE_NODE (id=124):(Total: 1s492ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 28.253us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 82.00 /sec Buffer pool: - AllocTime: 5.464us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s489ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s492ms - DataWaitTime: 1s492ms Enqueue: - DeserializeRowBatchTime: 27.297us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F87: Instance 50467cb8e73eeac4:853461b4000000bc (host=tarmstrong-Precision-7540:22000):(Total: 3s728ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.218 Fragment Instance Lifecycle Event Timeline: 4s025ms - Prepare Finished: 297.545ms (297.545ms) - Open Finished: 3s519ms (3s221ms) - First Batch Produced: 3s519ms (59.459us) - First Batch Sent: 3s519ms (278.405us) - ExecInternal Finished: 4s025ms (506.069ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 2s457ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 70 (70) - TotalThreadsTotalWallClockTime: 3s728ms - TotalThreadsSysTime: 3.388ms - TotalThreadsUserTime: 154.151ms - TotalThreadsVoluntaryContextSwitches: 30 (30) Fragment Instance Lifecycle Timings: - ExecTime: 506.292ms - ExecTreeExecTime: 52.468us - OpenTime: 3s221ms - ExecTreeOpenTime: 2s457ms - PrepareTime: 319.384us - ExecTreePrepareTime: 147.656us Hash Join Builder (join_node_id=17):(Total: 537.469ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 274.720us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 402.501us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 81.305us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 62.788us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 31.72K (31724) - Resizes: 0 (0) - Travel: 16.16K (16157) EXCHANGE_NODE (id=124):(Total: 2s457ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s519ms - Open Started: 1s030ms (1s030ms) - Open Finished: 3s488ms (2s457ms) - First Batch Requested: 3s519ms (31.374ms) - First Batch Returned: 3s519ms (48.867us) - Last Batch Returned: 3s519ms (516.000ns) - Closed: 3s519ms (366.744us) - ConvertRowBatchTime: 28.975us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 12.00 /sec Buffer pool: - AllocTime: 2.992us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s457ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 2s457ms - DataWaitTime: 2s457ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -228409.000ns ; Min: -228409.000ns ; Max: -228409.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.463us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000bd (host=tarmstrong-Precision-7540:22002):(Total: 2s836ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.122 Fragment Instance Lifecycle Event Timeline: 3s724ms - Prepare Finished: 888.773ms (888.773ms) - Open Finished: 3s533ms (2s644ms) - First Batch Produced: 3s536ms (3.704ms) - First Batch Sent: 3s537ms (291.053us) - ExecInternal Finished: 3s724ms (187.526ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s878ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 83 (83) - TotalThreadsTotalWallClockTime: 2s835ms - TotalThreadsSysTime: 3.975ms - TotalThreadsUserTime: 154.977ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 191.419ms - ExecTreeExecTime: 3.699ms - OpenTime: 2s644ms - ExecTreeOpenTime: 1s875ms - PrepareTime: 298.306us - ExecTreePrepareTime: 131.333us Hash Join Builder (join_node_id=17):(Total: 188.691ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 285.997us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 514.020us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 87.958us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 71.055us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 31 (31) - Resizes: 0 (0) - Travel: 16 (16) EXCHANGE_NODE (id=124):(Total: 1s878ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s537ms - Open Started: 1s657ms (1s657ms) - Open Finished: 3s532ms (1s875ms) - First Batch Requested: 3s533ms (1.086ms) - First Batch Returned: 3s536ms (3.695ms) - Last Batch Returned: 3s536ms (1.075us) - Closed: 3s537ms (356.226us) - ConvertRowBatchTime: 26.074us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 16.00 /sec Buffer pool: - AllocTime: 10.072us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s875ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s878ms - DataWaitTime: 1s878ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -186058.000ns ; Min: -186058.000ns ; Max: -186058.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 31.405us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000bb (host=tarmstrong-Precision-7540:22001):(Total: 1s328ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.927 Fragment Instance Lifecycle Event Timeline: 3s983ms - Prepare Finished: 2s654ms (2s654ms) - Open Finished: 3s498ms (844.312ms) - First Batch Produced: 3s503ms (4.713ms) - First Batch Sent: 3s503ms (236.882us) - ExecInternal Finished: 3s983ms (479.312ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 141.177ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 38 (38) - TotalThreadsTotalWallClockTime: 1s328ms - TotalThreadsSysTime: 4.352ms - TotalThreadsUserTime: 152.350ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 484.130ms - ExecTreeExecTime: 4.708ms - OpenTime: 844.298ms - ExecTreeOpenTime: 136.521ms - PrepareTime: 283.682us - ExecTreePrepareTime: 131.336us Hash Join Builder (join_node_id=17):(Total: 480.178ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 232.194us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 529.582us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 41.350us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.340us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 31 (31) - Resizes: 0 (0) - Travel: 16 (16) EXCHANGE_NODE (id=124):(Total: 141.227ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s503ms - Open Started: 3s361ms (3s361ms) - Open Finished: 3s497ms (136.517ms) - First Batch Requested: 3s498ms (866.673us) - First Batch Returned: 3s503ms (4.703ms) - Last Batch Returned: 3s503ms (1.468us) - Closed: 3s503ms (299.287us) - ConvertRowBatchTime: 29.710us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 219.00 /sec Buffer pool: - AllocTime: 3.329us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 136.507ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 141.174ms - DataWaitTime: 141.161ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -165536.000ns ; Min: -165536.000ns ; Max: -165536.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.025us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F09:(Total: 825.919ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s038ms max:8s038ms mean: 8s038ms stddev:0.000ns execution rates: min:274.44 KB/sec max:274.44 KB/sec mean:274.44 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.158ms - TotalStorageWaitTime: 6.371ms - TotalThreadsInvoluntaryContextSwitches: 50 (50) - TotalThreadsTotalWallClockTime: 825.512ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 209.243ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 78.081ms - ExecTreeExecTime: 71.801ms - OpenTime: 747.440ms - ExecTreeOpenTime: 284.481us - PrepareTime: 342.381us - ExecTreePrepareTime: 151.482us KrpcDataStreamSender (dst_id=124):(Total: 1.415ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.033us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=16):(Total: 72.285ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 19.841us - MaterializeTupleTime: 55.015ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 118.79 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 428.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 6.371ms - TotalRawHdfsOpenFileTime: 35.299us - TotalRawHdfsReadTime: 3.588ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 28.040us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.132us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F09: Instance 50467cb8e73eeac4:853461b4000000ba (host=tarmstrong-Precision-7540:22001):(Total: 825.919ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.927 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 3s504ms - Prepare Finished: 2s678ms (2s678ms) - Open Finished: 3s425ms (747.448ms) - First Batch Produced: 3s497ms (71.561ms) - First Batch Sent: 3s497ms (97.343us) - ExecInternal Finished: 3s504ms (6.543ms) - MemoryUsage (500.000ms): 30.57 KB, 30.57 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.158ms - TotalStorageWaitTime: 6.371ms - TotalThreadsInvoluntaryContextSwitches: 50 (50) - TotalThreadsTotalWallClockTime: 825.512ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 209.243ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 78.081ms - ExecTreeExecTime: 71.801ms - OpenTime: 747.440ms - ExecTreeOpenTime: 284.481us - PrepareTime: 342.381us - ExecTreePrepareTime: 151.482us KrpcDataStreamSender (dst_id=124):(Total: 1.415ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 468.74 KB/sec ; Min: 462.46 KB/sec ; Max: 472.62 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 895.686us ; Min: 843.718us ; Max: 920.687us ; Number of samples: 6) - RpcRecvrTime: (Avg: -209002.000ns ; Min: -261283.000ns ; Max: -180479.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.033us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=16):(Total: 72.285ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s502ms - Closed: 3s502ms (3s502ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 1.018ms ; Min: 1.018ms ; Max: 1.018ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 760.993us ; Min: 760.993us ; Max: 760.993us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 19.841us - MaterializeTupleTime: 55.015ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 118.79 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 428.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 6.371ms - TotalRawHdfsOpenFileTime: 35.299us - TotalRawHdfsReadTime: 3.588ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 28.040us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.132us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F88:(Total: 2s416ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s303ms max:8s038ms mean: 7s671ms stddev:367.710ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 894.612ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 67 (67) - TotalThreadsTotalWallClockTime: 2s406ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 157.737ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 761.979ms - ExecTreeExecTime: 2.911ms - OpenTime: 1s644ms - ExecTreeOpenTime: 891.763ms - PrepareTime: 9.675ms - ExecTreePrepareTime: 9.456ms Hash Join Builder (join_node_id=28):(Total: 761.276ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 248.257us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 473.673us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 72.619us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 57.522us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 7.86K (7856) - Resizes: 0 (0) - Travel: 4.46K (4463) EXCHANGE_NODE (id=132):(Total: 894.671ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 41.623us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 438.02 K/sec Buffer pool: - AllocTime: 5.078us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.207us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 891.748ms - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 894.610ms - DataWaitTime: 894.599ms Enqueue: - DeserializeRowBatchTime: 27.023us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F88: Instance 50467cb8e73eeac4:853461b4000000c0 (host=tarmstrong-Precision-7540:22000):(Total: 3s377ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.208 Fragment Instance Lifecycle Event Timeline: 3s670ms - Prepare Finished: 293.659ms (293.659ms) - Open Finished: 2s872ms (2s578ms) - First Batch Produced: 2s877ms (5.770ms) - First Batch Sent: 2s878ms (292.437us) - ExecInternal Finished: 3s670ms (792.440ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 1s789ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 3s376ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 155.068ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 798.380ms - ExecTreeExecTime: 5.765ms - OpenTime: 2s578ms - ExecTreeOpenTime: 1s783ms - PrepareTime: 381.125us - ExecTreePrepareTime: 174.302us Hash Join Builder (join_node_id=28):(Total: 793.466ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 288.147us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 523.395us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 89.922us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 72.507us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.47K (1474) - Resizes: 0 (0) - Travel: 810 (810) EXCHANGE_NODE (id=132):(Total: 1s789ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s878ms - Open Started: 1s087ms (1s087ms) - Open Finished: 2s871ms (1s783ms) - First Batch Requested: 2s872ms (964.445us) - First Batch Returned: 2s877ms (5.761ms) - Last Batch Returned: 2s877ms (860.000ns) - Closed: 2s878ms (360.546us) - ConvertRowBatchTime: 43.013us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 33.00 /sec Buffer pool: - AllocTime: 3.573us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s783ms - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 1s789ms - DataWaitTime: 1s789ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -67984.000ns ; Min: -67984.000ns ; Max: -67984.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.272us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000bf (host=tarmstrong-Precision-7540:22001):(Total: 1s456ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.927 Fragment Instance Lifecycle Event Timeline: 4s152ms - Prepare Finished: 2s715ms (2s715ms) - Open Finished: 3s427ms (711.482ms) - First Batch Produced: 3s427ms (61.217us) - First Batch Sent: 3s427ms (211.233us) - ExecInternal Finished: 4s152ms (725.408ms) - MemoryUsage (500.000ms): 0, 33.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 12.303us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 90 (90) - TotalThreadsTotalWallClockTime: 1s437ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 160.407ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 725.578ms - ExecTreeExecTime: 57.761us - OpenTime: 711.458ms - ExecTreeOpenTime: 14.209us - PrepareTime: 18.969ms - ExecTreePrepareTime: 18.739ms Hash Join Builder (join_node_id=28):(Total: 729.085ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 208.368us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 423.951us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 55.316us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.538us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 14.24K (14239) - Resizes: 0 (0) - Travel: 8.12K (8116) EXCHANGE_NODE (id=132):(Total: 68.493us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s427ms - Open Started: 3s423ms (3s423ms) - Open Finished: 3s423ms (10.304us) - First Batch Requested: 3s427ms (3.674ms) - First Batch Returned: 3s427ms (54.617us) - Last Batch Returned: 3s427ms (543.000ns) - Closed: 3s427ms (259.777us) - ConvertRowBatchTime: 40.233us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 876.00 K/sec Buffer pool: - AllocTime: 6.583us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.415us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 9.704us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 484.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -69662.000ns ; Min: -69662.000ns ; Max: -69662.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 30.775us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F16:(Total: 170.445ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.56 KB, max: 5.56 KB, avg: 5.56 KB, stddev: 0 completion times: min:8s038ms max:8s038ms mean: 8s038ms stddev:0.000ns execution rates: min:708.00 B/sec max:708.00 B/sec mean:708.00 B/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.16 - PeakMemoryUsage: 80.42 KB (82352) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.881us - TotalStorageWaitTime: 7.844us - TotalThreadsInvoluntaryContextSwitches: 22 (22) - TotalThreadsTotalWallClockTime: 169.984ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 37.928ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 9.346ms - ExecTreeExecTime: 2.429ms - OpenTime: 160.648ms - ExecTreeOpenTime: 5.436ms - PrepareTime: 375.248us - ExecTreePrepareTime: 139.995us KrpcDataStreamSender (dst_id=132):(Total: 6.932ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 2 (2) - PeakMemoryUsage: 51.19 KB (52416) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 32.448us - TotalBytesSent: 968.00 B (968) - UncompressedRowBatchSize: 1.52 KB (1560) HDFS_SCAN_NODE (id=26):(Total: 8.031ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 12.934us - MaterializeTupleTime: 23.987us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 9.72 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 7.47 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 7.844us - TotalRawHdfsOpenFileTime: 14.407us - TotalRawHdfsReadTime: 591.516us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.411us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F16: Instance 50467cb8e73eeac4:853461b4000000be (host=tarmstrong-Precision-7540:22001):(Total: 170.445ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.927 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB Fragment Instance Lifecycle Event Timeline: 2s888ms - Prepare Finished: 2s718ms (2s718ms) - Open Finished: 2s879ms (160.663ms) - First Batch Produced: 2s881ms (2.279ms) - First Batch Sent: 2s888ms (6.495ms) - ExecInternal Finished: 2s888ms (671.667us) - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.16 - PeakMemoryUsage: 80.42 KB (82352) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.881us - TotalStorageWaitTime: 7.844us - TotalThreadsInvoluntaryContextSwitches: 22 (22) - TotalThreadsTotalWallClockTime: 169.984ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 37.928ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 9.346ms - ExecTreeExecTime: 2.429ms - OpenTime: 160.648ms - ExecTreeOpenTime: 5.436ms - PrepareTime: 375.248us - ExecTreePrepareTime: 139.995us KrpcDataStreamSender (dst_id=132):(Total: 6.932ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - NetworkThroughput: (Avg: 1.09 MB/sec ; Min: 1.08 MB/sec ; Max: 1.11 MB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 405.520us ; Min: 368.236us ; Max: 427.202us ; Number of samples: 4) - RpcRecvrTime: (Avg: -78473.000ns ; Min: -109254.000ns ; Max: -42277.000ns ; Number of samples: 4) - EosSent: 2 (2) - PeakMemoryUsage: 51.19 KB (52416) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 32.448us - TotalBytesSent: 968.00 B (968) - UncompressedRowBatchSize: 1.52 KB (1560) HDFS_SCAN_NODE (id=26):(Total: 8.031ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_page Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s888ms - Closed: 2s888ms (2s888ms) - FooterProcessingTime: (Avg: 149.897us ; Min: 149.897us ; Max: 149.897us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 12.934us - MaterializeTupleTime: 23.987us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 9.72 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 7.47 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 7.844us - TotalRawHdfsOpenFileTime: 14.407us - TotalRawHdfsReadTime: 591.516us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.411us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F89:(Total: 2s397ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s303ms max:8s055ms mean: 7s679ms stddev:375.960ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s408ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 46 (46) - TotalThreadsTotalWallClockTime: 2s394ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 158.154ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 327.640ms - ExecTreeExecTime: 2.104ms - OpenTime: 2s067ms - ExecTreeOpenTime: 1s406ms - PrepareTime: 2.508ms - ExecTreePrepareTime: 144.466us Hash Join Builder (join_node_id=27):(Total: 326.498ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 217.101us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 453.407us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 51.094us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 34.694us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 7.83K (7827) - Resizes: 0 (0) - Travel: 4.20K (4202) EXCHANGE_NODE (id=131):(Total: 1s408ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 23.358us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 80.00 /sec Buffer pool: - AllocTime: 5.841us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.880us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s406ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s408ms - DataWaitTime: 1s408ms Enqueue: - DeserializeRowBatchTime: 29.770us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F89: Instance 50467cb8e73eeac4:853461b4000000c3 (host=tarmstrong-Precision-7540:22000):(Total: 3s388ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.208 Fragment Instance Lifecycle Event Timeline: 3s679ms - Prepare Finished: 295.372ms (295.372ms) - Open Finished: 3s582ms (3s286ms) - First Batch Produced: 3s584ms (2.069ms) - First Batch Sent: 3s584ms (220.151us) - ExecInternal Finished: 3s679ms (95.036ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 2s611ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 35 (35) - TotalThreadsTotalWallClockTime: 3s384ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 156.846ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 97.200ms - ExecTreeExecTime: 2.064ms - OpenTime: 3s286ms - ExecTreeOpenTime: 2s609ms - PrepareTime: 4.711ms - ExecTreePrepareTime: 148.290us Hash Join Builder (join_node_id=27):(Total: 96.076ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 215.992us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 478.114us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 69.362us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 56.951us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.45K (1445) - Resizes: 0 (0) - Travel: 836 (836) EXCHANGE_NODE (id=131):(Total: 2s611ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s584ms - Open Started: 971.786ms (971.786ms) - Open Finished: 3s581ms (2s609ms) - First Batch Requested: 3s582ms (1.034ms) - First Batch Returned: 3s584ms (2.059ms) - Last Batch Returned: 3s584ms (905.000ns) - Closed: 3s584ms (269.972us) - ConvertRowBatchTime: 23.232us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 11.00 /sec Buffer pool: - AllocTime: 5.400us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.535us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s609ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 2s611ms - DataWaitTime: 2s611ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -152572.000ns ; Min: -152572.000ns ; Max: -152572.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.087us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000c2 (host=tarmstrong-Precision-7540:22001):(Total: 1s405ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.944 Fragment Instance Lifecycle Event Timeline: 4s152ms - Prepare Finished: 2s747ms (2s747ms) - Open Finished: 3s594ms (847.338ms) - First Batch Produced: 3s596ms (2.148ms) - First Batch Sent: 3s597ms (223.356us) - ExecInternal Finished: 4s152ms (555.805ms) - MemoryUsage (500.000ms): 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 205.267ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 57 (57) - TotalThreadsTotalWallClockTime: 1s405ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.463ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 558.080ms - ExecTreeExecTime: 2.143ms - OpenTime: 847.324ms - ExecTreeOpenTime: 203.183ms - PrepareTime: 305.448us - ExecTreePrepareTime: 140.642us Hash Join Builder (join_node_id=27):(Total: 556.921ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 218.211us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 428.701us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 32.826us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.438us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 14.21K (14210) - Resizes: 0 (0) - Travel: 7.57K (7568) EXCHANGE_NODE (id=131):(Total: 205.324ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s597ms - Open Started: 3s390ms (3s390ms) - Open Finished: 3s593ms (203.179ms) - First Batch Requested: 3s594ms (1.123ms) - First Batch Returned: 3s596ms (2.125ms) - Last Batch Returned: 3s596ms (902.000ns) - Closed: 3s597ms (302.162us) - ConvertRowBatchTime: 23.485us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 150.00 /sec Buffer pool: - AllocTime: 6.282us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.225us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 203.168ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 205.265ms - DataWaitTime: 205.254ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -77441.000ns ; Min: -77441.000ns ; Max: -77441.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 32.454us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F15:(Total: 815.042ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s038ms max:8s038ms mean: 8s038ms stddev:0.000ns execution rates: min:274.45 KB/sec max:274.45 KB/sec mean:274.45 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.33 MB (2444464) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.077us - TotalStorageWaitTime: 9.765us - TotalThreadsInvoluntaryContextSwitches: 92 (92) - TotalThreadsTotalWallClockTime: 814.625ms - TotalThreadsSysTime: 4.459ms - TotalThreadsUserTime: 209.424ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 46.578ms - ExecTreeExecTime: 40.784ms - OpenTime: 768.068ms - ExecTreeOpenTime: 2.091ms - PrepareTime: 327.913us - ExecTreePrepareTime: 139.125us KrpcDataStreamSender (dst_id=131):(Total: 5.312ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 2 (2) - PeakMemoryUsage: 15.05 KB (15408) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.873us - TotalBytesSent: 872.00 B (872) - UncompressedRowBatchSize: 2.12 KB (2170) HDFS_SCAN_NODE (id=25):(Total: 43.050ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 43.675us - MaterializeTupleTime: 13.661ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 166.25 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 720.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 9.765us - TotalRawHdfsOpenFileTime: 40.490us - TotalRawHdfsReadTime: 2.563ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.647us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.516us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F15: Instance 50467cb8e73eeac4:853461b4000000c1 (host=tarmstrong-Precision-7540:22001):(Total: 815.042ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.927 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 3s597ms - Prepare Finished: 2s783ms (2s783ms) - Open Finished: 3s551ms (768.094ms) - First Batch Produced: 3s591ms (40.507ms) - First Batch Sent: 3s594ms (2.353ms) - ExecInternal Finished: 3s597ms (3.795ms) - MemoryUsage (500.000ms): 23.05 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.33 MB (2444464) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.077us - TotalStorageWaitTime: 9.765us - TotalThreadsInvoluntaryContextSwitches: 92 (92) - TotalThreadsTotalWallClockTime: 814.625ms - TotalThreadsSysTime: 4.459ms - TotalThreadsUserTime: 209.424ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 46.578ms - ExecTreeExecTime: 40.784ms - OpenTime: 768.068ms - ExecTreeOpenTime: 2.091ms - PrepareTime: 327.913us - ExecTreePrepareTime: 139.125us KrpcDataStreamSender (dst_id=131):(Total: 5.312ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 584.35 KB/sec ; Min: 248.58 KB/sec ; Max: 920.12 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 1.331ms ; Min: 462.744us ; Max: 1.792ms ; Number of samples: 4) - RpcRecvrTime: (Avg: -108714.000ns ; Min: -191932.000ns ; Max: -46945.000ns ; Number of samples: 4) - EosSent: 2 (2) - PeakMemoryUsage: 15.05 KB (15408) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 22.873us - TotalBytesSent: 872.00 B (872) - UncompressedRowBatchSize: 2.12 KB (2170) HDFS_SCAN_NODE (id=25):(Total: 43.050ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s594ms - Closed: 3s594ms (3s594ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 475.051us ; Min: 475.051us ; Max: 475.051us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 1.152ms ; Min: 1.152ms ; Max: 1.152ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 43.675us - MaterializeTupleTime: 13.661ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 166.25 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 720.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 9.765us - TotalRawHdfsOpenFileTime: 40.490us - TotalRawHdfsReadTime: 2.563ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.647us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.516us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F90:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:419.453ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4095914) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 39 (39) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 334.416us - TotalThreadsUserTime: 61.980ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 4.204ms - ExecTreeExecTime: 35.194us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 1.276ms - ExecTreePrepareTime: 274.446us Hash Join Builder (join_node_id=51):(Total: 4.540ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 168.457us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 18.496us - LargestPartitionPercent: 37 (37) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2044373) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 1.828us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 58.67 KB (60074) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 58.67 KB (60074) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 13.674us - GetResultsTime: 12.990us - HTResizeTime: 1.298us - LargestPartitionPercent: 37 (37) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046762) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.251us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 288.00 KB (294912) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.580us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 512 (512) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 2.989us - PeakMemoryUsage: 6.67 KB (6826) - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 1.483us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.67 KB (6826) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 6.67 KB (6826) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.67 KB (6826) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 136.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1m - TotalBytesDequeued: 22.00 B (22) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - DeserializeRowBatchTime: 7.800us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 12.00 B (12) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F90: Instance 50467cb8e73eeac4:853461b4000000c9 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.033 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 231.956ms (231.956ms) - Open Finished: 1m2s (1m2s) - First Batch Produced: 1m2s (6.468us) - First Batch Sent: 1m2s (2.571us) - ExecInternal Finished: 1m3s (13.220ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 151 (151) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 233.049ms - TotalThreadsVoluntaryContextSwitches: 23 (23) Fragment Instance Lifecycle Timings: - ExecTime: 13.107ms - ExecTreeExecTime: 4.179us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 457.872us - ExecTreePrepareTime: 276.288us Hash Join Builder (join_node_id=51):(Total: 13.456ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.259us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (427.650us) - First Batch Returned: 1m2s (2.684us) - Last Batch Returned: 1m2s (233.000ns) - Closed: 1m2s (50.520us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.509us - GetResultsTime: 0.000ns - HTResizeTime: 1.157us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.360us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (1.164ms) - First Batch Returned: 1m2s (6.128us) - Last Batch Returned: 1m2s (384.000ns) - Closed: 1m2s (35.780us) - ConvertRowBatchTime: 2.678us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 0 - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000ca (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 246.847ms (246.847ms) - Open Finished: 1m2s (1m2s) - First Batch Produced: 1m2s (38.132us) - First Batch Sent: 1m2s (16.842us) - ExecInternal Finished: 1m3s (4.326ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.659ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 4.282ms - ExecTreeExecTime: 119.872us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 453.568us - ExecTreePrepareTime: 281.833us Hash Join Builder (join_node_id=51):(Total: 4.559ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 28.974us - BuildRowsPartitioned: 2 (2) - HashTablesBuildTime: 57.955us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.932us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2 (2) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (497.843us) - First Batch Returned: 1m2s (34.320us) - Last Batch Returned: 1m2s (121.813us) - Closed: 1m2s (63.049us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 34.189us - GetResultsTime: 53.999us - HTResizeTime: 1.171us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.561us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.920us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (1.293ms) - First Batch Returned: 1m2s (15.864us) - Last Batch Returned: 1m2s (465.000ns) - Closed: 1m2s (74.207us) - ConvertRowBatchTime: 4.090us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.592us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -76967.000ns ; Min: -76967.000ns ; Max: -76967.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.505us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 48.00 B (48) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000cb (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 275.939ms (275.939ms) - Open Finished: 1m2s (1m2s) - First Batch Produced: 1m2s (8.841us) - First Batch Sent: 1m2s (3.522us) - ExecInternal Finished: 1m3s (1.481ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.998ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 1.412ms - ExecTreeExecTime: 5.449us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 546.591us - ExecTreePrepareTime: 324.694us Hash Join Builder (join_node_id=51):(Total: 1.785ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.908us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (474.501us) - First Batch Returned: 1m2s (3.543us) - Last Batch Returned: 1m2s (282.000ns) - Closed: 1m2s (66.093us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.701us - GetResultsTime: 0.000ns - HTResizeTime: 1.916us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.434us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (1.116ms) - First Batch Returned: 1m2s (5.718us) - Last Batch Returned: 1m2s (2.952us) - Closed: 1m2s (57.764us) - ConvertRowBatchTime: 2.211us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 0 - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000cc (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 286.451ms (286.451ms) - Open Finished: 1m2s (1m2s) - First Batch Produced: 1m2s (32.206us) - First Batch Sent: 1m2s (13.106us) - ExecInternal Finished: 1m2s (1.415ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m1s - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 2.941ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 1.380ms - ExecTreeExecTime: 62.455us - OpenTime: 1m2s - ExecTreeOpenTime: 1m1s - PrepareTime: 381.058us - ExecTreePrepareTime: 238.869us Hash Join Builder (join_node_id=51):(Total: 1.571ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 12.599us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 38.351us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 3.158us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (329.941us) - First Batch Returned: 1m2s (28.114us) - Last Batch Returned: 1m2s (47.956us) - Closed: 1m2s (48.162us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 19.469us - GetResultsTime: 23.046us - HTResizeTime: 1.221us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.690us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m2s - Open Started: 1s394ms (1s394ms) - Open Finished: 1m2s (1m1s) - First Batch Requested: 1m2s (1.058ms) - First Batch Returned: 1m2s (12.932us) - Last Batch Returned: 1m2s (294.000ns) - Closed: 1m2s (64.568us) - ConvertRowBatchTime: 3.208us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.139us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m1s - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1m1s - DataWaitTime: 1m1s Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -42892.000ns ; Min: -42892.000ns ; Max: -42892.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.723us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000c5 (host=tarmstrong-Precision-7540:22002):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.107 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s114ms (1s114ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (39.726us) - First Batch Sent: 1m3s (17.264us) - ExecInternal Finished: 1m3s (1.840ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 64 (64) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 235.973ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 1.823ms - ExecTreeExecTime: 66.281us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 370.811us - ExecTreePrepareTime: 219.426us Hash Join Builder (join_node_id=51):(Total: 2.146ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 16.257us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 45.353us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.546us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (484.598us) - First Batch Returned: 1m3s (35.364us) - Last Batch Returned: 1m3s (49.722us) - Closed: 1m3s (62.162us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 20.352us - GetResultsTime: 25.961us - HTResizeTime: 1.261us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.252us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.207ms) - First Batch Returned: 1m3s (15.586us) - Last Batch Returned: 1m3s (365.000ns) - Closed: 1m3s (59.187us) - ConvertRowBatchTime: 3.682us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.939us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -73780.000ns ; Min: -73780.000ns ; Max: -73780.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.226us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000c6 (host=tarmstrong-Precision-7540:22002):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.107 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s126ms (1s126ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (9.471us) - First Batch Sent: 1m3s (3.303us) - ExecInternal Finished: 1m3s (1.235ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.377ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 1.175ms - ExecTreeExecTime: 5.981us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 411.255us - ExecTreePrepareTime: 254.157us Hash Join Builder (join_node_id=51):(Total: 1.532ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.714us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (459.297us) - First Batch Returned: 1m3s (3.862us) - Last Batch Returned: 1m3s (305.000ns) - Closed: 1m3s (66.253us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.607us - GetResultsTime: 0.000ns - HTResizeTime: 1.132us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.301us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (996.883us) - First Batch Returned: 1m3s (6.901us) - Last Batch Returned: 1m3s (385.000ns) - Closed: 1m3s (49.547us) - ConvertRowBatchTime: 2.834us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 0 - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000c7 (host=tarmstrong-Precision-7540:22002):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.114 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s140ms (1s140ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (39.163us) - First Batch Sent: 1m3s (16.508us) - ExecInternal Finished: 1m3s (1.574ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.563ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 1.557ms - ExecTreeExecTime: 66.911us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 463.284us - ExecTreePrepareTime: 291.334us Hash Join Builder (join_node_id=51):(Total: 1.868ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 15.578us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 35.824us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.096us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (483.100us) - First Batch Returned: 1m3s (34.662us) - Last Batch Returned: 1m3s (50.332us) - Closed: 1m3s (69.262us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 23.719us - GetResultsTime: 26.123us - HTResizeTime: 1.107us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.219us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.255us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.161ms) - First Batch Returned: 1m3s (15.376us) - Last Batch Returned: 1m3s (408.000ns) - Closed: 1m3s (72.062us) - ConvertRowBatchTime: 3.610us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.618us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.635us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -31271.000ns ; Min: -31271.000ns ; Max: -31271.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.625us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000c8 (host=tarmstrong-Precision-7540:22002):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.107 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s161ms (1s161ms) - Open Finished: 1m3s (1m1s) - First Batch Produced: 1m3s (10.223us) - First Batch Sent: 1m3s (1.925ms) - ExecInternal Finished: 1m3s (6.630ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1m - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.439ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 8.468ms - ExecTreeExecTime: 5.759us - OpenTime: 1m1s - ExecTreeOpenTime: 1m - PrepareTime: 451.683us - ExecTreePrepareTime: 275.718us Hash Join Builder (join_node_id=51):(Total: 8.860ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.922ms - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (495.113us) - First Batch Returned: 1m3s (3.689us) - Last Batch Returned: 1m3s (333.000ns) - Closed: 1m3s (1.987ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.067us - GetResultsTime: 0.000ns - HTResizeTime: 1.357us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.445us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.795us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 2s149ms (2s149ms) - Open Finished: 1m3s (1m) - First Batch Requested: 1m3s (1.140ms) - First Batch Returned: 1m3s (6.212us) - Last Batch Returned: 1m3s (379.000ns) - Closed: 1m3s (40.691us) - ConvertRowBatchTime: 2.742us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1m - TotalBytesDequeued: 0 - TotalGetBatchTime: 1m - DataWaitTime: 1m Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000cd (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s807ms (2s807ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (8.703us) - First Batch Sent: 1m3s (3.444us) - ExecInternal Finished: 1m3s (5.819ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 59s262ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 251 (251) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 4.013ms - TotalThreadsUserTime: 244.664ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 5.692ms - ExecTreeExecTime: 6.004us - OpenTime: 1m - ExecTreeOpenTime: 59s264ms - PrepareTime: 492.891us - ExecTreePrepareTime: 302.087us Hash Join Builder (join_node_id=51):(Total: 6.083ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.548us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 59s264ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s264ms) - First Batch Requested: 1m3s (494.469us) - First Batch Returned: 1m3s (3.971us) - Last Batch Returned: 1m3s (281.000ns) - Closed: 1m3s (66.319us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.366us - GetResultsTime: 0.000ns - HTResizeTime: 1.204us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.448us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 59s262ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s262ms) - First Batch Requested: 1m3s (1.224ms) - First Batch Returned: 1m3s (6.855us) - Last Batch Returned: 1m3s (298.000ns) - Closed: 1m3s (40.624us) - ConvertRowBatchTime: 2.511us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s262ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 59s262ms - DataWaitTime: 59s262ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000ce (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.120 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s830ms (2s830ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (10.441us) - First Batch Sent: 1m3s (3.626us) - ExecInternal Finished: 1m3s (8.717ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 59s265ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.498ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 8.639ms - ExecTreeExecTime: 6.647us - OpenTime: 1m - ExecTreeOpenTime: 59s267ms - PrepareTime: 535.348us - ExecTreePrepareTime: 315.964us Hash Join Builder (join_node_id=51):(Total: 9.028ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.730us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 59s267ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s267ms) - First Batch Requested: 1m3s (499.114us) - First Batch Returned: 1m3s (3.705us) - Last Batch Returned: 1m3s (353.000ns) - Closed: 1m3s (72.958us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.674us - GetResultsTime: 0.000ns - HTResizeTime: 1.139us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.896us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 59s265ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s265ms) - First Batch Requested: 1m3s (1.108ms) - First Batch Returned: 1m3s (8.018us) - Last Batch Returned: 1m3s (419.000ns) - Closed: 1m3s (39.238us) - ConvertRowBatchTime: 2.045us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s265ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 59s265ms - DataWaitTime: 59s265ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000cf (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.117 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s831ms (2s831ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (9.421us) - First Batch Sent: 1m3s (2.975us) - ExecInternal Finished: 1m3s (1.477ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 59s262ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.457ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 1.415ms - ExecTreeExecTime: 5.790us - OpenTime: 1m - ExecTreeOpenTime: 59s264ms - PrepareTime: 415.108us - ExecTreePrepareTime: 249.939us Hash Join Builder (join_node_id=51):(Total: 1.786ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.398us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 59s264ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s264ms) - First Batch Requested: 1m3s (468.507us) - First Batch Returned: 1m3s (3.606us) - Last Batch Returned: 1m3s (345.000ns) - Closed: 1m3s (63.842us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.794us - GetResultsTime: 0.000ns - HTResizeTime: 1.222us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.241us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 59s262ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s262ms) - First Batch Requested: 1m3s (1.167ms) - First Batch Returned: 1m3s (6.149us) - Last Batch Returned: 1m3s (354.000ns) - Closed: 1m3s (38.761us) - ConvertRowBatchTime: 2.642us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s262ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 59s262ms - DataWaitTime: 59s262ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000d0 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s867ms (2s867ms) - Open Finished: 1m3s (1m) - First Batch Produced: 1m3s (39.115us) - First Batch Sent: 1m3s (16.730us) - ExecInternal Finished: 1m3s (1.525ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 59s262ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.147ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 1.501ms - ExecTreeExecTime: 67.006us - OpenTime: 1m - ExecTreeOpenTime: 59s264ms - PrepareTime: 10.333ms - ExecTreePrepareTime: 263.043us Hash Join Builder (join_node_id=51):(Total: 1.810ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 15.846us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 44.474us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.213us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=148):(Total: 59s264ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s264ms) - First Batch Requested: 1m3s (476.216us) - First Batch Returned: 1m3s (34.921us) - Last Batch Returned: 1m3s (50.351us) - Closed: 1m3s (66.763us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 30.650us - GetResultsTime: 26.757us - HTResizeTime: 1.699us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.170us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=147):(Total: 59s262ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 3s743ms (3s743ms) - Open Finished: 1m3s (59s262ms) - First Batch Requested: 1m3s (1.219ms) - First Batch Returned: 1m3s (15.713us) - Last Batch Returned: 1m3s (402.000ns) - Closed: 1m3s (76.365us) - ConvertRowBatchTime: 3.618us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.515us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 59s262ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 59s262ms - DataWaitTime: 59s262ms Enqueue: - BytesReceived (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -77012.000ns ; Min: -77012.000ns ; Max: -77012.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.523us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F28:(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 15.43 MB, max: 15.43 MB, avg: 15.43 MB, stddev: 0 completion times: min:1m3s max:1m3s mean: 1m3s stddev:0.000ns execution rates: min:249.83 KB/sec max:249.83 KB/sec mean:249.83 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.62 MB (11135834) - PeakReservation: 6.62 MB (6946816) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.980ms - TotalStorageWaitTime: 1.107ms - TotalThreadsInvoluntaryContextSwitches: 256 (256) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 608.071ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 89.468ms - ExecTreeExecTime: 83.210ms - OpenTime: 1m - ExecTreeOpenTime: 58s858ms - PrepareTime: 1.890ms - ExecTreePrepareTime: 1.497ms KrpcDataStreamSender (dst_id=147):(Total: 6.362ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.741us - TotalBytesSent: 152.00 B (152) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=50):(Total: 58s942ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 3.66 MB (3841152) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 128.487us - HTResizeTime: 192.363us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 538.662us Buffer pool: - AllocTime: 18.994us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 2.92K (2917) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=49):(Total: 58s941ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 1.66 MB (1739904) - ProbeRows: 2.96K (2962) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 222.275us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 49.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=48):(Total: 58s938ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 286.93K (286929) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 11.169ms - RowsReturned: 2.96K (2962) - RowsReturnedRate: 50.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=45):(Total: 58s924ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 2.85 MB (2992390) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.85 MB (2992390) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.85 MB (2992390) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 680.086us - MaterializeTupleTime: 106.802ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 40 (40) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 5.24 MB (5497722) - PerReadThreadRawHdfsThroughput: 1.45 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 287.51K (287514) - RowsReturned: 286.93K (286929) - RowsReturnedRate: 4.87 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.107ms - TotalRawHdfsOpenFileTime: 23.315us - TotalRawHdfsReadTime: 1.916ms - TotalReadThroughput: 48.70 KB/sec Buffer pool: - AllocTime: 29.504us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.75 MB (4980736) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 4.62 MB (4849664) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.62 MB (4849664) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.137us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 24 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 16.97K (16969) - Rows rejected: 585 (585) - Rows total: 287.51K (287514) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 26 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 286.93K (286929) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F28: Instance 50467cb8e73eeac4:853461b4000000c4 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.119 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/15.43 MB Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s870ms (2s870ms) - Open Finished: 1m2s (1m) - First Batch Produced: 1m3s (83.001ms) - First Batch Sent: 1m3s (3.156us) - ExecInternal Finished: 1m3s (6.538ms) - MemoryUsage (1s000ms): 120.81 KB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 4.12 MB, 6.85 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 10.62 MB (11135834) - PeakReservation: 6.62 MB (6946816) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.980ms - TotalStorageWaitTime: 1.107ms - TotalThreadsInvoluntaryContextSwitches: 256 (256) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 608.071ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 89.468ms - ExecTreeExecTime: 83.210ms - OpenTime: 1m - ExecTreeOpenTime: 58s858ms - PrepareTime: 1.890ms - ExecTreePrepareTime: 1.497ms KrpcDataStreamSender (dst_id=147):(Total: 6.362ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 79.34 KB/sec ; Min: 60.28 KB/sec ; Max: 120.50 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 790.713us ; Min: 221.168us ; Max: 5.713ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -374800.000ns ; Min: -2680722.000ns ; Max: -33768.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.741us - TotalBytesSent: 152.00 B (152) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=50):(Total: 58s942ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1m3s - Open Started: 4s063ms (4s063ms) - Open Finished: 1m2s (58s858ms) - First Batch Requested: 1m2s (23.546us) - First Batch Returned: 1m3s (82.996ms) - Last Batch Returned: 1m3s (254.896us) - Closed: 1m3s (56.838us) - PeakMemoryUsage: 3.66 MB (3841152) - RowsReturned: 6 (6) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 128.487us - HTResizeTime: 192.363us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 538.662us Buffer pool: - AllocTime: 18.994us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 2.92K (2917) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=49):(Total: 58s941ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s063ms (4s063ms) - Waiting for builder: 1m2s (58s815ms) - Initial build available: 1m2s (5.154us) - Open Finished: 1m2s (41.865ms) - First Batch Requested: 1m2s (689.811us) - First Batch Returned: 1m2s (41.733ms) - Last Batch Returned: 1m3s (40.551ms) - Closed: 1m3s (251.350us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 1.66 MB (1739904) - ProbeRows: 2.96K (2962) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 222.275us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 49.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=48):(Total: 58s938ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1m3s - Open Started: 4s063ms (4s063ms) - Waiting for builder: 1m2s (58s805ms) - Initial build available: 1m2s (4.806us) - Open Finished: 1m2s (10.167ms) - First Batch Requested: 1m2s (167.927us) - First Batch Returned: 1m2s (41.833ms) - Last Batch Returned: 1m3s (82.778ms) - Closed: 1m3s (436.037us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 42.12 KB (43136) - ProbeRows: 286.93K (286929) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 11.169ms - RowsReturned: 2.96K (2962) - RowsReturnedRate: 50.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=45):(Total: 58s924ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/15.43 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [24], missing [26]), waited for 58s805ms. Arrival delay: 1m. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1m3s - Closed: 1m3s (1m3s) - BytesReadSeries (1s000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.43 MB - FooterProcessingTime: (Avg: 788.644us ; Min: 788.644us ; Max: 788.644us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 4.00 MB (4194304) ; Min: 4.00 MB (4194304) ; Max: 4.00 MB (4194304) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 625.23 KB (640234) ; Min: 120.79 KB (123689) ; Max: 998.59 KB (1022552) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 62.52 KB (64023) ; Min: 29.33 KB (30033) ; Max: 75.40 KB (77208) ; Number of samples: 40) - ParquetRowGroupActualReservation: (Avg: 4.62 MB (4849664) ; Min: 4.62 MB (4849664) ; Max: 4.62 MB (4849664) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 4.62 MB (4849664) ; Min: 4.62 MB (4849664) ; Max: 4.62 MB (4849664) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 632.42 KB (647597) ; Min: 129.29 KB (132397) ; Max: 1004.82 KB (1028937) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 63.24 KB (64759) ; Min: 29.45 KB (30160) ; Max: 80.77 KB (82707) ; Number of samples: 40) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 2.85 MB (2992390) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.85 MB (2992390) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.85 MB (2992390) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 680.086us - MaterializeTupleTime: 106.802ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 40 (40) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 5.24 MB (5497722) - PerReadThreadRawHdfsThroughput: 1.45 GB/sec - RemoteScanRanges: 0 (0) - RowsRead: 287.51K (287514) - RowsReturned: 286.93K (286929) - RowsReturnedRate: 4.87 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.107ms - TotalRawHdfsOpenFileTime: 23.315us - TotalRawHdfsReadTime: 1.916ms - TotalReadThroughput: 48.70 KB/sec Buffer pool: - AllocTime: 29.504us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.75 MB (4980736) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 4.62 MB (4849664) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.62 MB (4849664) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.137us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 24 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 16.97K (16969) - Rows rejected: 585 (585) - Rows total: 287.51K (287514) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 26 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 286.93K (286929) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F91:(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m3s mean: 1m3s stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 12.993us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 156 (156) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 3.761ms - TotalThreadsUserTime: 161.138ms - TotalThreadsVoluntaryContextSwitches: 1 (1) Fragment Instance Lifecycle Timings: - ExecTime: 59s399ms - ExecTreeExecTime: 32.555us - OpenTime: 693.934ms - ExecTreeOpenTime: 12.146us - PrepareTime: 368.338us - ExecTreePrepareTime: 158.305us Hash Join Builder (join_node_id=49):(Total: 59s400ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 150.221us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 299.807us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 31.821us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.539us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 2.93K (2929) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=146):(Total: 41.277us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 12.970us - PeakMemoryUsage: 16.19 KB (16580) - RowsReturned: 12 (12) - RowsReturnedRate: 290.72 K/sec Buffer pool: - AllocTime: 11.564us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.924us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 11.596us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 33.542us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 1 (1) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 32.454us - TotalRPCsDeferred: 1 (1) Fragment F91: Instance 50467cb8e73eeac4:853461b4000000d2 (host=tarmstrong-Precision-7540:22001):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2s910ms (2s910ms) - Open Finished: 3s604ms (693.947ms) - First Batch Produced: 3s604ms (37.071us) - First Batch Sent: 3s604ms (152.501us) - ExecInternal Finished: 1m3s (59s399ms) - MemoryUsage (1s000ms): 3.90 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 12.993us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 156 (156) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 3.761ms - TotalThreadsUserTime: 161.138ms - TotalThreadsVoluntaryContextSwitches: 1 (1) Fragment Instance Lifecycle Timings: - ExecTime: 59s399ms - ExecTreeExecTime: 32.555us - OpenTime: 693.934ms - ExecTreeOpenTime: 12.146us - PrepareTime: 368.338us - ExecTreePrepareTime: 158.305us Hash Join Builder (join_node_id=49):(Total: 59s400ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 150.221us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 299.807us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 31.821us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.539us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 2.93K (2929) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=146):(Total: 41.277us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s604ms - Open Started: 3s603ms (3s603ms) - Open Finished: 3s603ms (8.870us) - First Batch Requested: 3s604ms (890.826us) - First Batch Returned: 3s604ms (28.612us) - Last Batch Returned: 3s604ms (489.000ns) - Closed: 3s604ms (216.170us) - ConvertRowBatchTime: 12.970us - PeakMemoryUsage: 16.19 KB (16580) - RowsReturned: 12 (12) - RowsReturnedRate: 290.72 K/sec Buffer pool: - AllocTime: 11.564us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.924us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 11.596us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 100.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 33.542us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 1 (1) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 32.454us - TotalRPCsDeferred: 1 (1) Averaged Fragment F30:(Total: 1s121ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.93 KB, max: 9.93 KB, avg: 9.93 KB, stddev: 0 completion times: min:8s062ms max:8s062ms mean: 8s062ms stddev:0.000ns execution rates: min:1.23 KB/sec max:1.23 KB/sec mean:1.23 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.01 - PeakMemoryUsage: 62.64 KB (64144) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 962.156ms - TotalStorageWaitTime: 4.060ms - TotalThreadsInvoluntaryContextSwitches: 21 (21) - TotalThreadsTotalWallClockTime: 1s120ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 39.765ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 967.461ms - ExecTreeExecTime: 4.766ms - OpenTime: 153.481ms - ExecTreeOpenTime: 206.899us - PrepareTime: 302.766us - ExecTreePrepareTime: 122.529us KrpcDataStreamSender (dst_id=146):(Total: 962.307ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.835us - TotalBytesSent: 100.00 B (100) - UncompressedRowBatchSize: 156.00 B (156) HDFS_SCAN_NODE (id=47):(Total: 5.122ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 10.440us - MaterializeTupleTime: 17.385us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 13.93 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 2.34 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.060ms - TotalRawHdfsOpenFileTime: 19.496us - TotalRawHdfsReadTime: 702.925us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.814us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F30: Instance 50467cb8e73eeac4:853461b4000000d1 (host=tarmstrong-Precision-7540:22001):(Total: 1s121ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.951 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB Fragment Instance Lifecycle Event Timeline: 2s910ms - Prepare Finished: 1s789ms (1s789ms) - Open Finished: 1s943ms (153.490ms) - First Batch Produced: 1s947ms (4.631ms) - First Batch Sent: 1s947ms (61.995us) - ExecInternal Finished: 2s910ms (962.865ms) - MemoryUsage (500.000ms): 33.59 KB, 33.59 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.01 - PeakMemoryUsage: 62.64 KB (64144) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 962.156ms - TotalStorageWaitTime: 4.060ms - TotalThreadsInvoluntaryContextSwitches: 21 (21) - TotalThreadsTotalWallClockTime: 1s120ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 39.765ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 967.461ms - ExecTreeExecTime: 4.766ms - OpenTime: 153.481ms - ExecTreeOpenTime: 206.899us - PrepareTime: 302.766us - ExecTreePrepareTime: 122.529us KrpcDataStreamSender (dst_id=146):(Total: 962.307ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 51.00 B/sec ; Min: 51.00 B/sec ; Max: 51.00 B/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1s443ms ; Min: 962.498ms ; Max: 1s924ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -481168037.000ns ; Min: -962273062.000ns ; Max: -63012.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.835us - TotalBytesSent: 100.00 B (100) - UncompressedRowBatchSize: 156.00 B (156) HDFS_SCAN_NODE (id=47):(Total: 5.122ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s948ms - Closed: 1s948ms (1s948ms) - FooterProcessingTime: (Avg: 3.599ms ; Min: 3.599ms ; Max: 3.599ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 10.440us - MaterializeTupleTime: 17.385us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 13.93 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 2.34 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.060ms - TotalRawHdfsOpenFileTime: 19.496us - TotalRawHdfsReadTime: 702.925us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.814us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F92:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m3s mean: 1m3s stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 282.950ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 84 (84) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.825ms - TotalThreadsVoluntaryContextSwitches: 28 (28) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 15.405ms - OpenTime: 1s011ms - ExecTreeOpenTime: 267.591ms - PrepareTime: 321.053us - ExecTreePrepareTime: 147.222us Hash Join Builder (join_node_id=48):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 240.812us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 418.947us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 61.226us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 46.129us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 277.25K (277254) - Resizes: 0 (0) - Travel: 225.66K (225662) EXCHANGE_NODE (id=145):(Total: 282.994ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 28.092us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 109.00 /sec Buffer pool: - AllocTime: 3.362us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 267.581ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 282.948ms - DataWaitTime: 282.937ms Enqueue: - DeserializeRowBatchTime: 36.171us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F92: Instance 50467cb8e73eeac4:853461b4000000d4 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.125 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s091ms (1s091ms) - Open Finished: 2s102ms (1s011ms) - First Batch Produced: 2s118ms (15.409ms) - First Batch Sent: 2s118ms (244.862us) - ExecInternal Finished: 1m3s (1m) - MemoryUsage (1s000ms): 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 282.950ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 84 (84) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.825ms - TotalThreadsVoluntaryContextSwitches: 28 (28) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 15.405ms - OpenTime: 1s011ms - ExecTreeOpenTime: 267.591ms - PrepareTime: 321.053us - ExecTreePrepareTime: 147.222us Hash Join Builder (join_node_id=48):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 240.812us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 418.947us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 61.226us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 46.129us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 277.25K (277254) - Resizes: 0 (0) - Travel: 225.66K (225662) EXCHANGE_NODE (id=145):(Total: 282.994ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s118ms - Open Started: 1s834ms (1s834ms) - Open Finished: 2s101ms (267.588ms) - First Batch Requested: 2s102ms (1.043ms) - First Batch Returned: 2s118ms (15.401ms) - Last Batch Returned: 2s118ms (991.000ns) - Closed: 2s118ms (323.954us) - ConvertRowBatchTime: 28.092us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 109.00 /sec Buffer pool: - AllocTime: 3.362us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 267.581ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 282.948ms - DataWaitTime: 282.937ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -64340.000ns ; Min: -64340.000ns ; Max: -64340.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 36.171us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F29:(Total: 1s068ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s050ms max:8s050ms mean: 8s050ms stddev:0.000ns execution rates: min:274.03 KB/sec max:274.03 KB/sec mean:274.03 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 8.286ms - TotalStorageWaitTime: 16.173ms - TotalThreadsInvoluntaryContextSwitches: 151 (151) - TotalThreadsTotalWallClockTime: 1s067ms - TotalThreadsSysTime: 9.953ms - TotalThreadsUserTime: 204.745ms - TotalThreadsVoluntaryContextSwitches: 38 (38) Fragment Instance Lifecycle Timings: - ExecTime: 110.118ms - ExecTreeExecTime: 86.025ms - OpenTime: 957.804ms - ExecTreeOpenTime: 1.253ms - PrepareTime: 302.649us - ExecTreePrepareTime: 137.303us KrpcDataStreamSender (dst_id=145):(Total: 8.460ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.158us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=46):(Total: 87.455ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 37.749us - MaterializeTupleTime: 35.671ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 46.06 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 354.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 16.173ms - TotalRawHdfsOpenFileTime: 41.846us - TotalRawHdfsReadTime: 9.252ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 36.849us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 26.505us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F29: Instance 50467cb8e73eeac4:853461b4000000d3 (host=tarmstrong-Precision-7540:22001):(Total: 1s068ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.939 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 2s125ms - Prepare Finished: 1s057ms (1s057ms) - Open Finished: 2s015ms (957.816ms) - First Batch Produced: 2s101ms (85.770ms) - First Batch Sent: 2s101ms (64.253us) - ExecInternal Finished: 2s125ms (24.336ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 8.286ms - TotalStorageWaitTime: 16.173ms - TotalThreadsInvoluntaryContextSwitches: 151 (151) - TotalThreadsTotalWallClockTime: 1s067ms - TotalThreadsSysTime: 9.953ms - TotalThreadsUserTime: 204.745ms - TotalThreadsVoluntaryContextSwitches: 38 (38) Fragment Instance Lifecycle Timings: - ExecTime: 110.118ms - ExecTreeExecTime: 86.025ms - OpenTime: 957.804ms - ExecTreeOpenTime: 1.253ms - PrepareTime: 302.649us - ExecTreePrepareTime: 137.303us KrpcDataStreamSender (dst_id=145):(Total: 8.460ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 537.76 KB/sec ; Min: 537.76 KB/sec ; Max: 537.76 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 2.982ms ; Min: 791.772us ; Max: 5.173ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -175625.000ns ; Min: -235998.000ns ; Max: -115252.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.158us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=46):(Total: 87.455ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s117ms - Closed: 2s117ms (2s117ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 7.584ms ; Min: 7.584ms ; Max: 7.584ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 2.093ms ; Min: 2.093ms ; Max: 2.093ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 37.749us - MaterializeTupleTime: 35.671ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 46.06 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 354.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 16.173ms - TotalRawHdfsOpenFileTime: 41.846us - TotalRawHdfsReadTime: 9.252ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 36.849us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 26.505us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F93:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:418.352ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s503ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 1.268ms - TotalThreadsUserTime: 21.060ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 59s691ms - ExecTreeExecTime: 14.799ms - OpenTime: 2s629ms - ExecTreeOpenTime: 2s488ms - PrepareTime: 469.691us - ExecTreePrepareTime: 176.088us Nested Loop Join Builder:(Total: 59s676ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=155):(Total: 2s503ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 4.431us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 5.355us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.268us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 2s488ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s503ms - DataWaitTime: 2s503ms Enqueue: - DeserializeRowBatchTime: 26.549us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F93: Instance 50467cb8e73eeac4:853461b4000000d7 (host=tarmstrong-Precision-7540:22002):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.113 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 224.192ms (224.192ms) - Open Finished: 3s374ms (3s150ms) - First Batch Produced: 3s375ms (673.151us) - First Batch Sent: 3s375ms (25.061us) - ExecInternal Finished: 1m3s (59s673ms) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 8.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s057ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 3.805ms - TotalThreadsUserTime: 18.859ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s674ms - ExecTreeExecTime: 669.460us - OpenTime: 3s150ms - ExecTreeOpenTime: 3s057ms - PrepareTime: 244.950us - ExecTreePrepareTime: 144.996us Nested Loop Join Builder:(Total: 59s673ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=155):(Total: 3s057ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s375ms - Open Started: 317.289ms (317.289ms) - Open Finished: 3s374ms (3s057ms) - First Batch Requested: 3s374ms (31.474us) - First Batch Returned: 3s375ms (666.431us) - Last Batch Returned: 3s375ms (648.000ns) - Closed: 3s375ms (94.905us) - ConvertRowBatchTime: 4.006us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 6.917us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.805us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s057ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 3s057ms - DataWaitTime: 3s057ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -114811.000ns ; Min: -114811.000ns ; Max: -114811.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 29.460us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000d8 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 851.892ms (851.892ms) - Open Finished: 3s310ms (2s458ms) - First Batch Produced: 3s331ms (21.866ms) - First Batch Sent: 3s331ms (36.359us) - ExecInternal Finished: 1m3s (59s678ms) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 18.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s303ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 6 (6) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.309ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 59s700ms - ExecTreeExecTime: 21.861ms - OpenTime: 2s458ms - ExecTreeOpenTime: 2s281ms - PrepareTime: 308.198us - ExecTreePrepareTime: 184.502us Nested Loop Join Builder:(Total: 59s678ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=155):(Total: 2s303ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s332ms - Open Started: 1s028ms (1s028ms) - Open Finished: 3s310ms (2s281ms) - First Batch Requested: 3s310ms (35.782us) - First Batch Returned: 3s331ms (21.858ms) - Last Batch Returned: 3s331ms (885.000ns) - Closed: 3s332ms (132.089us) - ConvertRowBatchTime: 5.364us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.416us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s281ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s303ms - DataWaitTime: 2s303ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -158819.000ns ; Min: -158819.000ns ; Max: -158819.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.734us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000d9 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s040ms (1s040ms) - Open Finished: 3s321ms (2s280ms) - First Batch Produced: 3s343ms (21.869ms) - First Batch Sent: 3s343ms (26.369us) - ExecInternal Finished: 1m3s (59s678ms) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 18.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s149ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.013ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 59s700ms - ExecTreeExecTime: 21.865ms - OpenTime: 2s280ms - ExecTreeOpenTime: 2s127ms - PrepareTime: 855.925us - ExecTreePrepareTime: 198.768us Nested Loop Join Builder:(Total: 59s677ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=155):(Total: 2s149ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s343ms - Open Started: 1s193ms (1s193ms) - Open Finished: 3s321ms (2s127ms) - First Batch Requested: 3s321ms (25.668us) - First Batch Returned: 3s343ms (21.859ms) - Last Batch Returned: 3s343ms (770.000ns) - Closed: 3s343ms (259.298us) - ConvertRowBatchTime: 3.924us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.732us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s127ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s149ms - DataWaitTime: 2s149ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -54570.000ns ; Min: -54570.000ns ; Max: -54570.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 22.454us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F37:(Total: 2s521ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s312ms max:7s312ms mean: 7s312ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 51.62 KB (52864) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s312ms - TotalNetworkSendTime: 35.547ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 13 (13) - TotalThreadsTotalWallClockTime: 2s520ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.488ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 35.690ms - ExecTreeExecTime: 9.045us - OpenTime: 2s485ms - ExecTreeOpenTime: 2s312ms - PrepareTime: 370.386us - ExecTreePrepareTime: 200.604us KrpcDataStreamSender (dst_id=155):(Total: 35.722ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 11.62 KB (11904) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.780us - TotalBytesSent: 75.00 B (75) - UncompressedRowBatchSize: 123.00 B (123) AGGREGATION_NODE (id=154):(Total: 2s312ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 19.160us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=153):(Total: 2s312ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.351us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.529us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.739us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 2s310ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s312ms - DataWaitTime: 2s312ms Enqueue: - DeserializeRowBatchTime: 21.257us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F37: Instance 50467cb8e73eeac4:853461b4000000d6 (host=tarmstrong-Precision-7540:22000):(Total: 2s521ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.218 Fragment Instance Lifecycle Event Timeline: 3s332ms - Prepare Finished: 811.616ms (811.616ms) - Open Finished: 3s296ms (2s485ms) - First Batch Produced: 3s296ms (11.115us) - First Batch Sent: 3s296ms (72.872us) - ExecInternal Finished: 3s332ms (35.688ms) - MemoryUsage (500.000ms): 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 51.62 KB (52864) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s312ms - TotalNetworkSendTime: 35.547ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 13 (13) - TotalThreadsTotalWallClockTime: 2s520ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.488ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 35.690ms - ExecTreeExecTime: 9.045us - OpenTime: 2s485ms - ExecTreeOpenTime: 2s312ms - PrepareTime: 370.386us - ExecTreePrepareTime: 200.604us KrpcDataStreamSender (dst_id=155):(Total: 35.722ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 1.44 KB/sec ; Min: 716.00 B/sec ; Max: 1.81 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 10.779ms ; Min: 893.324us ; Max: 34.869ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -107163.000ns ; Min: -201324.000ns ; Max: -43717.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 11.62 KB (11904) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.780us - TotalBytesSent: 75.00 B (75) - UncompressedRowBatchSize: 123.00 B (123) AGGREGATION_NODE (id=154):(Total: 2s312ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s296ms - Open Started: 984.076ms (984.076ms) - Open Finished: 3s296ms (2s312ms) - First Batch Requested: 3s296ms (27.333us) - First Batch Returned: 3s296ms (6.971us) - Last Batch Returned: 3s296ms (347.000ns) - Closed: 3s296ms (91.859us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: - BuildTime: 19.160us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=153):(Total: 2s312ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s296ms - Open Started: 984.080ms (984.080ms) - Open Finished: 3s294ms (2s310ms) - First Batch Requested: 3s294ms (22.794us) - First Batch Returned: 3s296ms (2.447ms) - Last Batch Returned: 3s296ms (872.000ns) - Closed: 3s296ms (104.043us) - ConvertRowBatchTime: 3.351us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.529us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.739us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s310ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s312ms - DataWaitTime: 2s312ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -58846.000ns ; Min: -58846.000ns ; Max: -58846.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.257us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F35:(Total: 2s282ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 10.62 MB, max: 10.62 MB, avg: 10.62 MB, stddev: 0 completion times: min:8s051ms max:8s051ms mean: 8s051ms stddev:0.000ns execution rates: min:1.32 MB/sec max:1.32 MB/sec mean:1.32 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.97 MB (3115801) - PeakReservation: 2.25 MB (2359296) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.073ms - TotalStorageWaitTime: 109.166ms - TotalThreadsInvoluntaryContextSwitches: 253 (253) - TotalThreadsTotalWallClockTime: 2s281ms - TotalThreadsSysTime: 4.717ms - TotalThreadsUserTime: 287.691ms - TotalThreadsVoluntaryContextSwitches: 42 (42) Fragment Instance Lifecycle Timings: - ExecTime: 5.169ms - ExecTreeExecTime: 10.820us - OpenTime: 2s276ms - ExecTreeOpenTime: 1s209ms - PrepareTime: 534.053us - ExecTreePrepareTime: 323.494us KrpcDataStreamSender (dst_id=153):(Total: 5.183ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 3.88 KB (3968) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.086us - TotalBytesSent: 25.00 B (25) - UncompressedRowBatchSize: 41.00 B (41) AGGREGATION_NODE (id=59):(Total: 1s209ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 175.00 KB (179200) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 1.004ms - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) HASH_JOIN_NODE (id=58):(Total: 1s207ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 94.12 KB (96384) - ProbeRows: 1.61K (1611) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 137.387us - RowsReturned: 1.61K (1611) - RowsReturnedRate: 1.33 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=56):(Total: 389.676ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.49 MB (1559615) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.49 MB (1559615) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.49 MB (1559615) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 375.490us - MaterializeTupleTime: 248.111ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 20 (20) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.78 MB (2914370) - PerReadThreadRawHdfsThroughput: 108.43 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 144.07K (144067) - RowsReturned: 1.61K (1611) - RowsReturnedRate: 4.13 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 109.166ms - TotalRawHdfsOpenFileTime: 1.772ms - TotalRawHdfsReadTime: 13.716ms - TotalReadThroughput: 609.22 KB/sec Buffer pool: - AllocTime: 41.364us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.38 MB (2490368) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.25 MB (2359296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.25 MB (2359296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 31.613us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 30 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 144.07K (144067) - Rows rejected: 142.46K (142456) - Rows total: 144.07K (144067) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F35: Instance 50467cb8e73eeac4:853461b4000000d5 (host=tarmstrong-Precision-7540:22001):(Total: 2s282ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.940 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/10.62 MB Fragment Instance Lifecycle Event Timeline: 3s308ms - Prepare Finished: 1s026ms (1s026ms) - Open Finished: 3s303ms (2s276ms) - First Batch Produced: 3s303ms (13.573us) - First Batch Sent: 3s303ms (32.939us) - ExecInternal Finished: 3s308ms (5.214ms) - MemoryUsage (500.000ms): 41.00 KB, 41.00 KB, 41.00 KB, 41.00 KB, 2.97 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.97 MB (3115801) - PeakReservation: 2.25 MB (2359296) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.073ms - TotalStorageWaitTime: 109.166ms - TotalThreadsInvoluntaryContextSwitches: 253 (253) - TotalThreadsTotalWallClockTime: 2s281ms - TotalThreadsSysTime: 4.717ms - TotalThreadsUserTime: 287.691ms - TotalThreadsVoluntaryContextSwitches: 42 (42) Fragment Instance Lifecycle Timings: - ExecTime: 5.169ms - ExecTreeExecTime: 10.820us - OpenTime: 2s276ms - ExecTreeOpenTime: 1s209ms - PrepareTime: 534.053us - ExecTreePrepareTime: 323.494us KrpcDataStreamSender (dst_id=153):(Total: 5.183ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 14.25 KB/sec ; Min: 14.25 KB/sec ; Max: 14.25 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 2.060ms ; Min: 1.713ms ; Max: 2.406ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -77045.000ns ; Min: -92608.000ns ; Max: -61482.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 3.88 KB (3968) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.086us - TotalBytesSent: 25.00 B (25) - UncompressedRowBatchSize: 41.00 B (41) AGGREGATION_NODE (id=59):(Total: 1s209ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s303ms - Open Started: 2s093ms (2s093ms) - Open Finished: 3s303ms (1s209ms) - First Batch Requested: 3s303ms (25.355us) - First Batch Returned: 3s303ms (8.482us) - Last Batch Returned: 3s303ms (447.000ns) - Closed: 3s303ms (50.822us) - PeakMemoryUsage: 175.00 KB (179200) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 1.004ms - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) HASH_JOIN_NODE (id=58):(Total: 1s207ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s303ms - Open Started: 2s093ms (2s093ms) - Waiting for builder: 2s910ms (816.866ms) - Initial build available: 2s910ms (3.095us) - Open Finished: 3s143ms (232.503ms) - First Batch Requested: 3s143ms (36.580us) - First Batch Returned: 3s143ms (93.193us) - Last Batch Returned: 3s301ms (158.200ms) - Closed: 3s303ms (1.763ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 94.12 KB (96384) - ProbeRows: 1.61K (1611) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 137.387us - RowsReturned: 1.61K (1611) - RowsReturnedRate: 1.33 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=56):(Total: 389.676ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/10.62 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s096ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s303ms - Closed: 3s303ms (3s303ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 1.49 MB - FooterProcessingTime: (Avg: 42.443ms ; Min: 42.443ms ; Max: 42.443ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 367.33 KB (376144) ; Min: 192.85 KB (197477) ; Max: 457.52 KB (468498) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 55.10 KB (56421) ; Min: 1.43 KB (1467) ; Max: 65.61 KB (67189) ; Number of samples: 20) - ParquetRowGroupActualReservation: (Avg: 2.25 MB (2359296) ; Min: 2.25 MB (2359296) ; Max: 2.25 MB (2359296) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 2.25 MB (2359296) ; Min: 2.25 MB (2359296) ; Max: 2.25 MB (2359296) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 368.85 KB (377701) ; Min: 192.83 KB (197454) ; Max: 459.82 KB (470859) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 55.33 KB (56655) ; Min: 1.43 KB (1462) ; Max: 66.34 KB (67929) ; Number of samples: 20) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.49 MB (1559615) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.49 MB (1559615) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.49 MB (1559615) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 375.490us - MaterializeTupleTime: 248.111ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 20 (20) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.78 MB (2914370) - PerReadThreadRawHdfsThroughput: 108.43 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 144.07K (144067) - RowsReturned: 1.61K (1611) - RowsReturnedRate: 4.13 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 109.166ms - TotalRawHdfsOpenFileTime: 1.772ms - TotalRawHdfsReadTime: 13.716ms - TotalReadThroughput: 609.22 KB/sec Buffer pool: - AllocTime: 41.364us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.38 MB (2490368) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.25 MB (2359296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.25 MB (2359296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 31.613us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 30 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 144.07K (144067) - Rows rejected: 142.46K (142456) - Rows total: 144.07K (144067) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F94:(Total: 2s318ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s056ms max:8s056ms mean: 8s056ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 283.362ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 111 (111) - TotalThreadsTotalWallClockTime: 2s318ms - TotalThreadsSysTime: 4.070ms - TotalThreadsUserTime: 159.326ms - TotalThreadsVoluntaryContextSwitches: 32 (32) Fragment Instance Lifecycle Timings: - ExecTime: 1s199ms - ExecTreeExecTime: 19.198ms - OpenTime: 1s118ms - ExecTreeOpenTime: 264.209ms - PrepareTime: 407.856us - ExecTreePrepareTime: 186.091us Hash Join Builder (join_node_id=58):(Total: 1s184ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 326.080us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 477.913us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 82.714us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 65.087us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.64K (1642) - Resizes: 0 (0) - Travel: 829 (829) EXCHANGE_NODE (id=152):(Total: 283.404ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.276us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 109.00 /sec Buffer pool: - AllocTime: 4.222us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 264.194ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 283.359ms - DataWaitTime: 283.347ms Enqueue: - DeserializeRowBatchTime: 30.094us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F94: Instance 50467cb8e73eeac4:853461b4000000db (host=tarmstrong-Precision-7540:22001):(Total: 2s318ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.945 Fragment Instance Lifecycle Event Timeline: 3s301ms - Prepare Finished: 983.577ms (983.577ms) - Open Finished: 2s102ms (1s118ms) - First Batch Produced: 2s121ms (19.202ms) - First Batch Sent: 2s121ms (332.185us) - ExecInternal Finished: 3s301ms (1s179ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 283.362ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 111 (111) - TotalThreadsTotalWallClockTime: 2s318ms - TotalThreadsSysTime: 4.070ms - TotalThreadsUserTime: 159.326ms - TotalThreadsVoluntaryContextSwitches: 32 (32) Fragment Instance Lifecycle Timings: - ExecTime: 1s199ms - ExecTreeExecTime: 19.198ms - OpenTime: 1s118ms - ExecTreeOpenTime: 264.209ms - PrepareTime: 407.856us - ExecTreePrepareTime: 186.091us Hash Join Builder (join_node_id=58):(Total: 1s184ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 326.080us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 477.913us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 82.714us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 65.087us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.64K (1642) - Resizes: 0 (0) - Travel: 829 (829) EXCHANGE_NODE (id=152):(Total: 283.404ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s121ms - Open Started: 1s833ms (1s833ms) - Open Finished: 2s097ms (264.205ms) - First Batch Requested: 2s102ms (4.859ms) - First Batch Returned: 2s121ms (19.193ms) - Last Batch Returned: 2s121ms (1.271us) - Closed: 2s121ms (419.067us) - ConvertRowBatchTime: 22.276us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 109.00 /sec Buffer pool: - AllocTime: 4.222us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 264.194ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 283.359ms - DataWaitTime: 283.347ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -109280.000ns ; Min: -109280.000ns ; Max: -109280.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 30.094us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F36:(Total: 1s146ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s047ms max:8s047ms mean: 8s047ms stddev:0.000ns execution rates: min:274.14 KB/sec max:274.14 KB/sec mean:274.14 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 8.202ms - TotalStorageWaitTime: 21.808ms - TotalThreadsInvoluntaryContextSwitches: 100 (100) - TotalThreadsTotalWallClockTime: 1s146ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 215.401ms - TotalThreadsVoluntaryContextSwitches: 35 (35) Fragment Instance Lifecycle Timings: - ExecTime: 125.611ms - ExecTreeExecTime: 112.683ms - OpenTime: 1s021ms - ExecTreeOpenTime: 260.753us - PrepareTime: 276.618us - ExecTreePrepareTime: 128.723us KrpcDataStreamSender (dst_id=152):(Total: 12.835ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 28.817us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=57):(Total: 113.109ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 21.982us - MaterializeTupleTime: 43.890ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 146.18 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 274.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 21.808ms - TotalRawHdfsOpenFileTime: 48.293us - TotalRawHdfsReadTime: 2.915ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 13.150us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F36: Instance 50467cb8e73eeac4:853461b4000000da (host=tarmstrong-Precision-7540:22001):(Total: 1s146ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.936 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 2s125ms - Prepare Finished: 978.572ms (978.572ms) - Open Finished: 1s999ms (1s021ms) - First Batch Produced: 2s097ms (97.501ms) - First Batch Sent: 2s101ms (4.477ms) - ExecInternal Finished: 2s125ms (23.719ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 8.202ms - TotalStorageWaitTime: 21.808ms - TotalThreadsInvoluntaryContextSwitches: 100 (100) - TotalThreadsTotalWallClockTime: 1s146ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 215.401ms - TotalThreadsVoluntaryContextSwitches: 35 (35) Fragment Instance Lifecycle Timings: - ExecTime: 125.611ms - ExecTreeExecTime: 112.683ms - OpenTime: 1s021ms - ExecTreeOpenTime: 260.753us - PrepareTime: 276.618us - ExecTreePrepareTime: 128.723us KrpcDataStreamSender (dst_id=152):(Total: 12.835ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 600.05 KB/sec ; Min: 600.05 KB/sec ; Max: 600.05 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 3.015ms ; Min: 709.577us ; Max: 5.320ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -113118.000ns ; Min: -153448.000ns ; Max: -72788.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 28.817us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=57):(Total: 113.109ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s116ms - Closed: 2s116ms (2s116ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 17.096ms ; Min: 17.096ms ; Max: 17.096ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 5.310ms ; Min: 5.310ms ; Max: 5.310ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 21.982us - MaterializeTupleTime: 43.890ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 146.18 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 274.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 21.808ms - TotalRawHdfsOpenFileTime: 48.293us - TotalRawHdfsReadTime: 2.915ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 13.150us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F95:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:417.863ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1s692ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 55 (55) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 294.916us - TotalThreadsUserTime: 62.741ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 59s759ms - ExecTreeExecTime: 218.667us - OpenTime: 2s802ms - ExecTreeOpenTime: 1s700ms - PrepareTime: 2.689ms - ExecTreePrepareTime: 2.069ms Hash Join Builder (join_node_id=73):(Total: 59s759ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 402.599us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 97.785us - LargestPartitionPercent: 43 (43) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.974us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 261.33 KB (267605) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 261.33 KB (267605) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.263us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s703ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: - BuildTime: 71.920us - GetResultsTime: 88.900us - HTResizeTime: 2.082us - LargestPartitionPercent: 43 (43) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 31.971us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 453.33 KB (464213) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 453.33 KB (464213) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.467us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.16K (3157) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s692ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 5.824us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 6.736us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.048us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s679ms - TotalBytesDequeued: 150.00 B (150) - TotalGetBatchTime: 1s692ms - DataWaitTime: 1s692ms Enqueue: - DeserializeRowBatchTime: 23.616us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 84.00 B (84) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F95: Instance 50467cb8e73eeac4:853461b4000000dd (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.111 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 21.444ms (21.444ms) - Open Finished: 3s282ms (3s261ms) - First Batch Produced: 3s283ms (55.095us) - First Batch Sent: 3s283ms (22.175us) - ExecInternal Finished: 1m3s (59s764ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s560ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 3.539ms - TotalThreadsUserTime: 229.890ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 59s763ms - ExecTreeExecTime: 87.934us - OpenTime: 3s261ms - ExecTreeOpenTime: 2s564ms - PrepareTime: 416.077us - ExecTreePrepareTime: 253.737us Hash Join Builder (join_node_id=73):(Total: 59s765ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 20.504us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 49.577us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.612us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 2s564ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s283ms - Open Started: 716.102ms (716.102ms) - Open Finished: 3s280ms (2s564ms) - First Batch Requested: 3s282ms (2.404ms) - First Batch Returned: 3s283ms (48.059us) - Last Batch Returned: 3s283ms (62.428us) - Closed: 3s283ms (76.154us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 35.198us - GetResultsTime: 37.679us - HTResizeTime: 1.586us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 16.295us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.879us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 2s560ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s279ms - Open Started: 716.103ms (716.103ms) - Open Finished: 3s258ms (2s542ms) - First Batch Requested: 3s260ms (1.251ms) - First Batch Returned: 3s277ms (17.432ms) - Last Batch Returned: 3s277ms (793.000ns) - Closed: 3s279ms (2.254ms) - ConvertRowBatchTime: 4.649us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.763us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.386us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s542ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 2s560ms - DataWaitTime: 2s560ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -140884.000ns ; Min: -140884.000ns ; Max: -140884.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.973us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000de (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 29.628ms (29.628ms) - Open Finished: 3s278ms (3s249ms) - First Batch Produced: 3s279ms (52.760us) - First Batch Sent: 3s283ms (4.244ms) - ExecInternal Finished: 1m3s (59s764ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s560ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.718ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s768ms - ExecTreeExecTime: 272.303us - OpenTime: 3s249ms - ExecTreeOpenTime: 2s562ms - PrepareTime: 1.029ms - ExecTreePrepareTime: 875.253us Hash Join Builder (join_node_id=73):(Total: 59s763ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 4.283ms - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 110.328us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.965us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 2s563ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s288ms - Open Started: 716.054ms (716.054ms) - Open Finished: 3s278ms (2s562ms) - First Batch Requested: 3s278ms (553.455us) - First Batch Returned: 3s279ms (47.125us) - Last Batch Returned: 3s283ms (4.525ms) - Closed: 3s288ms (5.085ms) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 86.482us - GetResultsTime: 111.828us - HTResizeTime: 2.532us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 37.929us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.076us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 2s560ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s277ms - Open Started: 716.056ms (716.056ms) - Open Finished: 3s257ms (2s541ms) - First Batch Requested: 3s258ms (1.129ms) - First Batch Returned: 3s277ms (18.764ms) - Last Batch Returned: 3s277ms (710.000ns) - Closed: 3s277ms (128.435us) - ConvertRowBatchTime: 5.941us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.604us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.015us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s541ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s560ms - DataWaitTime: 2s560ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -160040.000ns ; Min: -160040.000ns ; Max: -160040.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.014us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000df (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 33.108ms (33.108ms) - Open Finished: 3s288ms (3s255ms) - First Batch Produced: 3s288ms (50.004us) - First Batch Sent: 3s288ms (18.930us) - ExecInternal Finished: 1m3s (59s757ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 2s561ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.252ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 59s757ms - ExecTreeExecTime: 261.476us - OpenTime: 3s255ms - ExecTreeOpenTime: 2s571ms - PrepareTime: 385.889us - ExecTreePrepareTime: 238.909us Hash Join Builder (join_node_id=73):(Total: 59s757ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 59.075us - BuildRowsPartitioned: 6 (6) - HashTablesBuildTime: 115.719us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.580us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 10 (10) - HashCollisions: 0 (0) - Probes: 11 (11) - Resizes: 0 (0) - Travel: 4 (4) AGGREGATION_NODE (id=163):(Total: 2s572ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s288ms - Open Started: 716.075ms (716.075ms) - Open Finished: 3s287ms (2s571ms) - First Batch Requested: 3s288ms (528.391us) - First Batch Returned: 3s288ms (44.335us) - Last Batch Returned: 3s288ms (292.723us) - Closed: 3s288ms (85.634us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 6 (6) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 73.131us - GetResultsTime: 112.982us - HTResizeTime: 2.910us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 6 (6) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.273us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.773us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 2s561ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s279ms - Open Started: 716.077ms (716.077ms) - Open Finished: 3s257ms (2s541ms) - First Batch Requested: 3s258ms (1.242ms) - First Batch Returned: 3s279ms (20.327ms) - Last Batch Returned: 3s279ms (795.000ns) - Closed: 3s279ms (126.416us) - ConvertRowBatchTime: 7.960us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 6 (6) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 5.154us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.176us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s541ms - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 2s561ms - DataWaitTime: 2s561ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -43201.000ns ; Min: -43201.000ns ; Max: -43201.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.579us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 155.00 B (155) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e0 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.109 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 44.652ms (44.652ms) - Open Finished: 3s278ms (3s234ms) - First Batch Produced: 3s278ms (55.251us) - First Batch Sent: 3s278ms (28.791us) - ExecInternal Finished: 1m3s (59s776ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 2s560ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.837ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s776ms - ExecTreeExecTime: 232.589us - OpenTime: 3s234ms - ExecTreeOpenTime: 2s562ms - PrepareTime: 369.528us - ExecTreePrepareTime: 232.521us Hash Join Builder (join_node_id=73):(Total: 59s776ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 58.242us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 108.887us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.696us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.758us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 2s562ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s279ms - Open Started: 716.089ms (716.089ms) - Open Finished: 3s278ms (2s562ms) - First Batch Requested: 3s278ms (538.605us) - First Batch Returned: 3s278ms (49.412us) - Last Batch Returned: 3s279ms (254.822us) - Closed: 3s279ms (75.533us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 77.501us - GetResultsTime: 89.833us - HTResizeTime: 2.716us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 26.388us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 19.088us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 2s560ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s277ms - Open Started: 716.091ms (716.091ms) - Open Finished: 3s258ms (2s542ms) - First Batch Requested: 3s260ms (1.177ms) - First Batch Returned: 3s277ms (17.423ms) - Last Batch Returned: 3s277ms (1.709us) - Closed: 3s277ms (140.495us) - ConvertRowBatchTime: 5.992us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.038us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.444us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s542ms - TotalBytesDequeued: 135.00 B (135) - TotalGetBatchTime: 2s560ms - DataWaitTime: 2s560ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -164244.000ns ; Min: -164244.000ns ; Max: -164244.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.875us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 73.00 B (73) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e1 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 416.091ms (416.091ms) - Open Finished: 3s235ms (2s819ms) - First Batch Produced: 3s235ms (56.359us) - First Batch Sent: 3s235ms (27.359us) - ExecInternal Finished: 1m3s (59s777ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s487ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 430 (430) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 246.266ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 59s777ms - ExecTreeExecTime: 95.921us - OpenTime: 2s819ms - ExecTreeOpenTime: 1s489ms - PrepareTime: 470.239us - ExecTreePrepareTime: 307.593us Hash Join Builder (join_node_id=73):(Total: 59s777ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 25.406us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 59.295us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.304us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.365us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s490ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s236ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s235ms (1s489ms) - First Batch Requested: 3s235ms (552.927us) - First Batch Returned: 3s235ms (50.023us) - Last Batch Returned: 3s235ms (75.174us) - Closed: 3s236ms (82.823us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 60.211us - GetResultsTime: 41.502us - HTResizeTime: 2.723us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 41.661us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 34.186us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s487ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s234ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s214ms (1s468ms) - First Batch Requested: 3s215ms (1.342ms) - First Batch Returned: 3s234ms (18.565ms) - Last Batch Returned: 3s234ms (855.000ns) - Closed: 3s234ms (133.773us) - ConvertRowBatchTime: 4.356us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 7.337us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.296us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s468ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1s487ms - DataWaitTime: 1s487ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -66640.000ns ; Min: -66640.000ns ; Max: -66640.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 26.858us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e2 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 438.679ms (438.679ms) - Open Finished: 3s238ms (2s799ms) - First Batch Produced: 3s238ms (57.307us) - First Batch Sent: 3s238ms (29.152us) - ExecInternal Finished: 1m3s (59s767ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 1s488ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 5 (5) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.643ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s767ms - ExecTreeExecTime: 279.562us - OpenTime: 2s799ms - ExecTreeOpenTime: 1s492ms - PrepareTime: 718.281us - ExecTreePrepareTime: 257.675us Hash Join Builder (join_node_id=73):(Total: 59s767ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 69.844us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 127.605us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 14.968us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.199us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s492ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s238ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s237ms (1s492ms) - First Batch Requested: 3s238ms (523.892us) - First Batch Returned: 3s238ms (50.619us) - Last Batch Returned: 3s238ms (315.996us) - Closed: 3s238ms (83.408us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 82.191us - GetResultsTime: 114.012us - HTResizeTime: 1.328us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 34.161us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.795us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s488ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s237ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s228ms (1s482ms) - First Batch Requested: 3s230ms (2.822ms) - First Batch Returned: 3s237ms (6.050ms) - Last Batch Returned: 3s237ms (841.000ns) - Closed: 3s237ms (132.030us) - ConvertRowBatchTime: 6.675us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 6.685us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.372us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s482ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 1s488ms - DataWaitTime: 1s488ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -73253.000ns ; Min: -73253.000ns ; Max: -73253.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.499us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e3 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 463.857ms (463.857ms) - Open Finished: 3s240ms (2s776ms) - First Batch Produced: 3s240ms (45.592us) - First Batch Sent: 3s240ms (17.581us) - ExecInternal Finished: 1m3s (59s766ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 1s492ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.942ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s766ms - ExecTreeExecTime: 199.815us - OpenTime: 2s776ms - ExecTreeOpenTime: 1s494ms - PrepareTime: 439.442us - ExecTreePrepareTime: 276.185us Hash Join Builder (join_node_id=73):(Total: 59s767ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 44.878us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 92.284us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.592us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s495ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s241ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s240ms (1s494ms) - First Batch Requested: 3s240ms (491.940us) - First Batch Returned: 3s240ms (40.501us) - Last Batch Returned: 3s240ms (215.671us) - Closed: 3s241ms (73.009us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 68.939us - GetResultsTime: 81.754us - HTResizeTime: 1.538us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 31.286us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.295us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s492ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s239ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s228ms (1s482ms) - First Batch Requested: 3s229ms (1.250ms) - First Batch Returned: 3s239ms (9.735ms) - Last Batch Returned: 3s239ms (860.000ns) - Closed: 3s239ms (122.194us) - ConvertRowBatchTime: 5.778us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 30.862us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.680us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s482ms - TotalBytesDequeued: 135.00 B (135) - TotalGetBatchTime: 1s492ms - DataWaitTime: 1s492ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -37741.000ns ; Min: -37741.000ns ; Max: -37741.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 46.384us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 76.00 B (76) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e4 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.032 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 481.914ms (481.914ms) - Open Finished: 3s243ms (2s761ms) - First Batch Produced: 3s243ms (57.095us) - First Batch Sent: 3s243ms (19.764us) - ExecInternal Finished: 1m3s (59s758ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1s494ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.807ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s758ms - ExecTreeExecTime: 156.719us - OpenTime: 2s761ms - ExecTreeOpenTime: 1s497ms - PrepareTime: 434.893us - ExecTreePrepareTime: 288.080us Hash Join Builder (join_node_id=73):(Total: 59s758ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 33.057us - BuildRowsPartitioned: 2 (2) - HashTablesBuildTime: 62.690us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.671us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2 (2) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s497ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s243ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s242ms (1s497ms) - First Batch Requested: 3s243ms (527.447us) - First Batch Returned: 3s243ms (43.672us) - Last Batch Returned: 3s243ms (154.106us) - Closed: 3s243ms (69.800us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 42.874us - GetResultsTime: 59.785us - HTResizeTime: 2.196us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 18.728us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 10.519us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s494ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s241ms - Open Started: 1s745ms (1s745ms) - Open Finished: 3s230ms (1s484ms) - First Batch Requested: 3s231ms (1.269ms) - First Batch Returned: 3s241ms (10.457ms) - Last Batch Returned: 3s241ms (926.000ns) - Closed: 3s241ms (93.433us) - ConvertRowBatchTime: 4.417us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.473us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 693.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s484ms - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 1s494ms - DataWaitTime: 1s494ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -54319.000ns ; Min: -54319.000ns ; Max: -54319.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.218us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 51.00 B (51) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e5 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.124 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 838.676ms (838.676ms) - Open Finished: 3s272ms (2s433ms) - First Batch Produced: 3s272ms (55.520us) - First Batch Sent: 3s272ms (23.870us) - ExecInternal Finished: 1m3s (59s746ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 1s025ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 129 (129) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 241.844ms - TotalThreadsVoluntaryContextSwitches: 51 (51) Fragment Instance Lifecycle Timings: - ExecTime: 59s746ms - ExecTreeExecTime: 274.791us - OpenTime: 2s433ms - ExecTreeOpenTime: 1s043ms - PrepareTime: 603.208us - ExecTreePrepareTime: 377.982us Hash Join Builder (join_node_id=73):(Total: 59s746ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 74.261us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 107.974us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 18.400us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.777us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s044ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s272ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s271ms (1s043ms) - First Batch Requested: 3s272ms (529.510us) - First Batch Returned: 3s272ms (50.453us) - Last Batch Returned: 3s272ms (318.528us) - Closed: 3s272ms (72.924us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 95.385us - GetResultsTime: 116.028us - HTResizeTime: 1.811us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 46.106us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 35.932us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s025ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s270ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s242ms (1s015ms) - First Batch Requested: 3s244ms (1.325ms) - First Batch Returned: 3s255ms (10.931ms) - Last Batch Returned: 3s255ms (868.000ns) - Closed: 3s270ms (15.873ms) - ConvertRowBatchTime: 6.229us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec Buffer pool: - AllocTime: 5.540us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.338us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s015ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 1s025ms - DataWaitTime: 1s025ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -149080.000ns ; Min: -149080.000ns ; Max: -149080.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 22.322us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e6 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.125 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 879.333ms (879.333ms) - Open Finished: 3s273ms (2s394ms) - First Batch Produced: 3s273ms (46.008us) - First Batch Sent: 3s274ms (16.870us) - ExecInternal Finished: 1m3s (59s749ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 1s026ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.947ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 59s749ms - ExecTreeExecTime: 254.160us - OpenTime: 2s394ms - ExecTreeOpenTime: 1s045ms - PrepareTime: 426.703us - ExecTreePrepareTime: 260.606us Hash Join Builder (join_node_id=73):(Total: 59s749ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 56.323us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 154.824us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.819us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 10.062us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s046ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s274ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s273ms (1s045ms) - First Batch Requested: 3s273ms (476.662us) - First Batch Returned: 3s273ms (41.306us) - Last Batch Returned: 3s274ms (286.728us) - Closed: 3s274ms (73.238us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 83.304us - GetResultsTime: 96.551us - HTResizeTime: 1.974us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 36.050us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 27.287us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s026ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s272ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s242ms (1s015ms) - First Batch Requested: 3s244ms (1.215ms) - First Batch Returned: 3s255ms (11.108ms) - Last Batch Returned: 3s255ms (780.000ns) - Closed: 3s272ms (17.767ms) - ConvertRowBatchTime: 6.202us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec Buffer pool: - AllocTime: 3.753us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s015ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 1s026ms - DataWaitTime: 1s026ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -56663.000ns ; Min: -56663.000ns ; Max: -56663.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 22.109us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e7 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.125 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 920.643ms (920.643ms) - Open Finished: 3s272ms (2s351ms) - First Batch Produced: 3s272ms (53.933us) - First Batch Sent: 3s272ms (19.612us) - ExecInternal Finished: 1m3s (59s742ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 1s026ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.109ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s742ms - ExecTreeExecTime: 224.684us - OpenTime: 2s351ms - ExecTreeOpenTime: 1s044ms - PrepareTime: 437.131us - ExecTreePrepareTime: 260.618us Hash Join Builder (join_node_id=73):(Total: 59s742ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 42.796us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 79.506us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.631us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6 (6) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 2 (2) AGGREGATION_NODE (id=163):(Total: 1s044ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s272ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s271ms (1s044ms) - First Batch Requested: 3s272ms (573.231us) - First Batch Returned: 3s272ms (48.324us) - Last Batch Returned: 3s272ms (231.432us) - Closed: 3s272ms (76.229us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 80.664us - GetResultsTime: 86.933us - HTResizeTime: 1.817us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 47.034us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 38.592us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s026ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s271ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s243ms (1s015ms) - First Batch Requested: 3s244ms (1.306ms) - First Batch Returned: 3s255ms (10.714ms) - Last Batch Returned: 3s255ms (720.000ns) - Closed: 3s271ms (16.010ms) - ConvertRowBatchTime: 5.789us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec Buffer pool: - AllocTime: 2.979us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.020us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s015ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 1s026ms - DataWaitTime: 1s026ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -302313.000ns ; Min: -302313.000ns ; Max: -302313.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 17.450us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 95.00 B (95) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000e8 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.125 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 978.165ms (978.165ms) - Open Finished: 3s272ms (2s294ms) - First Batch Produced: 3s272ms (54.345us) - First Batch Sent: 3s272ms (22.343us) - ExecInternal Finished: 1m3s (59s740ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 1s026ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.646ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s740ms - ExecTreeExecTime: 284.052us - OpenTime: 2s294ms - ExecTreeOpenTime: 1s044ms - PrepareTime: 26.538ms - ExecTreePrepareTime: 21.204ms Hash Join Builder (join_node_id=73):(Total: 59s741ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 63.074us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 104.733us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.451us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=163):(Total: 1s065ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s272ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s271ms (1s044ms) - First Batch Requested: 3s272ms (587.249us) - First Batch Returned: 3s272ms (48.771us) - Last Batch Returned: 3s272ms (315.828us) - Closed: 3s272ms (66.820us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 77.161us - GetResultsTime: 117.914us - HTResizeTime: 1.861us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 32.747us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.191us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=162):(Total: 1s026ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s271ms - Open Started: 2s227ms (2s227ms) - Open Finished: 3s243ms (1s015ms) - First Batch Requested: 3s244ms (1.306ms) - First Batch Returned: 3s255ms (10.882ms) - Last Batch Returned: 3s255ms (725.000ns) - Closed: 3s271ms (15.761ms) - ConvertRowBatchTime: 5.901us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 3.00 /sec Buffer pool: - AllocTime: 4.653us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.163us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s015ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 1s026ms - DataWaitTime: 1s026ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -343196.000ns ; Min: -343196.000ns ; Max: -343196.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.122us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F42:(Total: 2s446ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.66 MB, max: 5.66 MB, avg: 5.66 MB, stddev: 0 completion times: min:8s047ms max:8s047ms mean: 8s047ms stddev:0.000ns execution rates: min:720.51 KB/sec max:720.51 KB/sec mean:720.51 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.88 MB (4072554) - PeakReservation: 3.19 MB (3342336) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 40 (40) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.066ms - TotalStorageWaitTime: 27.691ms - TotalThreadsInvoluntaryContextSwitches: 268 (268) - TotalThreadsTotalWallClockTime: 2s433ms - TotalThreadsSysTime: 3.892ms - TotalThreadsUserTime: 528.395ms - TotalThreadsVoluntaryContextSwitches: 62 (62) Fragment Instance Lifecycle Timings: - ExecTime: 35.499ms - ExecTreeExecTime: 4.805ms - OpenTime: 2s397ms - ExecTreeOpenTime: 305.785ms - PrepareTime: 13.765ms - ExecTreePrepareTime: 13.396ms KrpcDataStreamSender (dst_id=162):(Total: 30.797ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 89.44 KB (91584) - RowsSent: 40 (40) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 82.586us - TotalBytesSent: 1013.00 B (1013) - UncompressedRowBatchSize: 1.76 KB (1800) AGGREGATION_NODE (id=72):(Total: 323.974ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.10 MB (2202752) - RowsReturned: 40 (40) - RowsReturnedRate: 123.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 439.344us - HTResizeTime: 333.307us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 40 (40) - StreamingTime: 696.643us Buffer pool: - AllocTime: 104.735us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 80.317us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.04K (1039) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=71):(Total: 307.927ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 99.12 KB (101504) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 112.328us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 3.37 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=70):(Total: 297.165ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.574us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 3.50 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=67):(Total: 296.469ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 924.19 KB (946371) - BytesReadDataNodeCache: 0 - BytesReadLocal: 924.19 KB (946371) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 924.19 KB (946371) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 254.573us - MaterializeTupleTime: 165.168ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.79 MB (1872733) - PerReadThreadRawHdfsThroughput: 375.62 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 71.76K (71763) - RowsReturned: 1.04K (1039) - RowsReturnedRate: 3.50 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 27.691ms - TotalRawHdfsOpenFileTime: 30.676us - TotalRawHdfsReadTime: 2.402ms - TotalReadThroughput: 369.68 KB/sec Buffer pool: - AllocTime: 42.873us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.31 MB (1376256) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.19 MB (1245184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.19 MB (1245184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.244us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 36 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 71.76K (71763) - Rows rejected: 3.13K (3130) - Rows total: 71.76K (71763) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 38 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 68.63K (68633) - Rows rejected: 67.59K (67594) - Rows total: 68.63K (68633) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F42: Instance 50467cb8e73eeac4:853461b4000000dc (host=tarmstrong-Precision-7540:22001):(Total: 2s446ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.936 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.66 MB Fragment Instance Lifecycle Event Timeline: 3s273ms - Prepare Finished: 822.343ms (822.343ms) - Open Finished: 3s219ms (2s397ms) - First Batch Produced: 3s224ms (4.116ms) - First Batch Sent: 3s224ms (3.569us) - ExecInternal Finished: 3s273ms (49.361ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 1.90 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.88 MB (4072554) - PeakReservation: 3.19 MB (3342336) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 40 (40) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.066ms - TotalStorageWaitTime: 27.691ms - TotalThreadsInvoluntaryContextSwitches: 268 (268) - TotalThreadsTotalWallClockTime: 2s433ms - TotalThreadsSysTime: 3.892ms - TotalThreadsUserTime: 528.395ms - TotalThreadsVoluntaryContextSwitches: 62 (62) Fragment Instance Lifecycle Timings: - ExecTime: 35.499ms - ExecTreeExecTime: 4.805ms - OpenTime: 2s397ms - ExecTreeOpenTime: 305.785ms - PrepareTime: 13.765ms - ExecTreePrepareTime: 13.396ms KrpcDataStreamSender (dst_id=162):(Total: 30.797ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 51.48 KB/sec ; Min: 6.99 KB/sec ; Max: 227.96 KB/sec ; Number of samples: 12) - RpcNetworkTime: (Avg: 2.629ms ; Min: 386.614us ; Max: 5.430ms ; Number of samples: 24) - RpcRecvrTime: (Avg: -144562.000ns ; Min: -369834.000ns ; Max: -56032.000ns ; Number of samples: 24) - EosSent: 12 (12) - PeakMemoryUsage: 89.44 KB (91584) - RowsSent: 40 (40) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 82.586us - TotalBytesSent: 1013.00 B (1013) - UncompressedRowBatchSize: 1.76 KB (1800) AGGREGATION_NODE (id=72):(Total: 323.974ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s225ms - Open Started: 2s914ms (2s914ms) - Open Finished: 3s219ms (305.780ms) - First Batch Requested: 3s219ms (37.995us) - First Batch Returned: 3s224ms (4.110ms) - Last Batch Returned: 3s224ms (856.941us) - Closed: 3s225ms (62.743us) - PeakMemoryUsage: 2.10 MB (2202752) - RowsReturned: 40 (40) - RowsReturnedRate: 123.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 439.344us - HTResizeTime: 333.307us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 40 (40) - StreamingTime: 696.643us Buffer pool: - AllocTime: 104.735us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 80.317us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.04K (1039) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=71):(Total: 307.927ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s224ms - Open Started: 2s914ms (2s914ms) - Waiting for builder: 3s218ms (304.566ms) - Initial build available: 3s218ms (8.345us) - Open Finished: 3s218ms (140.653us) - First Batch Requested: 3s220ms (1.110ms) - First Batch Returned: 3s220ms (110.072us) - Last Batch Returned: 3s223ms (3.216ms) - Closed: 3s224ms (693.737us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 99.12 KB (101504) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 112.328us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 3.37 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=70):(Total: 297.165ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s224ms - Open Started: 2s914ms (2s914ms) - Waiting for builder: 2s914ms (295.448us) - Initial build available: 2s914ms (4.252us) - Open Finished: 3s209ms (295.298ms) - First Batch Requested: 3s218ms (9.002ms) - First Batch Returned: 3s218ms (89.325us) - Last Batch Returned: 3s221ms (2.911ms) - Closed: 3s224ms (2.213ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.574us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 3.50 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=67):(Total: 296.469ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.66 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 942ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s224ms - Closed: 3s224ms (3s224ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 924.19 KB - FooterProcessingTime: (Avg: 16.492ms ; Min: 16.492ms ; Max: 16.492ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 125.72 KB (128735) ; Min: 55.96 KB (57304) ; Max: 173.40 KB (177560) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 50.29 KB (51494) ; Min: 11.41 KB (11688) ; Max: 67.55 KB (69170) ; Number of samples: 10) - ParquetRowGroupActualReservation: (Avg: 1.19 MB (1245184) ; Min: 1.19 MB (1245184) ; Max: 1.19 MB (1245184) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 1.19 MB (1245184) ; Min: 1.19 MB (1245184) ; Max: 1.19 MB (1245184) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 127.59 KB (130652) ; Min: 58.04 KB (59435) ; Max: 175.16 KB (179365) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 51.04 KB (52261) ; Min: 11.43 KB (11706) ; Max: 68.84 KB (70495) ; Number of samples: 10) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 924.19 KB (946371) - BytesReadDataNodeCache: 0 - BytesReadLocal: 924.19 KB (946371) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 924.19 KB (946371) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 254.573us - MaterializeTupleTime: 165.168ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.79 MB (1872733) - PerReadThreadRawHdfsThroughput: 375.62 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 71.76K (71763) - RowsReturned: 1.04K (1039) - RowsReturnedRate: 3.50 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 27.691ms - TotalRawHdfsOpenFileTime: 30.676us - TotalRawHdfsReadTime: 2.402ms - TotalReadThroughput: 369.68 KB/sec Buffer pool: - AllocTime: 42.873us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.31 MB (1376256) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.19 MB (1245184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.19 MB (1245184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.244us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 36 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 71.76K (71763) - Rows rejected: 3.13K (3130) - Rows total: 71.76K (71763) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 38 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 68.63K (68633) - Rows rejected: 67.59K (67594) - Rows total: 68.63K (68633) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F96:(Total: 2s434ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s044ms max:8s044ms mean: 8s044ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 13.016us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 102 (102) - TotalThreadsTotalWallClockTime: 2s433ms - TotalThreadsSysTime: 3.791ms - TotalThreadsUserTime: 159.224ms - TotalThreadsVoluntaryContextSwitches: 33 (33) Fragment Instance Lifecycle Timings: - ExecTime: 1s527ms - ExecTreeExecTime: 64.003us - OpenTime: 906.151ms - ExecTreeOpenTime: 11.214us - PrepareTime: 278.507us - ExecTreePrepareTime: 129.407us Hash Join Builder (join_node_id=71):(Total: 1s528ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 20.663ms - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 435.782us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 20.428ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.407ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.10K (1099) - Resizes: 0 (0) - Travel: 613 (613) EXCHANGE_NODE (id=161):(Total: 72.897us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 45.801us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 823.08 K/sec Buffer pool: - AllocTime: 4.436us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.315us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 11.499us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 23.410us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F96: Instance 50467cb8e73eeac4:853461b4000000ea (host=tarmstrong-Precision-7540:22001):(Total: 2s434ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.933 Fragment Instance Lifecycle Event Timeline: 3s223ms - Prepare Finished: 789.386ms (789.386ms) - Open Finished: 1s695ms (906.163ms) - First Batch Produced: 1s695ms (68.724us) - First Batch Sent: 1s716ms (20.668ms) - ExecInternal Finished: 3s223ms (1s507ms) - MemoryUsage (500.000ms): 33.12 KB, 7.78 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 13.016us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 102 (102) - TotalThreadsTotalWallClockTime: 2s433ms - TotalThreadsSysTime: 3.791ms - TotalThreadsUserTime: 159.224ms - TotalThreadsVoluntaryContextSwitches: 33 (33) Fragment Instance Lifecycle Timings: - ExecTime: 1s527ms - ExecTreeExecTime: 64.003us - OpenTime: 906.151ms - ExecTreeOpenTime: 11.214us - PrepareTime: 278.507us - ExecTreePrepareTime: 129.407us Hash Join Builder (join_node_id=71):(Total: 1s528ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 20.663ms - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 435.782us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 20.428ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 20.407ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.10K (1099) - Resizes: 0 (0) - Travel: 613 (613) EXCHANGE_NODE (id=161):(Total: 72.897us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s716ms - Open Started: 1s694ms (1s694ms) - Open Finished: 1s694ms (8.547us) - First Batch Requested: 1s695ms (921.023us) - First Batch Returned: 1s695ms (61.208us) - Last Batch Returned: 1s695ms (460.000ns) - Closed: 1s716ms (20.751ms) - ConvertRowBatchTime: 45.801us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 823.08 K/sec Buffer pool: - AllocTime: 4.436us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.315us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 780.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 11.499us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 484.00 B, 484.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -61632.000ns ; Min: -61632.000ns ; Max: -61632.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.410us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F44:(Total: 221.243ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.56 KB, max: 5.56 KB, avg: 5.56 KB, stddev: 0 completion times: min:8s044ms max:8s044ms mean: 8s044ms stddev:0.000ns execution rates: min:708.00 B/sec max:708.00 B/sec mean:708.00 B/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.08 - PeakMemoryUsage: 54.83 KB (56144) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 280.768us - TotalStorageWaitTime: 8.762ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 220.743ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.968ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 14.320ms - ExecTreeExecTime: 13.876ms - OpenTime: 206.430ms - ExecTreeOpenTime: 195.664us - PrepareTime: 409.667us - ExecTreePrepareTime: 152.048us KrpcDataStreamSender (dst_id=161):(Total: 456.836us, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.523us - TotalBytesSent: 484.00 B (484) - UncompressedRowBatchSize: 780.00 B (780) HDFS_SCAN_NODE (id=69):(Total: 14.258ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.725us - MaterializeTupleTime: 19.017us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 7.23 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 4.21 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 8.762ms - TotalRawHdfsOpenFileTime: 19.932us - TotalRawHdfsReadTime: 795.065us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 8.192us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.255us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F44: Instance 50467cb8e73eeac4:853461b4000000e9 (host=tarmstrong-Precision-7540:22001):(Total: 221.243ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.933 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB Fragment Instance Lifecycle Event Timeline: 987.511ms - Prepare Finished: 766.695ms (766.695ms) - Open Finished: 973.133ms (206.438ms) - First Batch Produced: 986.892ms (13.758ms) - First Batch Sent: 986.962ms (69.964us) - ExecInternal Finished: 987.511ms (548.808us) - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.08 - PeakMemoryUsage: 54.83 KB (56144) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 280.768us - TotalStorageWaitTime: 8.762ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 220.743ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.968ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 14.320ms - ExecTreeExecTime: 13.876ms - OpenTime: 206.430ms - ExecTreeOpenTime: 195.664us - PrepareTime: 409.667us - ExecTreePrepareTime: 152.048us KrpcDataStreamSender (dst_id=161):(Total: 456.836us, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - NetworkThroughput: (Avg: 1.24 MB/sec ; Min: 1.24 MB/sec ; Max: 1.24 MB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 336.985us ; Min: 301.375us ; Max: 372.596us ; Number of samples: 2) - RpcRecvrTime: (Avg: -67646.000ns ; Min: -92613.000ns ; Max: -42680.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 23.523us - TotalBytesSent: 484.00 B (484) - UncompressedRowBatchSize: 780.00 B (780) HDFS_SCAN_NODE (id=69):(Total: 14.258ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_page Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 987.143ms - Closed: 987.143ms (987.143ms) - FooterProcessingTime: (Avg: 8.485ms ; Min: 8.485ms ; Max: 8.485ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.725us - MaterializeTupleTime: 19.017us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 7.23 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 4.21 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 8.762ms - TotalRawHdfsOpenFileTime: 19.932us - TotalRawHdfsReadTime: 795.065us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 8.192us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.255us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F97:(Total: 2s497ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s054ms max:8s054ms mean: 8s054ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 410.996ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 49 (49) - TotalThreadsTotalWallClockTime: 2s489ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 158.460ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 1s482ms - ExecTreeExecTime: 9.536ms - OpenTime: 1s007ms - ExecTreeOpenTime: 401.506ms - PrepareTime: 5.796ms - ExecTreePrepareTime: 142.201us Hash Join Builder (join_node_id=70):(Total: 1s477ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 208.905us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 408.854us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 43.862us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.246us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.07K (1070) - Resizes: 0 (0) - Travel: 553 (553) EXCHANGE_NODE (id=160):(Total: 411.040ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 25.199us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 75.00 /sec Buffer pool: - AllocTime: 4.437us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 401.493ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 410.994ms - DataWaitTime: 410.981ms Enqueue: - DeserializeRowBatchTime: 28.961us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F97: Instance 50467cb8e73eeac4:853461b4000000ec (host=tarmstrong-Precision-7540:22001):(Total: 2s497ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.943 Fragment Instance Lifecycle Event Timeline: 3s223ms - Prepare Finished: 733.648ms (733.648ms) - Open Finished: 1s741ms (1s007ms) - First Batch Produced: 1s750ms (9.542ms) - First Batch Sent: 1s750ms (213.144us) - ExecInternal Finished: 3s223ms (1s472ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 410.996ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 49 (49) - TotalThreadsTotalWallClockTime: 2s489ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 158.460ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 1s482ms - ExecTreeExecTime: 9.536ms - OpenTime: 1s007ms - ExecTreeOpenTime: 401.506ms - PrepareTime: 5.796ms - ExecTreePrepareTime: 142.201us Hash Join Builder (join_node_id=70):(Total: 1s477ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 208.905us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 408.854us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 43.862us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.246us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.07K (1070) - Resizes: 0 (0) - Travel: 553 (553) EXCHANGE_NODE (id=160):(Total: 411.040ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s750ms - Open Started: 1s334ms (1s334ms) - Open Finished: 1s736ms (401.502ms) - First Batch Requested: 1s741ms (4.864ms) - First Batch Returned: 1s750ms (9.532ms) - Last Batch Returned: 1s750ms (854.000ns) - Closed: 1s750ms (272.501us) - ConvertRowBatchTime: 25.199us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 75.00 /sec Buffer pool: - AllocTime: 4.437us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 401.493ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 410.994ms - DataWaitTime: 410.981ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -67169.000ns ; Min: -67169.000ns ; Max: -67169.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 28.961us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F43:(Total: 1s078ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s051ms max:8s051ms mean: 8s051ms stddev:0.000ns execution rates: min:273.98 KB/sec max:273.98 KB/sec mean:273.98 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.761ms - TotalStorageWaitTime: 10.568us - TotalThreadsInvoluntaryContextSwitches: 213 (213) - TotalThreadsTotalWallClockTime: 1s078ms - TotalThreadsSysTime: 3.518ms - TotalThreadsUserTime: 212.777ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 145.983ms - ExecTreeExecTime: 127.956ms - OpenTime: 932.585ms - ExecTreeOpenTime: 282.509us - PrepareTime: 319.869us - ExecTreePrepareTime: 151.660us KrpcDataStreamSender (dst_id=160):(Total: 3.939ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 27.875us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=68):(Total: 128.427ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 24.962us - MaterializeTupleTime: 73.616ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 148.43 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 241.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.568us - TotalRawHdfsOpenFileTime: 45.687us - TotalRawHdfsReadTime: 2.871ms - TotalReadThroughput: 290.97 KB/sec Buffer pool: - AllocTime: 11.602ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.591ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F43: Instance 50467cb8e73eeac4:853461b4000000eb (host=tarmstrong-Precision-7540:22001):(Total: 1s078ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.940 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s754ms - Prepare Finished: 675.638ms (675.638ms) - Open Finished: 1s608ms (932.595ms) - First Batch Produced: 1s735ms (127.677ms) - First Batch Sent: 1s735ms (79.750us) - ExecInternal Finished: 1s754ms (18.325ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB, 2.22 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.761ms - TotalStorageWaitTime: 10.568us - TotalThreadsInvoluntaryContextSwitches: 213 (213) - TotalThreadsTotalWallClockTime: 1s078ms - TotalThreadsSysTime: 3.518ms - TotalThreadsUserTime: 212.777ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 145.983ms - ExecTreeExecTime: 127.956ms - OpenTime: 932.585ms - ExecTreeOpenTime: 282.509us - PrepareTime: 319.869us - ExecTreePrepareTime: 151.660us KrpcDataStreamSender (dst_id=160):(Total: 3.939ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 432.43 KB/sec ; Min: 432.43 KB/sec ; Max: 432.43 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 676.173us ; Min: 367.731us ; Max: 984.616us ; Number of samples: 2) - RpcRecvrTime: (Avg: -89200.000ns ; Min: -108730.000ns ; Max: -69670.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 27.875us - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=68):(Total: 128.427ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s750ms - Closed: 1s750ms (1s750ms) - BytesReadSeries (500.000ms): 0, 0, 436.46 KB - FooterProcessingTime: (Avg: 274.176us ; Min: 274.176us ; Max: 274.176us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 5.213ms ; Min: 5.213ms ; Max: 5.213ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 24.962us - MaterializeTupleTime: 73.616ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 148.43 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 241.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.568us - TotalRawHdfsOpenFileTime: 45.687us - TotalRawHdfsReadTime: 2.871ms - TotalReadThroughput: 290.97 KB/sec Buffer pool: - AllocTime: 11.602ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.591ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F98:(Total: 21s822ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s252ms max:1m3s mean: 25s593ms stddev:26s618ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 243.786ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 100 (100) - TotalThreadsTotalWallClockTime: 21s821ms - TotalThreadsSysTime: 1.339ms - TotalThreadsUserTime: 157.892ms - TotalThreadsVoluntaryContextSwitches: 21 (21) Fragment Instance Lifecycle Timings: - ExecTime: 21s020ms - ExecTreeExecTime: 243.807ms - OpenTime: 801.504ms - ExecTreeOpenTime: 11.730us - PrepareTime: 336.208us - ExecTreePrepareTime: 152.238us Hash Join Builder (join_node_id=43):(Total: 20s782ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 273.062us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 317.407us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 150.355us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 138.803us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 19.77K (19775) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=142):(Total: 243.816ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 12.406us - PeakMemoryUsage: 16.06 KB (16449) - RowsReturned: 12 (12) - RowsReturnedRate: 104.81 K/sec Buffer pool: - AllocTime: 7.415us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.863us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 243.784ms - DataWaitTime: 243.769ms Enqueue: - DeserializeRowBatchTime: 26.857us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 10.997us - TotalRPCsDeferred: 0 (0) Fragment F98: Instance 50467cb8e73eeac4:853461b4000000ee (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 656.886ms (656.886ms) - Open Finished: 1s641ms (984.774ms) - First Batch Produced: 1s952ms (311.175ms) - First Batch Sent: 1s953ms (467.051us) - ExecInternal Finished: 1m2s (1m) - MemoryUsage (1s000ms): 25.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 311.143ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 190 (190) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 163.192ms - TotalThreadsVoluntaryContextSwitches: 49 (49) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 311.166ms - OpenTime: 984.750ms - ExecTreeOpenTime: 12.800us - PrepareTime: 344.148us - ExecTreePrepareTime: 155.466us Hash Join Builder (join_node_id=43):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 463.305us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 330.640us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 337.453us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 325.021us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 19.08K (19077) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=142):(Total: 311.176ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s953ms - Open Started: 1s624ms (1s624ms) - Open Finished: 1s624ms (10.200us) - First Batch Requested: 1s641ms (17.212ms) - First Batch Returned: 1s952ms (311.162ms) - Last Batch Returned: 1s952ms (943.000ns) - Closed: 1s953ms (572.446us) - ConvertRowBatchTime: 13.196us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 38.00 /sec Buffer pool: - AllocTime: 4.362us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 156.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 311.141ms - DataWaitTime: 311.123ms Enqueue: - BytesReceived (500.000ms): 0, 100.00 B, 100.00 B - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -50659.000ns ; Min: -50659.000ns ; Max: -50659.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.713us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000ef (host=tarmstrong-Precision-7540:22000):(Total: 1s676ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.200 Fragment Instance Lifecycle Event Timeline: 3s617ms - Prepare Finished: 1s941ms (1s941ms) - Open Finished: 2s552ms (611.110ms) - First Batch Produced: 2s552ms (34.925us) - First Batch Sent: 2s552ms (166.955us) - ExecInternal Finished: 3s617ms (1s065ms) - MemoryUsage (500.000ms): 33.12 KB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 13.485us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 46 (46) - TotalThreadsTotalWallClockTime: 1s675ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 157.904ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 1s064ms - ExecTreeExecTime: 30.264us - OpenTime: 611.099ms - ExecTreeOpenTime: 10.211us - PrepareTime: 365.209us - ExecTreePrepareTime: 165.852us Hash Join Builder (join_node_id=43):(Total: 1s065ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 164.480us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 299.317us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 50.339us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 39.802us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 18.73K (18728) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=142):(Total: 38.174us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s552ms - Open Started: 2s551ms (2s551ms) - Open Finished: 2s551ms (7.661us) - First Batch Requested: 2s552ms (1.000ms) - First Batch Returned: 2s552ms (27.477us) - Last Batch Returned: 2s552ms (485.000ns) - Closed: 2s552ms (228.672us) - ConvertRowBatchTime: 11.591us - PeakMemoryUsage: 16.19 KB (16580) - RowsReturned: 12 (12) - RowsReturnedRate: 314.35 K/sec Buffer pool: - AllocTime: 11.061us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.275us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 11.327us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 100.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 33.704us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 1 (1) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 32.991us - TotalRPCsDeferred: 1 (1) Instance 50467cb8e73eeac4:853461b4000000f0 (host=tarmstrong-Precision-7540:22002):(Total: 1s623ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.123 Fragment Instance Lifecycle Event Timeline: 2s389ms - Prepare Finished: 765.355ms (765.355ms) - Open Finished: 1s574ms (808.673ms) - First Batch Produced: 1s994ms (420.230ms) - First Batch Sent: 1s994ms (197.820us) - ExecInternal Finished: 2s389ms (394.662ms) - MemoryUsage (500.000ms): 33.12 KB, 7.78 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 420.202ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 66 (66) - TotalThreadsTotalWallClockTime: 1s623ms - TotalThreadsSysTime: 4.017ms - TotalThreadsUserTime: 152.580ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 814.930ms - ExecTreeExecTime: 420.224ms - OpenTime: 808.662ms - ExecTreeOpenTime: 12.179us - PrepareTime: 299.268us - ExecTreePrepareTime: 135.398us Hash Join Builder (join_node_id=43):(Total: 395.703ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 191.403us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 322.266us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 63.274us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 51.588us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 21.52K (21521) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=142):(Total: 420.234ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s994ms - Open Started: 1s572ms (1s572ms) - Open Finished: 1s572ms (9.038us) - First Batch Requested: 1s574ms (1.116ms) - First Batch Returned: 1s994ms (420.218ms) - Last Batch Returned: 1s994ms (1.535us) - Closed: 1s994ms (273.989us) - ConvertRowBatchTime: 12.431us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 28.00 /sec Buffer pool: - AllocTime: 6.823us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.315us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 156.00 B - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 420.200ms - DataWaitTime: 420.185ms Enqueue: - BytesReceived (500.000ms): 100.00 B, 100.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -70864.000ns ; Min: -70864.000ns ; Max: -70864.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.154us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F26:(Total: 1s320ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.93 KB, max: 9.93 KB, avg: 9.93 KB, stddev: 0 completion times: min:8s061ms max:8s061ms mean: 8s061ms stddev:0.000ns execution rates: min:1.23 KB/sec max:1.23 KB/sec mean:1.23 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.03 - PeakMemoryUsage: 113.83 KB (116560) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1s102ms - TotalStorageWaitTime: 5.555us - TotalThreadsInvoluntaryContextSwitches: 36 (36) - TotalThreadsTotalWallClockTime: 1s320ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 40.433ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 1s104ms - ExecTreeExecTime: 1.704ms - OpenTime: 215.503ms - ExecTreeOpenTime: 225.352us - PrepareTime: 262.563us - ExecTreePrepareTime: 103.191us KrpcDataStreamSender (dst_id=142):(Total: 1s103ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 76.78 KB (78624) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.759us - TotalBytesSent: 300.00 B (300) - UncompressedRowBatchSize: 468.00 B (468) HDFS_SCAN_NODE (id=41):(Total: 2.053ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 11.433us - MaterializeTupleTime: 20.754us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 13.90 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 5.84 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 5.555us - TotalRawHdfsOpenFileTime: 17.726us - TotalRawHdfsReadTime: 704.499us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.927us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F26: Instance 50467cb8e73eeac4:853461b4000000ed (host=tarmstrong-Precision-7540:22001):(Total: 1s320ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.950 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB Fragment Instance Lifecycle Event Timeline: 1s953ms - Prepare Finished: 632.549ms (632.549ms) - Open Finished: 848.061ms (215.511ms) - First Batch Produced: 849.584ms (1.522ms) - First Batch Sent: 850.350ms (766.654us) - ExecInternal Finished: 1s953ms (1s103ms) - MemoryUsage (500.000ms): 84.78 KB, 84.78 KB, 84.78 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.03 - PeakMemoryUsage: 113.83 KB (116560) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1s102ms - TotalStorageWaitTime: 5.555us - TotalThreadsInvoluntaryContextSwitches: 36 (36) - TotalThreadsTotalWallClockTime: 1s320ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 40.433ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 1s104ms - ExecTreeExecTime: 1.704ms - OpenTime: 215.503ms - ExecTreeOpenTime: 225.352us - PrepareTime: 262.563us - ExecTreePrepareTime: 103.191us KrpcDataStreamSender (dst_id=142):(Total: 1s103ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 200.00 B, 200.00 B - NetworkThroughput: (Avg: 182.40 KB/sec ; Min: 45.00 B/sec ; Max: 336.23 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 551.372ms ; Min: 290.444us ; Max: 2s204ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -183722995.000ns ; Min: -1101984042.000ns ; Max: -46959.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 76.78 KB (78624) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.759us - TotalBytesSent: 300.00 B (300) - UncompressedRowBatchSize: 468.00 B (468) HDFS_SCAN_NODE (id=41):(Total: 2.053ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 850.597ms - Closed: 850.597ms (850.597ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 306.295us ; Min: 306.295us ; Max: 306.295us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 11.433us - MaterializeTupleTime: 20.754us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 13.90 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 5.84 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 5.555us - TotalRawHdfsOpenFileTime: 17.726us - TotalRawHdfsReadTime: 704.499us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.927us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F99:(Total: 22s049ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s259ms max:1m3s mean: 25s595ms stddev:26s616ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 786.618ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 228 (228) - TotalThreadsTotalWallClockTime: 22s049ms - TotalThreadsSysTime: 1.519ms - TotalThreadsUserTime: 159.623ms - TotalThreadsVoluntaryContextSwitches: 27 (27) Fragment Instance Lifecycle Timings: - ExecTime: 20s814ms - ExecTreeExecTime: 173.131ms - OpenTime: 1s234ms - ExecTreeOpenTime: 613.530ms - PrepareTime: 338.973us - ExecTreePrepareTime: 171.893us Hash Join Builder (join_node_id=42):(Total: 20s652ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 6.337ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 455.556us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.157ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.141ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 318.07K (318068) - Resizes: 0 (0) - Travel: 232.67K (232672) EXCHANGE_NODE (id=141):(Total: 786.659ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 23.177us - PeakMemoryUsage: 16.17 KB (16562) - RowsReturned: 31 (31) - RowsReturnedRate: 203.64 K/sec Buffer pool: - AllocTime: 5.018us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 613.515ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 786.615ms - DataWaitTime: 786.604ms Enqueue: - DeserializeRowBatchTime: 37.640us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 7.650us - TotalRPCsDeferred: 0 (0) Fragment F99: Instance 50467cb8e73eeac4:853461b4000000f2 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 602.382ms (602.382ms) - Open Finished: 1s816ms (1s214ms) - First Batch Produced: 2s087ms (270.928ms) - First Batch Sent: 2s098ms (10.834ms) - ExecInternal Finished: 1m2s (1m) - MemoryUsage (1s000ms): 17.12 KB, 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 549.492ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 189 (189) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 4.557ms - TotalThreadsUserTime: 159.241ms - TotalThreadsVoluntaryContextSwitches: 44 (44) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 270.923ms - OpenTime: 1s214ms - ExecTreeOpenTime: 278.616ms - PrepareTime: 364.350us - ExecTreePrepareTime: 149.336us Hash Join Builder (join_node_id=42):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 10.829ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 424.195us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.646ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 10.629ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 913.92K (913918) - Resizes: 0 (0) - Travel: 677.13K (677126) EXCHANGE_NODE (id=141):(Total: 549.535ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s098ms - Open Started: 1s537ms (1s537ms) - Open Finished: 1s815ms (278.612ms) - First Batch Requested: 1s816ms (983.715us) - First Batch Returned: 2s087ms (270.918ms) - Last Batch Returned: 2s087ms (844.000ns) - Closed: 2s098ms (10.904ms) - ConvertRowBatchTime: 24.300us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 56.00 /sec Buffer pool: - AllocTime: 4.302us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 278.599ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 549.489ms - DataWaitTime: 549.477ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -141778.000ns ; Min: -141778.000ns ; Max: -141778.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 46.634us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000f4 (host=tarmstrong-Precision-7540:22002):(Total: 2s386ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.129 Fragment Instance Lifecycle Event Timeline: 2s389ms - Prepare Finished: 2.880ms (2.880ms) - Open Finished: 1s871ms (1s868ms) - First Batch Produced: 2s119ms (248.434ms) - First Batch Sent: 2s127ms (7.963ms) - ExecInternal Finished: 2s389ms (261.256ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s810ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 450 (450) - TotalThreadsTotalWallClockTime: 2s386ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.273ms - TotalThreadsVoluntaryContextSwitches: 15 (15) Fragment Instance Lifecycle Timings: - ExecTime: 517.504ms - ExecTreeExecTime: 248.430ms - OpenTime: 1s868ms - ExecTreeOpenTime: 1s561ms - PrepareTime: 223.881us - ExecTreePrepareTime: 110.787us Hash Join Builder (join_node_id=42):(Total: 269.960ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 7.954ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 408.829us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.758ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.739ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 21.54K (21540) - Resizes: 0 (0) - Travel: 11.46K (11457) EXCHANGE_NODE (id=141):(Total: 1s810ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s127ms - Open Started: 308.533ms (308.533ms) - Open Finished: 1s870ms (1s561ms) - First Batch Requested: 1s871ms (993.980us) - First Batch Returned: 2s119ms (248.426ms) - Last Batch Returned: 2s119ms (832.000ns) - Closed: 2s127ms (8.024ms) - ConvertRowBatchTime: 22.295us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 17.00 /sec Buffer pool: - AllocTime: 4.569us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0 - FirstBatchWaitTime: 1s561ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s810ms - DataWaitTime: 1s810ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0 - DispatchTime: (Avg: -64973.000ns ; Min: -64973.000ns ; Max: -64973.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 30.959us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000f3 (host=tarmstrong-Precision-7540:22000):(Total: 1s541ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.199 Fragment Instance Lifecycle Event Timeline: 3s617ms - Prepare Finished: 2s076ms (2s076ms) - Open Finished: 2s696ms (619.542ms) - First Batch Produced: 2s696ms (47.469us) - First Batch Sent: 2s696ms (230.754us) - ExecInternal Finished: 3s617ms (921.160ms) - MemoryUsage (500.000ms): 33.12 KB, 7.78 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 12.477us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 45 (45) - TotalThreadsTotalWallClockTime: 1s540ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 160.355ms - TotalThreadsVoluntaryContextSwitches: 23 (23) Fragment Instance Lifecycle Timings: - ExecTime: 921.265ms - ExecTreeExecTime: 41.625us - OpenTime: 619.528ms - ExecTreeOpenTime: 12.369us - PrepareTime: 428.688us - ExecTreePrepareTime: 255.558us Hash Join Builder (join_node_id=42):(Total: 951.070ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 227.890us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 533.644us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 67.855us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 54.873us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 18.75K (18747) - Resizes: 0 (0) - Travel: 9.44K (9435) EXCHANGE_NODE (id=141):(Total: 50.750us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s696ms - Open Started: 2s666ms (2s666ms) - Open Finished: 2s666ms (9.027us) - First Batch Requested: 2s696ms (29.973ms) - First Batch Returned: 2s696ms (37.982us) - Last Batch Returned: 2s696ms (489.000ns) - Closed: 2s696ms (310.653us) - ConvertRowBatchTime: 22.936us - PeakMemoryUsage: 16.52 KB (16918) - RowsReturned: 31 (31) - RowsReturnedRate: 610.84 K/sec Buffer pool: - AllocTime: 6.184us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 1.06 KB - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 10.544us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 436.00 B, 436.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 35.328us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 1 (1) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 22.950us - TotalRPCsDeferred: 1 (1) Averaged Fragment F25:(Total: 1s502ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s045ms max:8s045ms mean: 8s045ms stddev:0.000ns execution rates: min:274.20 KB/sec max:274.20 KB/sec mean:274.20 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 234.570ms - TotalStorageWaitTime: 5.864ms - TotalThreadsInvoluntaryContextSwitches: 126 (126) - TotalThreadsTotalWallClockTime: 1s502ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 215.890ms - TotalThreadsVoluntaryContextSwitches: 58 (58) Fragment Instance Lifecycle Timings: - ExecTime: 369.141ms - ExecTreeExecTime: 111.618ms - OpenTime: 1s133ms - ExecTreeOpenTime: 12.604ms - PrepareTime: 325.347us - ExecTreePrepareTime: 149.722us KrpcDataStreamSender (dst_id=141):(Total: 271.173ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 33.526us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=40):(Total: 124.411ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 25.403us - MaterializeTupleTime: 60.144ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 172.26 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 249.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 5.864ms - TotalRawHdfsOpenFileTime: 41.363us - TotalRawHdfsReadTime: 2.474ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 16.714us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.968us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F25: Instance 50467cb8e73eeac4:853461b4000000f1 (host=tarmstrong-Precision-7540:22001):(Total: 1s502ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.934 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 2s101ms - Prepare Finished: 585.461ms (585.461ms) - Open Finished: 1s718ms (1s133ms) - First Batch Produced: 1s815ms (96.555ms) - First Batch Sent: 1s838ms (22.742ms) - ExecInternal Finished: 2s101ms (263.671ms) - MemoryUsage (500.000ms): 30.57 KB, 30.57 KB, 30.57 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 234.570ms - TotalStorageWaitTime: 5.864ms - TotalThreadsInvoluntaryContextSwitches: 126 (126) - TotalThreadsTotalWallClockTime: 1s502ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 215.890ms - TotalThreadsVoluntaryContextSwitches: 58 (58) Fragment Instance Lifecycle Timings: - ExecTime: 369.141ms - ExecTreeExecTime: 111.618ms - OpenTime: 1s133ms - ExecTreeOpenTime: 12.604ms - PrepareTime: 325.347us - ExecTreePrepareTime: 149.722us KrpcDataStreamSender (dst_id=141):(Total: 271.173ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 543.34 KB/sec ; Min: 874.00 B/sec ; Max: 1.02 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 125.003ms ; Min: 407.992us ; Max: 498.354ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -41607503.000ns ; Min: -249067503.000ns ; Max: -53001.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 33.526us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=40):(Total: 124.411ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s853ms - Closed: 1s853ms (1s853ms) - BytesReadSeries (500.000ms): 0, 0, 0 - FooterProcessingTime: (Avg: 1.076ms ; Min: 1.076ms ; Max: 1.076ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 766.216us ; Min: 766.216us ; Max: 766.216us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 25.403us - MaterializeTupleTime: 60.144ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 172.26 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 249.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 5.864ms - TotalRawHdfsOpenFileTime: 41.363us - TotalRawHdfsReadTime: 2.474ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 16.714us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.968us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F100:(Total: 22s780ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:6s259ms max:1m3s mean: 25s599ms stddev:26s613ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 743.395ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 133 (133) - TotalThreadsTotalWallClockTime: 22s777ms - TotalThreadsSysTime: 5.155ms - TotalThreadsUserTime: 154.788ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 21s417ms - ExecTreeExecTime: 3.739ms - OpenTime: 1s360ms - ExecTreeOpenTime: 739.699ms - PrepareTime: 2.070ms - ExecTreePrepareTime: 1.911ms Hash Join Builder (join_node_id=54):(Total: 21s416ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 227.732us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 481.062us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 63.332us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 49.893us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 228.24K (228238) - Resizes: 0 (0) - Travel: 135.20K (135200) EXCHANGE_NODE (id=149):(Total: 743.436ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 23.747us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 108.00 /sec Buffer pool: - AllocTime: 5.417us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.099us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 739.685ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 743.392ms - DataWaitTime: 743.381ms Enqueue: - DeserializeRowBatchTime: 30.335us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F100: Instance 50467cb8e73eeac4:853461b4000000f6 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 551.745ms (551.745ms) - Open Finished: 1s612ms (1s060ms) - First Batch Produced: 1s612ms (42.320us) - First Batch Sent: 1s612ms (186.825us) - ExecInternal Finished: 1m2s (1m) - MemoryUsage (1s000ms): 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 116.998ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 52 (52) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 11.346ms - TotalThreadsUserTime: 150.845ms - TotalThreadsVoluntaryContextSwitches: 55 (55) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 39.177us - OpenTime: 1s060ms - ExecTreeOpenTime: 117.000ms - PrepareTime: 5.644ms - ExecTreePrepareTime: 5.458ms Hash Join Builder (join_node_id=54):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 184.389us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 629.260us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 33.091us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.928us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 652.96K (652959) - Resizes: 0 (0) - Travel: 389.43K (389428) EXCHANGE_NODE (id=149):(Total: 117.036ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s613ms - Open Started: 1s487ms (1s487ms) - Open Finished: 1s604ms (116.996ms) - First Batch Requested: 1s612ms (8.067ms) - First Batch Returned: 1s612ms (36.398us) - Last Batch Returned: 1s612ms (439.000ns) - Closed: 1s613ms (257.106us) - ConvertRowBatchTime: 23.378us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 264.00 /sec Buffer pool: - AllocTime: 4.646us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 116.985ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 116.996ms - DataWaitTime: 116.985ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -86332.000ns ; Min: -86332.000ns ; Max: -86332.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 29.573us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000f7 (host=tarmstrong-Precision-7540:22000):(Total: 3s819ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.211 Fragment Instance Lifecycle Event Timeline: 4s031ms - Prepare Finished: 212.521ms (212.521ms) - Open Finished: 1s596ms (1s384ms) - First Batch Produced: 1s603ms (6.345ms) - First Batch Sent: 1s603ms (225.924us) - ExecInternal Finished: 4s031ms (2s428ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 803.170ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 84 (84) - TotalThreadsTotalWallClockTime: 3s818ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 157.198ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 2s434ms - ExecTreeExecTime: 6.341ms - OpenTime: 1s384ms - ExecTreeOpenTime: 796.871ms - PrepareTime: 285.194us - ExecTreePrepareTime: 133.387us Hash Join Builder (join_node_id=54):(Total: 2s429ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 222.480us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 387.552us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 74.632us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 63.201us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 31.72K (31724) - Resizes: 0 (0) - Travel: 16.16K (16157) EXCHANGE_NODE (id=149):(Total: 803.210ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s603ms - Open Started: 798.699ms (798.699ms) - Open Finished: 1s595ms (796.868ms) - First Batch Requested: 1s596ms (1.101ms) - First Batch Returned: 1s603ms (6.336ms) - Last Batch Returned: 1s603ms (841.000ns) - Closed: 1s603ms (283.276us) - ConvertRowBatchTime: 23.688us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 38.00 /sec Buffer pool: - AllocTime: 3.813us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 796.859ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 803.166ms - DataWaitTime: 803.156ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -64768.000ns ; Min: -64768.000ns ; Max: -64768.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 29.126us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000f8 (host=tarmstrong-Precision-7540:22002):(Total: 2s455ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:16.130 Fragment Instance Lifecycle Event Timeline: 2s458ms - Prepare Finished: 2.580ms (2.580ms) - Open Finished: 1s639ms (1s637ms) - First Batch Produced: 1s644ms (4.843ms) - First Batch Sent: 1s644ms (281.088us) - ExecInternal Finished: 2s458ms (813.417ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s310ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 263 (263) - TotalThreadsTotalWallClockTime: 2s455ms - TotalThreadsSysTime: 4.121ms - TotalThreadsUserTime: 156.323ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 818.436ms - ExecTreeExecTime: 4.839ms - OpenTime: 1s637ms - ExecTreeOpenTime: 1s305ms - PrepareTime: 282.889us - ExecTreePrepareTime: 144.561us Hash Join Builder (join_node_id=54):(Total: 814.569ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 276.329us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 426.376us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 82.275us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 64.551us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 31 (31) - Resizes: 0 (0) - Travel: 16 (16) EXCHANGE_NODE (id=149):(Total: 1s310ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s644ms - Open Started: 333.350ms (333.350ms) - Open Finished: 1s638ms (1s305ms) - First Batch Requested: 1s639ms (1.108ms) - First Batch Returned: 1s644ms (4.834ms) - Last Batch Returned: 1s644ms (849.000ns) - Closed: 1s644ms (371.470us) - ConvertRowBatchTime: 24.176us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 23.00 /sec Buffer pool: - AllocTime: 7.792us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.298us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 1s305ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s310ms - DataWaitTime: 1s310ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -55093.000ns ; Min: -55093.000ns ; Max: -55093.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 32.307us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F33:(Total: 1s089ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s045ms max:8s045ms mean: 8s045ms stddev:0.000ns execution rates: min:274.18 KB/sec max:274.18 KB/sec mean:274.18 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 756.692us - TotalStorageWaitTime: 10.011us - TotalThreadsInvoluntaryContextSwitches: 141 (141) - TotalThreadsTotalWallClockTime: 1s089ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 214.255ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Fragment Instance Lifecycle Timings: - ExecTime: 118.467ms - ExecTreeExecTime: 111.964ms - OpenTime: 970.642ms - ExecTreeOpenTime: 325.825us - PrepareTime: 375.552us - ExecTreePrepareTime: 160.239us KrpcDataStreamSender (dst_id=149):(Total: 4.355ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 30.107us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=53):(Total: 112.494ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 23.371us - MaterializeTupleTime: 62.224ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 148.34 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 275.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.011us - TotalRawHdfsOpenFileTime: 46.718us - TotalRawHdfsReadTime: 2.873ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 11.598us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F33: Instance 50467cb8e73eeac4:853461b4000000f5 (host=tarmstrong-Precision-7540:22001):(Total: 1s089ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.935 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s613ms - Prepare Finished: 524.305ms (524.305ms) - Open Finished: 1s494ms (970.651ms) - First Batch Produced: 1s604ms (109.399ms) - First Batch Sent: 1s606ms (2.170ms) - ExecInternal Finished: 1s613ms (6.991ms) - MemoryUsage (500.000ms): 30.57 KB, 30.57 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 756.692us - TotalStorageWaitTime: 10.011us - TotalThreadsInvoluntaryContextSwitches: 141 (141) - TotalThreadsTotalWallClockTime: 1s089ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 214.255ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Fragment Instance Lifecycle Timings: - ExecTime: 118.467ms - ExecTreeExecTime: 111.964ms - OpenTime: 970.642ms - ExecTreeOpenTime: 325.825us - PrepareTime: 375.552us - ExecTreePrepareTime: 160.239us KrpcDataStreamSender (dst_id=149):(Total: 4.355ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 749.09 KB/sec ; Min: 262.06 KB/sec ; Max: 1.07 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 891.925us ; Min: 389.841us ; Max: 1.624ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -86570.000ns ; Min: -129306.000ns ; Max: -56385.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 30.107us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=53):(Total: 112.494ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s611ms - Closed: 1s611ms (1s611ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 261.958us ; Min: 261.958us ; Max: 261.958us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 1.017ms ; Min: 1.017ms ; Max: 1.017ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 23.371us - MaterializeTupleTime: 62.224ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 148.34 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 275.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.011us - TotalRawHdfsOpenFileTime: 46.718us - TotalRawHdfsReadTime: 2.873ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 11.598us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F101:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m2s max:1m3s mean: 1m3s stddev:118.153ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 12.239us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 109 (109) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 2.362ms - TotalThreadsUserTime: 156.417ms - TotalThreadsVoluntaryContextSwitches: 32 (32) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 484.912us - OpenTime: 740.982ms - ExecTreeOpenTime: 10.179us - PrepareTime: 1.329ms - ExecTreePrepareTime: 138.484us Hash Join Builder (join_node_id=65):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 248.097us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 992.536us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 78.144us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 64.339us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 7.86K (7856) - Resizes: 0 (0) - Travel: 4.46K (4463) EXCHANGE_NODE (id=157):(Total: 492.684us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 465.670us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 393.12 K/sec Buffer pool: - AllocTime: 2.440ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.435ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 10.706us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 2.462ms - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F101: Instance 50467cb8e73eeac4:853461b4000000fb (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:12.902 Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 181.865ms (181.865ms) - Open Finished: 800.725ms (618.859ms) - First Batch Produced: 801.625ms (900.347us) - First Batch Sent: 801.835ms (209.507us) - ExecInternal Finished: 1m1s (1m) - MemoryUsage (1s000ms): 3.90 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 10.094us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 86 (86) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.725ms - TotalThreadsUserTime: 150.826ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 896.953us - OpenTime: 618.847ms - ExecTreeOpenTime: 7.295us - PrepareTime: 332.139us - ExecTreePrepareTime: 133.892us Hash Join Builder (join_node_id=65):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 206.753us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 421.134us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 64.685us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.240us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.47K (1474) - Resizes: 0 (0) - Travel: 810 (810) EXCHANGE_NODE (id=157):(Total: 902.003us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 801.888ms - Open Started: 798.736ms (798.736ms) - Open Finished: 798.741ms (5.134us) - First Batch Requested: 800.729ms (1.987ms) - First Batch Returned: 801.623ms (893.934us) - Last Batch Returned: 801.624ms (636.000ns) - Closed: 801.888ms (264.902us) - ConvertRowBatchTime: 880.331us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 66.52 K/sec Buffer pool: - AllocTime: 4.290us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 8.837us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 484.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -123298.000ns ; Min: -123298.000ns ; Max: -123298.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 24.112us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000fa (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 493.758ms (493.758ms) - Open Finished: 1s356ms (863.134ms) - First Batch Produced: 1s356ms (78.422us) - First Batch Sent: 1s357ms (292.596us) - ExecInternal Finished: 1m1s (1m) - MemoryUsage (1s000ms): 33.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 14.385us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 132 (132) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 162.009ms - TotalThreadsVoluntaryContextSwitches: 53 (53) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 72.872us - OpenTime: 863.118ms - ExecTreeOpenTime: 13.064us - PrepareTime: 2.327ms - ExecTreePrepareTime: 143.077us Hash Join Builder (join_node_id=65):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 289.441us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 1.563ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 91.603us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 75.439us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 14.24K (14239) - Resizes: 0 (0) - Travel: 8.12K (8116) EXCHANGE_NODE (id=157):(Total: 83.366us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s357ms - Open Started: 1s355ms (1s355ms) - Open Finished: 1s355ms (10.012us) - First Batch Requested: 1s356ms (1.225ms) - First Batch Returned: 1s356ms (69.750us) - Last Batch Returned: 1s356ms (612.000ns) - Closed: 1s357ms (368.718us) - ConvertRowBatchTime: 51.010us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 719.72 K/sec Buffer pool: - AllocTime: 4.876ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.871ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 12.575us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 484.00 B, 484.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -66493.000ns ; Min: -66493.000ns ; Max: -66493.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 4.900ms - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F40:(Total: 189.058ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.56 KB, max: 5.56 KB, avg: 5.56 KB, stddev: 0 completion times: min:8s049ms max:8s049ms mean: 8s049ms stddev:0.000ns execution rates: min:707.00 B/sec max:707.00 B/sec mean:707.00 B/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.16 - PeakMemoryUsage: 80.42 KB (82352) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 13.499ms - TotalStorageWaitTime: 618.320us - TotalThreadsInvoluntaryContextSwitches: 17 (17) - TotalThreadsTotalWallClockTime: 188.744ms - TotalThreadsSysTime: 1.081ms - TotalThreadsUserTime: 38.048ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 15.557ms - ExecTreeExecTime: 1.521ms - OpenTime: 173.195ms - ExecTreeOpenTime: 202.668us - PrepareTime: 260.762us - ExecTreePrepareTime: 106.885us KrpcDataStreamSender (dst_id=157):(Total: 14.021ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 2 (2) - PeakMemoryUsage: 51.19 KB (52416) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.179us - TotalBytesSent: 968.00 B (968) - UncompressedRowBatchSize: 1.52 KB (1560) HDFS_SCAN_NODE (id=63):(Total: 1.851ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.629us - MaterializeTupleTime: 32.875us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 9.19 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 32.41 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 618.320us - TotalRawHdfsOpenFileTime: 14.465us - TotalRawHdfsReadTime: 625.670us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.943us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F40: Instance 50467cb8e73eeac4:853461b4000000f9 (host=tarmstrong-Precision-7540:22001):(Total: 189.058ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.938 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB Fragment Instance Lifecycle Event Timeline: 663.956ms - Prepare Finished: 475.123ms (475.123ms) - Open Finished: 648.328ms (173.204ms) - First Batch Produced: 649.727ms (1.399ms) - First Batch Sent: 650.056ms (328.760us) - ExecInternal Finished: 663.956ms (13.900ms) - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.16 - PeakMemoryUsage: 80.42 KB (82352) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 13.499ms - TotalStorageWaitTime: 618.320us - TotalThreadsInvoluntaryContextSwitches: 17 (17) - TotalThreadsTotalWallClockTime: 188.744ms - TotalThreadsSysTime: 1.081ms - TotalThreadsUserTime: 38.048ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 15.557ms - ExecTreeExecTime: 1.521ms - OpenTime: 173.195ms - ExecTreeOpenTime: 202.668us - PrepareTime: 260.762us - ExecTreePrepareTime: 106.885us KrpcDataStreamSender (dst_id=157):(Total: 14.021ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - NetworkThroughput: (Avg: 40.55 KB/sec ; Min: 34.81 KB/sec ; Max: 46.29 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 7.393ms ; Min: 496.104us ; Max: 13.577ms ; Number of samples: 4) - RpcRecvrTime: (Avg: -1310092.000ns ; Min: -4980901.000ns ; Max: -49032.000ns ; Number of samples: 4) - EosSent: 2 (2) - PeakMemoryUsage: 51.19 KB (52416) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.179us - TotalBytesSent: 968.00 B (968) - UncompressedRowBatchSize: 1.52 KB (1560) HDFS_SCAN_NODE (id=63):(Total: 1.851ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_page Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 650.243ms - Closed: 650.243ms (650.243ms) - FooterProcessingTime: (Avg: 755.341us ; Min: 755.341us ; Max: 755.341us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.629us - MaterializeTupleTime: 32.875us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 9.19 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 32.41 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 618.320us - TotalRawHdfsOpenFileTime: 14.465us - TotalRawHdfsReadTime: 625.670us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 6.943us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F102:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m2s max:1m3s mean: 1m3s stddev:116.833ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 490.747ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 193 (193) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 162.694ms - TotalThreadsVoluntaryContextSwitches: 30 (30) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 9.851ms - OpenTime: 1s270ms - ExecTreeOpenTime: 480.939ms - PrepareTime: 316.579us - ExecTreePrepareTime: 146.280us Hash Join Builder (join_node_id=64):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 249.066us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 418.132us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 61.196us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 45.444us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 359.63K (359628) - Resizes: 0 (0) - Travel: 266.94K (266940) EXCHANGE_NODE (id=156):(Total: 490.788ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.458us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 85.00 /sec Buffer pool: - AllocTime: 4.442us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.096us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 480.924ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 490.744ms - DataWaitTime: 490.732ms Enqueue: - DeserializeRowBatchTime: 32.052us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F102: Instance 50467cb8e73eeac4:853461b4000000fe (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:12.904 Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 159.763ms (159.763ms) - Open Finished: 1s573ms (1s413ms) - First Batch Produced: 1s583ms (10.151ms) - First Batch Sent: 1s583ms (271.727us) - ExecInternal Finished: 1m1s (1m) - MemoryUsage (1s000ms): 17.12 KB, 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 743.146ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 190 (190) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 160.551ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 10.145ms - OpenTime: 1s413ms - ExecTreeOpenTime: 733.044ms - PrepareTime: 326.880us - ExecTreePrepareTime: 151.663us Hash Join Builder (join_node_id=64):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 267.405us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 451.616us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 76.600us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 60.187us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 61.96K (61956) - Resizes: 0 (0) - Travel: 45.15K (45153) EXCHANGE_NODE (id=156):(Total: 743.187ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s583ms - Open Started: 839.075ms (839.075ms) - Open Finished: 1s572ms (733.040ms) - First Batch Requested: 1s573ms (1.127ms) - First Batch Returned: 1s583ms (10.141ms) - Last Batch Returned: 1s583ms (953.000ns) - Closed: 1s583ms (335.055us) - ConvertRowBatchTime: 22.946us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 41.00 /sec Buffer pool: - AllocTime: 5.190us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.193us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 733.030ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 743.144ms - DataWaitTime: 743.131ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -65010.000ns ; Min: -65010.000ns ; Max: -65010.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 32.430us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b4000000fd (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 457.720ms (457.720ms) - Open Finished: 1s584ms (1s126ms) - First Batch Produced: 1s594ms (9.562ms) - First Batch Sent: 1s594ms (235.112us) - ExecInternal Finished: 1m1s (1m) - MemoryUsage (1s000ms): 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 238.349ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 196 (196) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 164.837ms - TotalThreadsVoluntaryContextSwitches: 52 (52) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 9.557ms - OpenTime: 1s126ms - ExecTreeOpenTime: 228.834ms - PrepareTime: 306.279us - ExecTreePrepareTime: 140.898us Hash Join Builder (join_node_id=64):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 230.727us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 384.649us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 45.793us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 30.701us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 657.30K (657301) - Resizes: 0 (0) - Travel: 488.73K (488727) EXCHANGE_NODE (id=156):(Total: 238.389ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s594ms - Open Started: 1s354ms (1s354ms) - Open Finished: 1s582ms (228.830ms) - First Batch Requested: 1s584ms (1.597ms) - First Batch Returned: 1s594ms (9.553ms) - Last Batch Returned: 1s594ms (976.000ns) - Closed: 1s594ms (295.699us) - ConvertRowBatchTime: 21.970us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 130.00 /sec Buffer pool: - AllocTime: 3.695us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 228.818ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 238.345ms - DataWaitTime: 238.333ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -69708.000ns ; Min: -69708.000ns ; Max: -69708.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 31.675us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F39:(Total: 1s172ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s062ms max:8s062ms mean: 8s062ms stddev:0.000ns execution rates: min:273.62 KB/sec max:273.62 KB/sec mean:273.62 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.33 MB (2444464) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.903us - TotalStorageWaitTime: 2.601ms - TotalThreadsInvoluntaryContextSwitches: 138 (138) - TotalThreadsTotalWallClockTime: 1s171ms - TotalThreadsSysTime: 3.935ms - TotalThreadsUserTime: 211.436ms - TotalThreadsVoluntaryContextSwitches: 53 (53) Fragment Instance Lifecycle Timings: - ExecTime: 115.881ms - ExecTreeExecTime: 104.449ms - OpenTime: 1s056ms - ExecTreeOpenTime: 8.209ms - PrepareTime: 337.857us - ExecTreePrepareTime: 149.730us KrpcDataStreamSender (dst_id=156):(Total: 8.355ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 2 (2) - PeakMemoryUsage: 15.05 KB (15408) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.957us - TotalBytesSent: 872.00 B (872) - UncompressedRowBatchSize: 2.12 KB (2170) HDFS_SCAN_NODE (id=62):(Total: 112.851ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 27.873us - MaterializeTupleTime: 53.933ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 126.59 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 274.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 2.601ms - TotalRawHdfsOpenFileTime: 45.316us - TotalRawHdfsReadTime: 3.366ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 11.276ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.266ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F39: Instance 50467cb8e73eeac4:853461b4000000fc (host=tarmstrong-Precision-7540:22001):(Total: 1s172ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.951 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s594ms - Prepare Finished: 422.311ms (422.311ms) - Open Finished: 1s478ms (1s056ms) - First Batch Produced: 1s582ms (104.235ms) - First Batch Sent: 1s590ms (7.890ms) - ExecInternal Finished: 1s594ms (3.840ms) - MemoryUsage (500.000ms): 23.05 KB, 23.05 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.33 MB (2444464) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.903us - TotalStorageWaitTime: 2.601ms - TotalThreadsInvoluntaryContextSwitches: 138 (138) - TotalThreadsTotalWallClockTime: 1s171ms - TotalThreadsSysTime: 3.935ms - TotalThreadsUserTime: 211.436ms - TotalThreadsVoluntaryContextSwitches: 53 (53) Fragment Instance Lifecycle Timings: - ExecTime: 115.881ms - ExecTreeExecTime: 104.449ms - OpenTime: 1s056ms - ExecTreeOpenTime: 8.209ms - PrepareTime: 337.857us - ExecTreePrepareTime: 149.730us KrpcDataStreamSender (dst_id=156):(Total: 8.355ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 941.92 KB/sec ; Min: 879.92 KB/sec ; Max: 1003.92 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 446.246us ; Min: 424.117us ; Max: 483.888us ; Number of samples: 4) - RpcRecvrTime: (Avg: -107641.000ns ; Min: -115763.000ns ; Max: -89514.000ns ; Number of samples: 4) - EosSent: 2 (2) - PeakMemoryUsage: 15.05 KB (15408) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.957us - TotalBytesSent: 872.00 B (872) - UncompressedRowBatchSize: 2.12 KB (2170) HDFS_SCAN_NODE (id=62):(Total: 112.851ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s593ms - Closed: 1s593ms (1s593ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 4.118ms ; Min: 4.118ms ; Max: 4.118ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 918.132us ; Min: 918.132us ; Max: 918.132us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 27.873us - MaterializeTupleTime: 53.933ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 126.59 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 274.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 2.601ms - TotalRawHdfsOpenFileTime: 45.316us - TotalRawHdfsReadTime: 3.366ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 11.276ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.266ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F103:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:417.282ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4095914) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 2s309ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 1.380ms - TotalThreadsUserTime: 60.490ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 59s361ms - ExecTreeExecTime: 44.302us - OpenTime: 3s214ms - ExecTreeOpenTime: 2s311ms - PrepareTime: 439.732us - ExecTreePrepareTime: 276.827us Hash Join Builder (join_node_id=89):(Total: 59s361ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 11.383us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 22.227us - LargestPartitionPercent: 37 (37) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2044373) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 2.686us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 58.67 KB (60074) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 58.67 KB (60074) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 650.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 2s311ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 22.535us - GetResultsTime: 16.432us - HTResizeTime: 1.855us - LargestPartitionPercent: 37 (37) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2046762) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.573us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 288.00 KB (294912) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.379us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 512 (512) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 2s309ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.224us - PeakMemoryUsage: 6.67 KB (6826) - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.511us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.67 KB (6826) - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 6.67 KB (6826) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.67 KB (6826) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 130.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 2s305ms - TotalBytesDequeued: 22.00 B (22) - TotalGetBatchTime: 2s309ms - DataWaitTime: 2s309ms Enqueue: - DeserializeRowBatchTime: 9.112us - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 12.00 B (12) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F103: Instance 50467cb8e73eeac4:853461b400000103 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.114 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2.524ms (2.524ms) - Open Finished: 3s809ms (3s806ms) - First Batch Produced: 3s809ms (10.986us) - First Batch Sent: 3s809ms (4.171us) - ExecInternal Finished: 1m3s (59s368ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 3s189ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.383ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 59s368ms - ExecTreeExecTime: 6.807us - OpenTime: 3s806ms - ExecTreeOpenTime: 3s191ms - PrepareTime: 339.760us - ExecTreePrepareTime: 224.149us Hash Join Builder (join_node_id=89):(Total: 59s369ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.308us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 3s191ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s809ms - Open Started: 617.076ms (617.076ms) - Open Finished: 3s808ms (3s191ms) - First Batch Requested: 3s809ms (573.145us) - First Batch Returned: 3s809ms (4.447us) - Last Batch Returned: 3s809ms (428.000ns) - Closed: 3s809ms (80.154us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.793us - GetResultsTime: 0.000ns - HTResizeTime: 1.257us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.560us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 3s189ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s807ms - Open Started: 617.078ms (617.078ms) - Open Finished: 3s806ms (3s189ms) - First Batch Requested: 3s807ms (1.205ms) - First Batch Returned: 3s807ms (7.261us) - Last Batch Returned: 3s807ms (387.000ns) - Closed: 3s807ms (43.108us) - ConvertRowBatchTime: 2.701us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s189ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 3s189ms - DataWaitTime: 3s189ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000101 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.111 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2.060ms (2.060ms) - Open Finished: 3s809ms (3s807ms) - First Batch Produced: 3s809ms (10.884us) - First Batch Sent: 3s809ms (3.745us) - ExecInternal Finished: 1m3s (59s368ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 3s189ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.406ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s367ms - ExecTreeExecTime: 6.906us - OpenTime: 3s807ms - ExecTreeOpenTime: 3s191ms - PrepareTime: 326.081us - ExecTreePrepareTime: 210.398us Hash Join Builder (join_node_id=89):(Total: 59s368ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.663us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 3s191ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s809ms - Open Started: 617.062ms (617.062ms) - Open Finished: 3s808ms (3s191ms) - First Batch Requested: 3s809ms (525.196us) - First Batch Returned: 3s809ms (4.042us) - Last Batch Returned: 3s809ms (385.000ns) - Closed: 3s809ms (75.267us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.959us - GetResultsTime: 0.000ns - HTResizeTime: 1.441us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.765us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.888us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 3s189ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s807ms - Open Started: 617.065ms (617.065ms) - Open Finished: 3s806ms (3s189ms) - First Batch Requested: 3s807ms (1.199ms) - First Batch Returned: 3s807ms (6.247us) - Last Batch Returned: 3s807ms (344.000ns) - Closed: 3s807ms (40.808us) - ConvertRowBatchTime: 2.214us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s189ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 3s189ms - DataWaitTime: 3s189ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000100 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.115 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1.987ms (1.987ms) - Open Finished: 3s810ms (3s808ms) - First Batch Produced: 3s810ms (45.006us) - First Batch Sent: 3s810ms (18.390us) - ExecInternal Finished: 1m3s (59s363ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s178ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 154 (154) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 3.939ms - TotalThreadsUserTime: 228.023ms - TotalThreadsVoluntaryContextSwitches: 7 (7) Fragment Instance Lifecycle Timings: - ExecTime: 59s363ms - ExecTreeExecTime: 71.089us - OpenTime: 3s808ms - ExecTreeOpenTime: 3s180ms - PrepareTime: 333.612us - ExecTreePrepareTime: 214.705us Hash Join Builder (join_node_id=89):(Total: 59s363ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 17.542us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 46.582us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.307us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 3s181ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s810ms - Open Started: 629.317ms (629.317ms) - Open Finished: 3s810ms (3s180ms) - First Batch Requested: 3s810ms (449.822us) - First Batch Returned: 3s810ms (40.926us) - Last Batch Returned: 3s810ms (50.249us) - Closed: 3s810ms (68.615us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 31.439us - GetResultsTime: 31.713us - HTResizeTime: 2.596us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.289us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.686us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 3s178ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s809ms - Open Started: 629.322ms (629.322ms) - Open Finished: 3s803ms (3s173ms) - First Batch Requested: 3s804ms (1.166ms) - First Batch Returned: 3s809ms (5.262ms) - Last Batch Returned: 3s809ms (633.000ns) - Closed: 3s809ms (74.397us) - ConvertRowBatchTime: 3.240us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 18.230us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s173ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 3s178ms - DataWaitTime: 3s178ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -39974.000ns ; Min: -39974.000ns ; Max: -39974.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 34.206us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000102 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.111 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 2.180ms (2.180ms) - Open Finished: 3s808ms (3s805ms) - First Batch Produced: 3s808ms (41.345us) - First Batch Sent: 3s808ms (17.229us) - ExecInternal Finished: 1m3s (59s363ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 30.25 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s188ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.594ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s363ms - ExecTreeExecTime: 70.398us - OpenTime: 3s805ms - ExecTreeOpenTime: 3s190ms - PrepareTime: 337.630us - ExecTreePrepareTime: 216.149us Hash Join Builder (join_node_id=89):(Total: 59s363ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 16.186us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 48.441us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 3.743us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 3s190ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s808ms - Open Started: 617.071ms (617.071ms) - Open Finished: 3s807ms (3s190ms) - First Batch Requested: 3s808ms (477.854us) - First Batch Returned: 3s808ms (35.815us) - Last Batch Returned: 3s808ms (52.537us) - Closed: 3s808ms (69.963us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 70.174us - GetResultsTime: 26.721us - HTResizeTime: 2.907us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 29.219us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.934us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 3s188ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s806ms - Open Started: 617.074ms (617.074ms) - Open Finished: 3s801ms (3s184ms) - First Batch Requested: 3s802ms (1.183ms) - First Batch Returned: 3s806ms (3.775ms) - Last Batch Returned: 3s806ms (864.000ns) - Closed: 3s806ms (121.378us) - ConvertRowBatchTime: 4.204us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.237us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s184ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 3s188ms - DataWaitTime: 3s188ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -84195.000ns ; Min: -84195.000ns ; Max: -84195.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.043us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000108 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.127 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 364.154ms (364.154ms) - Open Finished: 3s783ms (3s419ms) - First Batch Produced: 3s783ms (9.609us) - First Batch Sent: 3s783ms (4.127us) - ExecInternal Finished: 1m3s (59s361ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 2s280ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 158 (158) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 8.663ms - TotalThreadsUserTime: 228.107ms - TotalThreadsVoluntaryContextSwitches: 31 (31) Fragment Instance Lifecycle Timings: - ExecTime: 59s361ms - ExecTreeExecTime: 6.929us - OpenTime: 3s419ms - ExecTreeOpenTime: 2s282ms - PrepareTime: 459.909us - ExecTreePrepareTime: 273.874us Hash Join Builder (join_node_id=89):(Total: 59s361ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.266us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 2s282ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s783ms - Open Started: 1s501ms (1s501ms) - Open Finished: 3s783ms (2s282ms) - First Batch Requested: 3s783ms (485.079us) - First Batch Returned: 3s783ms (4.619us) - Last Batch Returned: 3s783ms (350.000ns) - Closed: 3s783ms (80.533us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.664us - GetResultsTime: 0.000ns - HTResizeTime: 1.284us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.182us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 2s280ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s782ms - Open Started: 1s501ms (1s501ms) - Open Finished: 3s781ms (2s280ms) - First Batch Requested: 3s782ms (1.128ms) - First Batch Returned: 3s782ms (7.035us) - Last Batch Returned: 3s782ms (407.000ns) - Closed: 3s782ms (53.412us) - ConvertRowBatchTime: 2.843us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s280ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 2s280ms - DataWaitTime: 2s280ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000109 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 388.561ms (388.561ms) - Open Finished: 3s788ms (3s400ms) - First Batch Produced: 3s788ms (10.697us) - First Batch Sent: 3s788ms (4.865us) - ExecInternal Finished: 1m3s (59s353ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 2s285ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.327ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 59s353ms - ExecTreeExecTime: 6.596us - OpenTime: 3s400ms - ExecTreeOpenTime: 2s287ms - PrepareTime: 438.808us - ExecTreePrepareTime: 256.841us Hash Join Builder (join_node_id=89):(Total: 59s353ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.785us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 2s287ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s788ms - Open Started: 1s500ms (1s500ms) - Open Finished: 3s788ms (2s287ms) - First Batch Requested: 3s788ms (464.471us) - First Batch Returned: 3s788ms (4.375us) - Last Batch Returned: 3s788ms (304.000ns) - Closed: 3s788ms (81.627us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 4.939us - GetResultsTime: 0.000ns - HTResizeTime: 1.349us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.252us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 2s285ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s787ms - Open Started: 1s500ms (1s500ms) - Open Finished: 3s786ms (2s285ms) - First Batch Requested: 3s787ms (1.057ms) - First Batch Returned: 3s787ms (7.362us) - Last Batch Returned: 3s787ms (374.000ns) - Closed: 3s787ms (44.004us) - ConvertRowBatchTime: 2.523us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s285ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 2s285ms - DataWaitTime: 2s285ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000010a (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.121 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 402.924ms (402.924ms) - Open Finished: 3s786ms (3s383ms) - First Batch Produced: 3s786ms (11.250us) - First Batch Sent: 3s786ms (3.367us) - ExecInternal Finished: 1m3s (59s360ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 2s283ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.832ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 59s360ms - ExecTreeExecTime: 7.402us - OpenTime: 3s383ms - ExecTreeOpenTime: 2s285ms - PrepareTime: 546.003us - ExecTreePrepareTime: 353.023us Hash Join Builder (join_node_id=89):(Total: 59s360ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.608us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 2s285ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s786ms - Open Started: 1s500ms (1s500ms) - Open Finished: 3s786ms (2s285ms) - First Batch Requested: 3s786ms (566.834us) - First Batch Returned: 3s786ms (3.777us) - Last Batch Returned: 3s786ms (325.000ns) - Closed: 3s786ms (80.621us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.137us - GetResultsTime: 0.000ns - HTResizeTime: 1.261us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.513us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.702us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 2s283ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s785ms - Open Started: 1s500ms (1s500ms) - Open Finished: 3s784ms (2s283ms) - First Batch Requested: 3s785ms (1.089ms) - First Batch Returned: 3s785ms (7.631us) - Last Batch Returned: 3s785ms (384.000ns) - Closed: 3s785ms (45.530us) - ConvertRowBatchTime: 3.101us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s283ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 2s283ms - DataWaitTime: 2s283ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000010b (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 411.024ms (411.024ms) - Open Finished: 3s785ms (3s374ms) - First Batch Produced: 3s785ms (67.153us) - First Batch Sent: 3s785ms (24.410us) - ExecInternal Finished: 1m3s (59s362ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s282ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 4.098ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s362ms - ExecTreeExecTime: 89.471us - OpenTime: 3s374ms - ExecTreeOpenTime: 2s284ms - PrepareTime: 512.330us - ExecTreePrepareTime: 332.201us Hash Join Builder (join_node_id=89):(Total: 59s362ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 22.859us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 59.208us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 6.248us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 2s284ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s785ms - Open Started: 1s500ms (1s500ms) - Open Finished: 3s785ms (2s284ms) - First Batch Requested: 3s785ms (472.632us) - First Batch Returned: 3s785ms (45.529us) - Last Batch Returned: 3s785ms (86.598us) - Closed: 3s785ms (93.535us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 35.940us - GetResultsTime: 34.867us - HTResizeTime: 2.154us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.331us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 2s282ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s784ms - Open Started: 1s500ms (1s500ms) - Open Finished: 3s770ms (2s270ms) - First Batch Requested: 3s772ms (1.217ms) - First Batch Returned: 3s784ms (12.130ms) - Last Batch Returned: 3s784ms (1.264us) - Closed: 3s784ms (88.402us) - ConvertRowBatchTime: 3.751us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.923us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s270ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 2s282ms - DataWaitTime: 2s282ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -1155689.000ns ; Min: -1155689.000ns ; Max: -1155689.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.497us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000104 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.028 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s283ms (1s283ms) - Open Finished: 3s767ms (2s484ms) - First Batch Produced: 3s767ms (9.107us) - First Batch Sent: 3s767ms (3.683us) - ExecInternal Finished: 1m3s (59s362ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s454ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 100 (100) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 3.961ms - TotalThreadsUserTime: 237.082ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 59s362ms - ExecTreeExecTime: 6.188us - OpenTime: 2s484ms - ExecTreeOpenTime: 1s456ms - PrepareTime: 473.921us - ExecTreePrepareTime: 305.771us Hash Join Builder (join_node_id=89):(Total: 59s362ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.007us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 1s457ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s767ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s767ms (1s456ms) - First Batch Requested: 3s767ms (470.578us) - First Batch Returned: 3s767ms (3.823us) - Last Batch Returned: 3s767ms (352.000ns) - Closed: 3s767ms (83.069us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.928us - GetResultsTime: 0.000ns - HTResizeTime: 1.507us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.154us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 1s454ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s766ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s765ms (1s454ms) - First Batch Requested: 3s766ms (1.334ms) - First Batch Returned: 3s766ms (7.760us) - Last Batch Returned: 3s766ms (424.000ns) - Closed: 3s766ms (54.173us) - ConvertRowBatchTime: 2.870us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s454ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s454ms - DataWaitTime: 1s454ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000105 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.033 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s319ms (1s319ms) - Open Finished: 3s769ms (2s449ms) - First Batch Produced: 3s769ms (63.477us) - First Batch Sent: 3s769ms (34.173us) - ExecInternal Finished: 1m3s (59s358ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 1s456ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.932ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s358ms - ExecTreeExecTime: 166.199us - OpenTime: 2s449ms - ExecTreeOpenTime: 1s458ms - PrepareTime: 439.202us - ExecTreePrepareTime: 274.026us Hash Join Builder (join_node_id=89):(Total: 59s359ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 45.066us - BuildRowsPartitioned: 2 (2) - HashTablesBuildTime: 67.390us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.073us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.811us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2 (2) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 1s458ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s769ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s769ms (1s458ms) - First Batch Requested: 3s769ms (627.446us) - First Batch Returned: 3s769ms (56.668us) - Last Batch Returned: 3s769ms (163.456us) - Closed: 3s769ms (80.599us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 62.429us - GetResultsTime: 67.154us - HTResizeTime: 2.282us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 31.677us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.258us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 1s456ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s768ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s761ms (1s451ms) - First Batch Requested: 3s762ms (1.118ms) - First Batch Returned: 3s768ms (5.526ms) - Last Batch Returned: 3s768ms (821.000ns) - Closed: 3s768ms (116.431us) - ConvertRowBatchTime: 4.560us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.135us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s451ms - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 1s456ms - DataWaitTime: 1s456ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -2908937.000ns ; Min: -2908937.000ns ; Max: -2908937.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 22.788us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 48.00 B (48) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000106 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.027 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s340ms (1s340ms) - Open Finished: 3s773ms (2s432ms) - First Batch Produced: 3s773ms (10.901us) - First Batch Sent: 3s773ms (3.224us) - ExecInternal Finished: 1m3s (59s357ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.90 MB (4094208) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1s460ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.502ms - TotalThreadsVoluntaryContextSwitches: 3 (3) Fragment Instance Lifecycle Timings: - ExecTime: 59s356ms - ExecTreeExecTime: 6.511us - OpenTime: 2s432ms - ExecTreeOpenTime: 1s462ms - PrepareTime: 499.561us - ExecTreePrepareTime: 302.751us Hash Join Builder (join_node_id=89):(Total: 59s357ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.565us - BuildRowsPartitioned: 0 (0) - HashTablesBuildTime: 0.000ns - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2040960) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 1s462ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s773ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s772ms (1s462ms) - First Batch Requested: 3s773ms (492.071us) - First Batch Returned: 3s773ms (4.323us) - Last Batch Returned: 3s773ms (374.000ns) - Closed: 3s773ms (74.294us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 0 (0) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.614us - GetResultsTime: 0.000ns - HTResizeTime: 1.876us - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2045056) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 0 (0) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.403us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 0 (0) - HashCollisions: 0 (0) - Probes: 0 (0) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 1s460ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s771ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s770ms (1s460ms) - First Batch Requested: 3s771ms (1.056ms) - First Batch Returned: 3s771ms (7.652us) - Last Batch Returned: 3s771ms (354.000ns) - Closed: 3s771ms (66.771us) - ConvertRowBatchTime: 2.493us - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s460ms - TotalBytesDequeued: 0 - TotalGetBatchTime: 1s460ms - DataWaitTime: 1s460ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 0.000ns - TotalBatchesEnqueued: 0 (0) - TotalBatchesReceived: 0 (0) - TotalBytesReceived: 0 - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000107 (host=tarmstrong-Precision-7540:22000):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.027 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1s375ms (1s375ms) - Open Finished: 3s772ms (2s396ms) - First Batch Produced: 3s772ms (51.283us) - First Batch Sent: 3s772ms (22.100us) - ExecInternal Finished: 1m3s (59s356ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s458ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.601ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s356ms - ExecTreeExecTime: 87.136us - OpenTime: 2s396ms - ExecTreeOpenTime: 1s461ms - PrepareTime: 569.975us - ExecTreePrepareTime: 358.042us Hash Join Builder (join_node_id=89):(Total: 59s356ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 20.752us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 45.104us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.862us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=175):(Total: 1s461ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s772ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s772ms (1s461ms) - First Batch Requested: 3s772ms (505.085us) - First Batch Returned: 3s772ms (46.625us) - Last Batch Returned: 3s772ms (63.769us) - Closed: 3s772ms (86.158us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 33.409us - GetResultsTime: 36.737us - HTResizeTime: 2.350us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 16.535us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.085us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=174):(Total: 1s458ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s770ms - Open Started: 2s310ms (2s310ms) - Open Finished: 3s758ms (1s448ms) - First Batch Requested: 3s759ms (1.268ms) - First Batch Returned: 3s770ms (10.694ms) - Last Batch Returned: 3s770ms (733.000ns) - Closed: 3s770ms (80.596us) - ConvertRowBatchTime: 4.190us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.608us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.562us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s448ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 1s458ms - DataWaitTime: 1s458ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -36423.000ns ; Min: -36423.000ns ; Max: -36423.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.811us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 26.00 B (26) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F53:(Total: 3s448ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 15.43 MB, max: 15.43 MB, avg: 15.43 MB, stddev: 0 completion times: min:8s057ms max:8s057ms mean: 8s057ms stddev:0.000ns execution rates: min:1.91 MB/sec max:1.91 MB/sec mean:1.91 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.46 MB (7819106) - PeakReservation: 6.62 MB (6946816) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.630ms - TotalStorageWaitTime: 110.690ms - TotalThreadsInvoluntaryContextSwitches: 277 (277) - TotalThreadsTotalWallClockTime: 3s430ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 694.175ms - TotalThreadsVoluntaryContextSwitches: 76 (76) Fragment Instance Lifecycle Timings: - ExecTime: 416.391ms - ExecTreeExecTime: 396.331ms - OpenTime: 3s013ms - ExecTreeOpenTime: 914.987ms - PrepareTime: 17.830ms - ExecTreePrepareTime: 17.460ms KrpcDataStreamSender (dst_id=174):(Total: 20.144ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.118us - TotalBytesSent: 152.00 B (152) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=88):(Total: 1s328ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.17 MB (2273408) - RowsReturned: 6 (6) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 166.371us - HTResizeTime: 253.001us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 574.574us Buffer pool: - AllocTime: 35.580us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 2.92K (2917) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=87):(Total: 1s332ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 140.12 KB (143488) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 225.944us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 2.19 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=86):(Total: 868.563ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 70.12 KB (71808) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 315.981us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 3.36 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=83):(Total: 843.925ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 2.85 MB (2992390) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.85 MB (2992390) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.85 MB (2992390) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 937.168us - MaterializeTupleTime: 705.512ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 40 (40) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 5.24 MB (5497722) - PerReadThreadRawHdfsThroughput: 63.93 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 287.51K (287514) - RowsReturned: 2.92K (2917) - RowsReturnedRate: 3.46 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 110.690ms - TotalRawHdfsOpenFileTime: 6.461ms - TotalRawHdfsReadTime: 44.641ms - TotalReadThroughput: 834.93 KB/sec Buffer pool: - AllocTime: 144.754us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.75 MB (4980736) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 4.62 MB (4849664) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.62 MB (4849664) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 135.439us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 44 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 287.51K (287514) - Rows rejected: 10.06K (10062) - Rows total: 287.51K (287514) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 46 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 277.45K (277452) - Rows rejected: 274.54K (274535) - Rows total: 277.45K (277452) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F53: Instance 50467cb8e73eeac4:853461b4000000ff (host=tarmstrong-Precision-7540:22001):(Total: 3s448ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.946 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/15.43 MB Fragment Instance Lifecycle Event Timeline: 3s789ms - Prepare Finished: 358.959ms (358.959ms) - Open Finished: 3s372ms (3s013ms) - First Batch Produced: 3s768ms (396.065ms) - First Batch Sent: 3s768ms (2.795us) - ExecInternal Finished: 3s789ms (20.420ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 5.32 MB, 7.45 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.46 MB (7819106) - PeakReservation: 6.62 MB (6946816) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.630ms - TotalStorageWaitTime: 110.690ms - TotalThreadsInvoluntaryContextSwitches: 277 (277) - TotalThreadsTotalWallClockTime: 3s430ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 694.175ms - TotalThreadsVoluntaryContextSwitches: 76 (76) Fragment Instance Lifecycle Timings: - ExecTime: 416.391ms - ExecTreeExecTime: 396.331ms - OpenTime: 3s013ms - ExecTreeOpenTime: 914.987ms - PrepareTime: 17.830ms - ExecTreePrepareTime: 17.460ms KrpcDataStreamSender (dst_id=174):(Total: 20.144ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 25.28 KB/sec ; Min: 7.13 KB/sec ; Max: 83.20 KB/sec ; Number of samples: 5) - RpcNetworkTime: (Avg: 2.953ms ; Min: 217.738us ; Max: 9.774ms ; Number of samples: 17) - RpcRecvrTime: (Avg: -547345.000ns ; Min: -2940546.000ns ; Max: -47491.000ns ; Number of samples: 17) - EosSent: 12 (12) - PeakMemoryUsage: 61.44 KB (62912) - RowsSent: 6 (6) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.118us - TotalBytesSent: 152.00 B (152) - UncompressedRowBatchSize: 270.00 B (270) AGGREGATION_NODE (id=88):(Total: 1s328ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s769ms - Open Started: 2s457ms (2s457ms) - Open Finished: 3s372ms (914.983ms) - First Batch Requested: 3s372ms (39.188us) - First Batch Returned: 3s768ms (396.058ms) - Last Batch Returned: 3s769ms (330.359us) - Closed: 3s769ms (57.983us) - PeakMemoryUsage: 2.17 MB (2273408) - RowsReturned: 6 (6) - RowsReturnedRate: 4.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 166.371us - HTResizeTime: 253.001us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 6 (6) - StreamingTime: 574.574us Buffer pool: - AllocTime: 35.580us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 960.00 KB (983040) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 960.00 KB (983040) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 2.92K (2917) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=87):(Total: 1s332ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s768ms - Open Started: 2s457ms (2s457ms) - Waiting for builder: 3s366ms (908.727ms) - Initial build available: 3s366ms (6.889us) - Open Finished: 3s366ms (195.665us) - First Batch Requested: 3s372ms (6.098ms) - First Batch Returned: 3s372ms (90.340us) - Last Batch Returned: 3s761ms (389.056ms) - Closed: 3s768ms (6.542ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 140.12 KB (143488) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 225.944us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 2.19 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=86):(Total: 868.563ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s768ms - Open Started: 2s910ms (2s910ms) - Waiting for builder: 2s910ms (279.176us) - Initial build available: 2s910ms (4.711us) - Open Finished: 3s366ms (455.870ms) - First Batch Requested: 3s366ms (159.662us) - First Batch Returned: 3s366ms (144.071us) - Last Batch Returned: 3s761ms (395.029ms) - Closed: 3s768ms (6.749ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 70.12 KB (71808) - ProbeRows: 2.92K (2917) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 315.981us - RowsReturned: 2.92K (2917) - RowsReturnedRate: 3.36 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=83):(Total: 843.925ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/15.43 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s184ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s768ms - Closed: 3s768ms (3s768ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 2.85 MB, 2.85 MB - FooterProcessingTime: (Avg: 93.720ms ; Min: 93.720ms ; Max: 93.720ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 4.00 MB (4194304) ; Min: 4.00 MB (4194304) ; Max: 4.00 MB (4194304) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 625.23 KB (640234) ; Min: 120.79 KB (123689) ; Max: 998.59 KB (1022552) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 62.52 KB (64023) ; Min: 29.33 KB (30033) ; Max: 75.40 KB (77208) ; Number of samples: 40) - ParquetRowGroupActualReservation: (Avg: 4.62 MB (4849664) ; Min: 4.62 MB (4849664) ; Max: 4.62 MB (4849664) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 4.62 MB (4849664) ; Min: 4.62 MB (4849664) ; Max: 4.62 MB (4849664) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 632.42 KB (647597) ; Min: 129.29 KB (132397) ; Max: 1004.82 KB (1028937) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 63.24 KB (64759) ; Min: 29.45 KB (30160) ; Max: 80.77 KB (82707) ; Number of samples: 40) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 2.85 MB (2992390) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.85 MB (2992390) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.85 MB (2992390) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 937.168us - MaterializeTupleTime: 705.512ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 40 (40) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 5.24 MB (5497722) - PerReadThreadRawHdfsThroughput: 63.93 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 287.51K (287514) - RowsReturned: 2.92K (2917) - RowsReturnedRate: 3.46 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 110.690ms - TotalRawHdfsOpenFileTime: 6.461ms - TotalRawHdfsReadTime: 44.641ms - TotalReadThroughput: 834.93 KB/sec Buffer pool: - AllocTime: 144.754us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.75 MB (4980736) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 4.62 MB (4849664) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.62 MB (4849664) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 135.439us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 44 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 287.51K (287514) - Rows rejected: 10.06K (10062) - Rows total: 287.51K (287514) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 46 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 277.45K (277452) - Rows rejected: 274.54K (274535) - Rows total: 277.45K (277452) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F104:(Total: 3s437ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s064ms max:8s064ms mean: 8s064ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 15.676us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 48 (48) - TotalThreadsTotalWallClockTime: 3s436ms - TotalThreadsSysTime: 15.036ms - TotalThreadsUserTime: 144.307ms - TotalThreadsVoluntaryContextSwitches: 45 (45) Fragment Instance Lifecycle Timings: - ExecTime: 2s623ms - ExecTreeExecTime: 31.837us - OpenTime: 813.009ms - ExecTreeOpenTime: 13.396us - PrepareTime: 292.667us - ExecTreePrepareTime: 134.274us Hash Join Builder (join_node_id=87):(Total: 2s695ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 158.258us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 336.272us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 39.123us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.048us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 2.93K (2929) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=173):(Total: 42.654us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 10.761us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 281.33 K/sec Buffer pool: - AllocTime: 3.626us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 915.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 13.234us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 20.854us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F104: Instance 50467cb8e73eeac4:853461b40000010d (host=tarmstrong-Precision-7540:22001):(Total: 3s437ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.953 Fragment Instance Lifecycle Event Timeline: 3s762ms - Prepare Finished: 325.389ms (325.389ms) - Open Finished: 1s138ms (813.021ms) - First Batch Produced: 1s138ms (35.799us) - First Batch Sent: 1s138ms (160.897us) - ExecInternal Finished: 3s762ms (2s623ms) - MemoryUsage (500.000ms): 33.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 15.676us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 48 (48) - TotalThreadsTotalWallClockTime: 3s436ms - TotalThreadsSysTime: 15.036ms - TotalThreadsUserTime: 144.307ms - TotalThreadsVoluntaryContextSwitches: 45 (45) Fragment Instance Lifecycle Timings: - ExecTime: 2s623ms - ExecTreeExecTime: 31.837us - OpenTime: 813.009ms - ExecTreeOpenTime: 13.396us - PrepareTime: 292.667us - ExecTreePrepareTime: 134.274us Hash Join Builder (join_node_id=87):(Total: 2s695ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 158.258us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 336.272us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 39.123us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 28.048us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 2.93K (2929) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=173):(Total: 42.654us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s138ms - Open Started: 1s066ms (1s066ms) - Open Finished: 1s066ms (10.206us) - First Batch Requested: 1s138ms (71.953ms) - First Batch Returned: 1s138ms (28.830us) - Last Batch Returned: 1s138ms (487.000ns) - Closed: 1s138ms (243.283us) - ConvertRowBatchTime: 10.761us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 281.33 K/sec Buffer pool: - AllocTime: 3.626us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 915.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 13.234us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 100.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -42399.000ns ; Min: -42399.000ns ; Max: -42399.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 20.854us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F55:(Total: 289.969ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.93 KB, max: 9.93 KB, avg: 9.93 KB, stddev: 0 completion times: min:8s059ms max:8s059ms mean: 8s059ms stddev:0.000ns execution rates: min:1.23 KB/sec max:1.23 KB/sec mean:1.23 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.01 - PeakMemoryUsage: 62.64 KB (64144) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 44.453ms - TotalStorageWaitTime: 19.925ms - TotalThreadsInvoluntaryContextSwitches: 15 (15) - TotalThreadsTotalWallClockTime: 289.577ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.772ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 139.948ms - ExecTreeExecTime: 95.372ms - OpenTime: 149.636ms - ExecTreeOpenTime: 186.004us - PrepareTime: 323.951us - ExecTreePrepareTime: 140.956us KrpcDataStreamSender (dst_id=173):(Total: 44.572ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.721us - TotalBytesSent: 100.00 B (100) - UncompressedRowBatchSize: 156.00 B (156) HDFS_SCAN_NODE (id=85):(Total: 95.726ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 6.701us - MaterializeTupleTime: 12.498us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 20.17 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 125.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 19.925ms - TotalRawHdfsOpenFileTime: 11.220us - TotalRawHdfsReadTime: 485.593us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.548us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.684us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F55: Instance 50467cb8e73eeac4:853461b40000010c (host=tarmstrong-Precision-7540:22001):(Total: 289.969ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.948 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB Fragment Instance Lifecycle Event Timeline: 600.169ms - Prepare Finished: 310.504ms (310.504ms) - Open Finished: 460.147ms (149.643ms) - First Batch Produced: 555.419ms (95.272ms) - First Batch Sent: 555.451ms (31.606us) - ExecInternal Finished: 600.169ms (44.718ms) - AverageThreadTokens: 0.00 - ExchangeScanRatio: 0.01 - PeakMemoryUsage: 62.64 KB (64144) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 44.453ms - TotalStorageWaitTime: 19.925ms - TotalThreadsInvoluntaryContextSwitches: 15 (15) - TotalThreadsTotalWallClockTime: 289.577ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.772ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 139.948ms - ExecTreeExecTime: 95.372ms - OpenTime: 149.636ms - ExecTreeOpenTime: 186.004us - PrepareTime: 323.951us - ExecTreePrepareTime: 140.956us KrpcDataStreamSender (dst_id=173):(Total: 44.572ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - NetworkThroughput: (Avg: 2.20 KB/sec ; Min: 2.20 KB/sec ; Max: 2.20 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 22.374ms ; Min: 307.008us ; Max: 44.442ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -64272.000ns ; Min: -69088.000ns ; Max: -59456.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.721us - TotalBytesSent: 100.00 B (100) - UncompressedRowBatchSize: 156.00 B (156) HDFS_SCAN_NODE (id=85):(Total: 95.726ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 555.605ms - Closed: 555.605ms (555.605ms) - FooterProcessingTime: (Avg: 19.582ms ; Min: 19.582ms ; Max: 19.582ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 6.701us - MaterializeTupleTime: 12.498us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 20.17 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 125.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 19.925ms - TotalRawHdfsOpenFileTime: 11.220us - TotalRawHdfsReadTime: 485.593us - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.548us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.684us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F105:(Total: 3s484ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s049ms max:8s049ms mean: 8s049ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 325.063ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 103 (103) - TotalThreadsTotalWallClockTime: 3s483ms - TotalThreadsSysTime: 9.121ms - TotalThreadsUserTime: 150.404ms - TotalThreadsVoluntaryContextSwitches: 40 (40) Fragment Instance Lifecycle Timings: - ExecTime: 2s238ms - ExecTreeExecTime: 6.793ms - OpenTime: 1s244ms - ExecTreeOpenTime: 318.314ms - PrepareTime: 372.602us - ExecTreePrepareTime: 159.374us Hash Join Builder (join_node_id=86):(Total: 2s233ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 217.402us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 423.267us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 66.299us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.475us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 2.95K (2948) - Resizes: 0 (0) - Travel: 1.68K (1675) EXCHANGE_NODE (id=172):(Total: 325.104ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.986us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 95.00 /sec Buffer pool: - AllocTime: 8.768us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.641us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 318.296ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 325.059ms - DataWaitTime: 325.046ms Enqueue: - DeserializeRowBatchTime: 40.164us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F105: Instance 50467cb8e73eeac4:853461b40000010f (host=tarmstrong-Precision-7540:22001):(Total: 3s484ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.938 Fragment Instance Lifecycle Event Timeline: 3s762ms - Prepare Finished: 278.619ms (278.619ms) - Open Finished: 1s523ms (1s244ms) - First Batch Produced: 1s530ms (6.798ms) - First Batch Sent: 1s530ms (221.123us) - ExecInternal Finished: 3s762ms (2s231ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 325.063ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 103 (103) - TotalThreadsTotalWallClockTime: 3s483ms - TotalThreadsSysTime: 9.121ms - TotalThreadsUserTime: 150.404ms - TotalThreadsVoluntaryContextSwitches: 40 (40) Fragment Instance Lifecycle Timings: - ExecTime: 2s238ms - ExecTreeExecTime: 6.793ms - OpenTime: 1s244ms - ExecTreeOpenTime: 318.314ms - PrepareTime: 372.602us - ExecTreePrepareTime: 159.374us Hash Join Builder (join_node_id=86):(Total: 2s233ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 217.402us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 423.267us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 66.299us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.475us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 2.95K (2948) - Resizes: 0 (0) - Travel: 1.68K (1675) EXCHANGE_NODE (id=172):(Total: 325.104ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s530ms - Open Started: 1s204ms (1s204ms) - Open Finished: 1s522ms (318.309ms) - First Batch Requested: 1s523ms (1.107ms) - First Batch Returned: 1s530ms (6.789ms) - Last Batch Returned: 1s530ms (843.000ns) - Closed: 1s530ms (283.108us) - ConvertRowBatchTime: 22.986us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 95.00 /sec Buffer pool: - AllocTime: 8.768us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.641us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 318.296ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 325.059ms - DataWaitTime: 325.046ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -89536.000ns ; Min: -89536.000ns ; Max: -89536.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 40.164us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F54:(Total: 1s283ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s050ms max:8s050ms mean: 8s050ms stddev:0.000ns execution rates: min:274.01 KB/sec max:274.01 KB/sec mean:274.01 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.903ms - TotalStorageWaitTime: 10.402us - TotalThreadsInvoluntaryContextSwitches: 202 (202) - TotalThreadsTotalWallClockTime: 1s267ms - TotalThreadsSysTime: 7.329ms - TotalThreadsUserTime: 208.596ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 140.126ms - ExecTreeExecTime: 108.334ms - OpenTime: 1s127ms - ExecTreeOpenTime: 1.446ms - PrepareTime: 15.588ms - ExecTreePrepareTime: 189.387us KrpcDataStreamSender (dst_id=172):(Total: 24.194ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.113ms - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=84):(Total: 110.040ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 25.394us - MaterializeTupleTime: 66.446ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 152.66 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 281.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.402us - TotalRawHdfsOpenFileTime: 48.945us - TotalRawHdfsReadTime: 2.792ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.333us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F54: Instance 50467cb8e73eeac4:853461b40000010e (host=tarmstrong-Precision-7540:22001):(Total: 1s283ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.939 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s534ms - Prepare Finished: 266.452ms (266.452ms) - Open Finished: 1s393ms (1s127ms) - First Batch Produced: 1s501ms (108.029ms) - First Batch Sent: 1s522ms (20.177ms) - ExecInternal Finished: 1s534ms (12.006ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.903ms - TotalStorageWaitTime: 10.402us - TotalThreadsInvoluntaryContextSwitches: 202 (202) - TotalThreadsTotalWallClockTime: 1s267ms - TotalThreadsSysTime: 7.329ms - TotalThreadsUserTime: 208.596ms - TotalThreadsVoluntaryContextSwitches: 29 (29) Fragment Instance Lifecycle Timings: - ExecTime: 140.126ms - ExecTreeExecTime: 108.334ms - OpenTime: 1s127ms - ExecTreeOpenTime: 1.446ms - PrepareTime: 15.588ms - ExecTreePrepareTime: 189.387us KrpcDataStreamSender (dst_id=172):(Total: 24.194ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 759.69 KB/sec ; Min: 759.69 KB/sec ; Max: 759.69 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 481.644us ; Min: 402.821us ; Max: 560.467us ; Number of samples: 2) - RpcRecvrTime: (Avg: -108213.000ns ; Min: -145893.000ns ; Max: -70534.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.113ms - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=84):(Total: 110.040ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s530ms - Closed: 1s530ms (1s530ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 282.326us ; Min: 282.326us ; Max: 282.326us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 5.511ms ; Min: 5.511ms ; Max: 5.511ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 25.394us - MaterializeTupleTime: 66.446ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 152.66 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 281.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 10.402us - TotalRawHdfsOpenFileTime: 48.945us - TotalRawHdfsReadTime: 2.792ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 14.333us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F106:(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:417.972ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s150ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 21.677ms - TotalThreadsVoluntaryContextSwitches: 12 (12) Fragment Instance Lifecycle Timings: - ExecTime: 59s812ms - ExecTreeExecTime: 9.719ms - OpenTime: 3s220ms - ExecTreeOpenTime: 3s140ms - PrepareTime: 225.780us - ExecTreePrepareTime: 137.429us Nested Loop Join Builder:(Total: 59s802ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=182):(Total: 3s150ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.655us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.109us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 3s140ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 3s150ms - DataWaitTime: 3s150ms Enqueue: - DeserializeRowBatchTime: 27.070us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F106: Instance 50467cb8e73eeac4:853461b400000112 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1.751ms (1.751ms) - Open Finished: 3s374ms (3s372ms) - First Batch Produced: 3s375ms (707.556us) - First Batch Sent: 3s375ms (28.712us) - ExecInternal Finished: 1m3s (59s800ms) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 8.00 KB, 18.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s351ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 5 (5) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 21.615ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Fragment Instance Lifecycle Timings: - ExecTime: 59s800ms - ExecTreeExecTime: 703.834us - OpenTime: 3s372ms - ExecTreeOpenTime: 3s351ms - PrepareTime: 168.816us - ExecTreePrepareTime: 112.130us Nested Loop Join Builder:(Total: 59s800ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=182):(Total: 3s351ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s375ms - Open Started: 23.314ms (23.314ms) - Open Finished: 3s374ms (3s351ms) - First Batch Requested: 3s374ms (31.498us) - First Batch Returned: 3s375ms (700.214us) - Last Batch Returned: 3s375ms (743.000ns) - Closed: 3s375ms (114.152us) - ConvertRowBatchTime: 3.846us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 5.033us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s351ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 3s351ms - DataWaitTime: 3s351ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -63370.000ns ; Min: -63370.000ns ; Max: -63370.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 25.525us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000113 (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.029 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 123.603ms (123.603ms) - Open Finished: 3s317ms (3s194ms) - First Batch Produced: 3s331ms (14.098ms) - First Batch Sent: 3s331ms (31.949us) - ExecInternal Finished: 1m3s (59s800ms) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 8.00 KB, 18.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s130ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 23 (23) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 20.881ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 59s814ms - ExecTreeExecTime: 14.095ms - OpenTime: 3s194ms - ExecTreeOpenTime: 3s116ms - PrepareTime: 233.191us - ExecTreePrepareTime: 134.639us Nested Loop Join Builder:(Total: 59s799ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=182):(Total: 3s130ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s332ms - Open Started: 201.709ms (201.709ms) - Open Finished: 3s317ms (3s116ms) - First Batch Requested: 3s317ms (20.425us) - First Batch Returned: 3s331ms (14.092ms) - Last Batch Returned: 3s331ms (725.000ns) - Closed: 3s332ms (257.901us) - ConvertRowBatchTime: 3.446us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.913us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s116ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 3s130ms - DataWaitTime: 3s130ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -52843.000ns ; Min: -52843.000ns ; Max: -52843.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.200us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000114 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 234.360ms (234.360ms) - Open Finished: 3s328ms (3s094ms) - First Batch Produced: 3s342ms (14.363ms) - First Batch Sent: 3s343ms (28.298us) - ExecInternal Finished: 1m3s (59s806ms) - MemoryUsage (1s000ms): 8.00 KB, 8.00 KB, 8.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB, 28.00 KB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 44.00 KB (45056) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s969ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 22.535ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 59s820ms - ExecTreeExecTime: 14.359ms - OpenTime: 3s094ms - ExecTreeOpenTime: 2s955ms - PrepareTime: 275.335us - ExecTreePrepareTime: 165.519us Nested Loop Join Builder:(Total: 59s806ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 20.00 KB (20480) EXCHANGE_NODE (id=182):(Total: 2s969ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s343ms - Open Started: 373.615ms (373.615ms) - Open Finished: 3s328ms (2s954ms) - First Batch Requested: 3s328ms (23.244us) - First Batch Returned: 3s342ms (14.348ms) - Last Batch Returned: 3s342ms (756.000ns) - Closed: 3s343ms (152.766us) - ConvertRowBatchTime: 3.675us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.381us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s954ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 2s969ms - DataWaitTime: 2s969ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -52846.000ns ; Min: -52846.000ns ; Max: -52846.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 36.487us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F62:(Total: 3s225ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s306ms max:7s306ms mean: 7s306ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 51.62 KB (52864) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s150ms - TotalNetworkSendTime: 15.074ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 7 (7) - TotalThreadsTotalWallClockTime: 3s224ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 21.766ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 15.232ms - ExecTreeExecTime: 10.152us - OpenTime: 3s209ms - ExecTreeOpenTime: 3s150ms - PrepareTime: 723.296us - ExecTreePrepareTime: 199.100us KrpcDataStreamSender (dst_id=182):(Total: 15.262ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 11.62 KB (11904) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.136us - TotalBytesSent: 75.00 B (75) - UncompressedRowBatchSize: 123.00 B (123) AGGREGATION_NODE (id=181):(Total: 3s150ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 8.818us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=180):(Total: 3s150ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 3.410us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.099us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 3s149ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 3s150ms - DataWaitTime: 3s150ms Enqueue: - DeserializeRowBatchTime: 22.958us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F62: Instance 50467cb8e73eeac4:853461b400000111 (host=tarmstrong-Precision-7540:22000):(Total: 3s225ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.212 Fragment Instance Lifecycle Event Timeline: 3s332ms - Prepare Finished: 108.096ms (108.096ms) - Open Finished: 3s317ms (3s209ms) - First Batch Produced: 3s317ms (12.485us) - First Batch Sent: 3s317ms (69.313us) - ExecInternal Finished: 3s332ms (15.199ms) - MemoryUsage (500.000ms): 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB, 23.62 KB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 51.62 KB (52864) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 3s150ms - TotalNetworkSendTime: 15.074ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 7 (7) - TotalThreadsTotalWallClockTime: 3s224ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 21.766ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 15.232ms - ExecTreeExecTime: 10.152us - OpenTime: 3s209ms - ExecTreeOpenTime: 3s150ms - PrepareTime: 723.296us - ExecTreePrepareTime: 199.100us KrpcDataStreamSender (dst_id=182):(Total: 15.262ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 36.24 KB/sec ; Min: 1.73 KB/sec ; Max: 57.35 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 2.954ms ; Min: 425.716us ; Max: 14.102ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -90253.000ns ; Min: -115697.000ns ; Max: -54881.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 11.62 KB (11904) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.136us - TotalBytesSent: 75.00 B (75) - UncompressedRowBatchSize: 123.00 B (123) AGGREGATION_NODE (id=181):(Total: 3s150ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s317ms - Open Started: 166.715ms (166.715ms) - Open Finished: 3s317ms (3s150ms) - First Batch Requested: 3s317ms (29.110us) - First Batch Returned: 3s317ms (8.077us) - Last Batch Returned: 3s317ms (355.000ns) - Closed: 3s317ms (89.093us) - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: - BuildTime: 8.818us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) EXCHANGE_NODE (id=180):(Total: 3s150ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s317ms - Open Started: 166.717ms (166.717ms) - Open Finished: 3s316ms (3s149ms) - First Batch Requested: 3s316ms (23.920us) - First Batch Returned: 3s317ms (751.490us) - Last Batch Returned: 3s317ms (849.000ns) - Closed: 3s317ms (76.628us) - ConvertRowBatchTime: 3.410us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.099us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 3s149ms - TotalBytesDequeued: 41.00 B (41) - TotalGetBatchTime: 3s150ms - DataWaitTime: 3s150ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -72470.000ns ; Min: -72470.000ns ; Max: -72470.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 22.958us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 25.00 B (25) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F60:(Total: 3s104ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 10.62 MB, max: 10.62 MB, avg: 10.62 MB, stddev: 0 completion times: min:8s048ms max:8s048ms mean: 8s048ms stddev:0.000ns execution rates: min:1.32 MB/sec max:1.32 MB/sec mean:1.32 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.97 MB (3115801) - PeakReservation: 2.25 MB (2359296) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 797.534us - TotalStorageWaitTime: 114.900ms - TotalThreadsInvoluntaryContextSwitches: 237 (237) - TotalThreadsTotalWallClockTime: 3s103ms - TotalThreadsSysTime: 10.809ms - TotalThreadsUserTime: 277.379ms - TotalThreadsVoluntaryContextSwitches: 33 (33) Fragment Instance Lifecycle Timings: - ExecTime: 2.022ms - ExecTreeExecTime: 11.543us - OpenTime: 3s101ms - ExecTreeOpenTime: 1s992ms - PrepareTime: 569.021us - ExecTreePrepareTime: 348.192us KrpcDataStreamSender (dst_id=180):(Total: 2.037ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 3.88 KB (3968) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.119us - TotalBytesSent: 25.00 B (25) - UncompressedRowBatchSize: 41.00 B (41) AGGREGATION_NODE (id=97):(Total: 1s993ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 175.00 KB (179200) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: - BuildTime: 35.293us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) HASH_JOIN_NODE (id=96):(Total: 1s993ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 94.12 KB (96384) - ProbeRows: 1.61K (1611) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 153.596us - RowsReturned: 1.61K (1611) - RowsReturnedRate: 808.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=94):(Total: 416.232ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.49 MB (1559615) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.49 MB (1559615) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.49 MB (1559615) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 363.560us - MaterializeTupleTime: 256.752ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 20 (20) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.78 MB (2914370) - PerReadThreadRawHdfsThroughput: 690.76 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 144.07K (144067) - RowsReturned: 1.61K (1611) - RowsReturnedRate: 3.87 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 114.900ms - TotalRawHdfsOpenFileTime: 28.104us - TotalRawHdfsReadTime: 2.153ms - TotalReadThroughput: 507.69 KB/sec Buffer pool: - AllocTime: 15.275us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.38 MB (2490368) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.25 MB (2359296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.25 MB (2359296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.131us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 50 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 144.07K (144067) - Rows rejected: 142.46K (142456) - Rows total: 144.07K (144067) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F60: Instance 50467cb8e73eeac4:853461b400000110 (host=tarmstrong-Precision-7540:22001):(Total: 3s104ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.937 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/10.62 MB Fragment Instance Lifecycle Event Timeline: 3s329ms - Prepare Finished: 225.439ms (225.439ms) - Open Finished: 3s326ms (3s101ms) - First Batch Produced: 3s327ms (13.419us) - First Batch Sent: 3s327ms (55.156us) - ExecInternal Finished: 3s329ms (2.054ms) - MemoryUsage (500.000ms): 41.00 KB, 41.00 KB, 41.00 KB, 41.00 KB, 41.00 KB, 2.97 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.97 MB (3115801) - PeakReservation: 2.25 MB (2359296) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 797.534us - TotalStorageWaitTime: 114.900ms - TotalThreadsInvoluntaryContextSwitches: 237 (237) - TotalThreadsTotalWallClockTime: 3s103ms - TotalThreadsSysTime: 10.809ms - TotalThreadsUserTime: 277.379ms - TotalThreadsVoluntaryContextSwitches: 33 (33) Fragment Instance Lifecycle Timings: - ExecTime: 2.022ms - ExecTreeExecTime: 11.543us - OpenTime: 3s101ms - ExecTreeOpenTime: 1s992ms - PrepareTime: 569.021us - ExecTreePrepareTime: 348.192us KrpcDataStreamSender (dst_id=180):(Total: 2.037ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 25.85 KB/sec ; Min: 25.85 KB/sec ; Max: 25.85 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 1.003ms ; Min: 944.421us ; Max: 1.062ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -78961.000ns ; Min: -107540.000ns ; Max: -50382.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 3.88 KB (3968) - RowsSent: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.119us - TotalBytesSent: 25.00 B (25) - UncompressedRowBatchSize: 41.00 B (41) AGGREGATION_NODE (id=97):(Total: 1s993ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s327ms - Open Started: 1s334ms (1s334ms) - Open Finished: 3s326ms (1s992ms) - First Batch Requested: 3s326ms (24.529us) - First Batch Returned: 3s327ms (9.316us) - Last Batch Returned: 3s327ms (327.000ns) - Closed: 3s327ms (74.639us) - PeakMemoryUsage: 175.00 KB (179200) - RowsReturned: 1 (1) - RowsReturnedRate: 0 NonGroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 35.293us - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1 (1) HASH_JOIN_NODE (id=96):(Total: 1s993ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s326ms - Open Started: 1s334ms (1s334ms) - Waiting for builder: 2s910ms (1s576ms) - Initial build available: 2s910ms (2.877us) - Open Finished: 3s149ms (239.384ms) - First Batch Requested: 3s149ms (34.090us) - First Batch Returned: 3s150ms (115.458us) - Last Batch Returned: 3s326ms (176.815ms) - Closed: 3s326ms (97.081us) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 94.12 KB (96384) - ProbeRows: 1.61K (1611) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 153.596us - RowsReturned: 1.61K (1611) - RowsReturnedRate: 808.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=94):(Total: 416.232ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.catalog_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/10.62 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 1s049ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s326ms - Closed: 3s326ms (3s326ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 1.49 MB - FooterProcessingTime: (Avg: 94.272ms ; Min: 94.272ms ; Max: 94.272ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 367.33 KB (376144) ; Min: 192.85 KB (197477) ; Max: 457.52 KB (468498) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 55.10 KB (56421) ; Min: 1.43 KB (1467) ; Max: 65.61 KB (67189) ; Number of samples: 20) - ParquetRowGroupActualReservation: (Avg: 2.25 MB (2359296) ; Min: 2.25 MB (2359296) ; Max: 2.25 MB (2359296) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 2.25 MB (2359296) ; Min: 2.25 MB (2359296) ; Max: 2.25 MB (2359296) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 368.85 KB (377701) ; Min: 192.83 KB (197454) ; Max: 459.82 KB (470859) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 55.33 KB (56655) ; Min: 1.43 KB (1462) ; Max: 66.34 KB (67929) ; Number of samples: 20) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 1.49 MB (1559615) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.49 MB (1559615) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.49 MB (1559615) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 363.560us - MaterializeTupleTime: 256.752ms - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 20 (20) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.78 MB (2914370) - PerReadThreadRawHdfsThroughput: 690.76 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 144.07K (144067) - RowsReturned: 1.61K (1611) - RowsReturnedRate: 3.87 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 114.900ms - TotalRawHdfsOpenFileTime: 28.104us - TotalRawHdfsReadTime: 2.153ms - TotalReadThroughput: 507.69 KB/sec Buffer pool: - AllocTime: 15.275us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.38 MB (2490368) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 2.25 MB (2359296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.25 MB (2359296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.131us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 50 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 144.07K (144067) - Rows rejected: 142.46K (142456) - Rows total: 144.07K (144067) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F107:(Total: 3s117ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s054ms max:8s054ms mean: 8s054ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 439.546ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 3s116ms - TotalThreadsSysTime: 4.275ms - TotalThreadsUserTime: 155.867ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 2s077ms - ExecTreeExecTime: 16.467ms - OpenTime: 1s039ms - ExecTreeOpenTime: 423.123ms - PrepareTime: 334.739us - ExecTreePrepareTime: 130.460us Hash Join Builder (join_node_id=96):(Total: 2s061ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 8.322ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 399.399us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.104ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.085ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.64K (1642) - Resizes: 0 (0) - Travel: 829 (829) EXCHANGE_NODE (id=179):(Total: 439.587ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.748us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 70.00 /sec Buffer pool: - AllocTime: 5.643us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.435us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 423.109ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 439.543ms - DataWaitTime: 439.530ms Enqueue: - DeserializeRowBatchTime: 29.634us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F107: Instance 50467cb8e73eeac4:853461b400000116 (host=tarmstrong-Precision-7540:22001):(Total: 3s117ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.943 Fragment Instance Lifecycle Event Timeline: 3s327ms - Prepare Finished: 210.018ms (210.018ms) - Open Finished: 1s249ms (1s039ms) - First Batch Produced: 1s265ms (16.472ms) - First Batch Sent: 1s274ms (8.326ms) - ExecInternal Finished: 3s327ms (2s052ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 439.546ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 3s116ms - TotalThreadsSysTime: 4.275ms - TotalThreadsUserTime: 155.867ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 2s077ms - ExecTreeExecTime: 16.467ms - OpenTime: 1s039ms - ExecTreeOpenTime: 423.123ms - PrepareTime: 334.739us - ExecTreePrepareTime: 130.460us Hash Join Builder (join_node_id=96):(Total: 2s061ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 8.322ms - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 399.399us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.104ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.085ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.64K (1642) - Resizes: 0 (0) - Travel: 829 (829) EXCHANGE_NODE (id=179):(Total: 439.587ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s274ms - Open Started: 825.380ms (825.380ms) - Open Finished: 1s248ms (423.119ms) - First Batch Requested: 1s249ms (987.992us) - First Batch Returned: 1s265ms (16.463ms) - Last Batch Returned: 1s265ms (844.000ns) - Closed: 1s274ms (8.393ms) - ConvertRowBatchTime: 22.748us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 70.00 /sec Buffer pool: - AllocTime: 5.643us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.435us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 423.109ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 439.543ms - DataWaitTime: 439.530ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -58380.000ns ; Min: -58380.000ns ; Max: -58380.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 29.634us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F61:(Total: 1s075ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s056ms max:8s056ms mean: 8s056ms stddev:0.000ns execution rates: min:273.83 KB/sec max:273.83 KB/sec mean:273.83 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.838us - TotalStorageWaitTime: 19.915ms - TotalThreadsInvoluntaryContextSwitches: 79 (79) - TotalThreadsTotalWallClockTime: 1s075ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 210.604ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Fragment Instance Lifecycle Timings: - ExecTime: 127.779ms - ExecTreeExecTime: 113.022ms - OpenTime: 947.334ms - ExecTreeOpenTime: 316.058us - PrepareTime: 303.250us - ExecTreePrepareTime: 139.686us KrpcDataStreamSender (dst_id=179):(Total: 14.660ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.711ms - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=95):(Total: 113.519ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 22.778us - MaterializeTupleTime: 51.634ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 136.21 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 273.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 19.915ms - TotalRawHdfsOpenFileTime: 48.408us - TotalRawHdfsReadTime: 3.129ms - TotalReadThroughput: 290.97 KB/sec Buffer pool: - AllocTime: 8.653ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.642ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F61: Instance 50467cb8e73eeac4:853461b400000115 (host=tarmstrong-Precision-7540:22001):(Total: 1s075ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.945 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s274ms - Prepare Finished: 190.981ms (190.981ms) - Open Finished: 1s138ms (947.343ms) - First Batch Produced: 1s237ms (99.212ms) - First Batch Sent: 1s251ms (14.227ms) - ExecInternal Finished: 1s274ms (22.412ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB, 2.22 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.838us - TotalStorageWaitTime: 19.915ms - TotalThreadsInvoluntaryContextSwitches: 79 (79) - TotalThreadsTotalWallClockTime: 1s075ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 210.604ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Fragment Instance Lifecycle Timings: - ExecTime: 127.779ms - ExecTreeExecTime: 113.022ms - OpenTime: 947.334ms - ExecTreeOpenTime: 316.058us - PrepareTime: 303.250us - ExecTreePrepareTime: 139.686us KrpcDataStreamSender (dst_id=179):(Total: 14.660ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 1.04 MB/sec ; Min: 1.04 MB/sec ; Max: 1.04 MB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 429.958us ; Min: 400.852us ; Max: 459.064us ; Number of samples: 2) - RpcRecvrTime: (Avg: -86795.000ns ; Min: -100673.000ns ; Max: -72917.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.711ms - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=95):(Total: 113.519ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 1s265ms - Closed: 1s265ms (1s265ms) - BytesReadSeries (500.000ms): 0, 0, 436.46 KB - FooterProcessingTime: (Avg: 841.842us ; Min: 841.842us ; Max: 841.842us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 514.649us ; Min: 514.649us ; Max: 514.649us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 22.778us - MaterializeTupleTime: 51.634ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 136.21 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 273.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 19.915ms - TotalRawHdfsOpenFileTime: 48.408us - TotalRawHdfsReadTime: 3.129ms - TotalReadThroughput: 290.97 KB/sec Buffer pool: - AllocTime: 8.653ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 8.642ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F108:(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m3s max:1m4s mean: 1m3s stddev:418.555ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 12 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 2s326ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 31 (31) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 1.021ms - TotalThreadsUserTime: 60.788ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 59s834ms - ExecTreeExecTime: 201.758us - OpenTime: 3s252ms - ExecTreeOpenTime: 2s330ms - PrepareTime: 968.779us - ExecTreePrepareTime: 826.049us Hash Join Builder (join_node_id=111):(Total: 59s834ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 51.504us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 97.104us - LargestPartitionPercent: 43 (43) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 10.697us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 261.33 KB (267605) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 261.33 KB (267605) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.223us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 5 (5) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s331ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 0 GroupingAggregator 0: - BuildTime: 67.518us - GetResultsTime: 82.129us - HTResizeTime: 2.180us - LargestPartitionPercent: 43 (43) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 153.190us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 453.33 KB (464213) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 453.33 KB (464213) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 143.087us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.16K (3157) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s326ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 5.412us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.318us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.529us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 2s319ms - TotalBytesDequeued: 150.00 B (150) - TotalGetBatchTime: 2s326ms - DataWaitTime: 2s326ms Enqueue: - DeserializeRowBatchTime: 20.004us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 84.00 B (84) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F108: Instance 50467cb8e73eeac4:853461b400000119 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.111 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1.580ms (1.580ms) - Open Finished: 3s338ms (3s337ms) - First Batch Produced: 3s338ms (44.441us) - First Batch Sent: 3s338ms (21.714us) - ExecInternal Finished: 1m3s (59s839ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s754ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.581ms - TotalThreadsVoluntaryContextSwitches: 4 (4) Fragment Instance Lifecycle Timings: - ExecTime: 59s839ms - ExecTreeExecTime: 244.305us - OpenTime: 3s337ms - ExecTreeOpenTime: 2s757ms - PrepareTime: 326.394us - ExecTreePrepareTime: 206.843us Hash Join Builder (join_node_id=111):(Total: 59s839ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 58.024us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 102.216us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.132us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.087us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s757ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s339ms - Open Started: 581.295ms (581.295ms) - Open Finished: 3s338ms (2s757ms) - First Batch Requested: 3s338ms (453.755us) - First Batch Returned: 3s338ms (40.181us) - Last Batch Returned: 3s339ms (276.286us) - Closed: 3s339ms (72.548us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 93.072us - GetResultsTime: 102.775us - HTResizeTime: 1.433us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 34.876us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.067us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s754ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s337ms - Open Started: 581.298ms (581.298ms) - Open Finished: 3s330ms (2s749ms) - First Batch Requested: 3s331ms (1.511ms) - First Batch Returned: 3s337ms (5.598ms) - Last Batch Returned: 3s337ms (903.000ns) - Closed: 3s337ms (148.163us) - ConvertRowBatchTime: 5.803us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 2.758us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s749ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s754ms - DataWaitTime: 2s754ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -170279.000ns ; Min: -170279.000ns ; Max: -170279.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 15.527us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000011b (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.112 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1.730ms (1.730ms) - Open Finished: 3s341ms (3s339ms) - First Batch Produced: 3s341ms (42.327us) - First Batch Sent: 3s341ms (23.728us) - ExecInternal Finished: 1m3s (59s835ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 2s752ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.902ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s835ms - ExecTreeExecTime: 189.222us - OpenTime: 3s339ms - ExecTreeOpenTime: 2s759ms - PrepareTime: 346.479us - ExecTreePrepareTime: 221.853us Hash Join Builder (join_node_id=111):(Total: 59s835ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 46.122us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 81.602us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 12.424us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.766us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s760ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s342ms - Open Started: 581.326ms (581.326ms) - Open Finished: 3s341ms (2s759ms) - First Batch Requested: 3s341ms (448.350us) - First Batch Returned: 3s341ms (38.198us) - Last Batch Returned: 3s341ms (208.451us) - Closed: 3s342ms (72.720us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 66.584us - GetResultsTime: 78.303us - HTResizeTime: 2.440us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 31.640us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 24.254us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s752ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s340ms - Open Started: 581.328ms (581.328ms) - Open Finished: 3s330ms (2s749ms) - First Batch Requested: 3s337ms (6.364ms) - First Batch Returned: 3s340ms (3.339ms) - Last Batch Returned: 3s340ms (1.336us) - Closed: 3s340ms (136.918us) - ConvertRowBatchTime: 4.831us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.020us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.218us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s749ms - TotalBytesDequeued: 135.00 B (135) - TotalGetBatchTime: 2s752ms - DataWaitTime: 2s752ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -223922.000ns ; Min: -223922.000ns ; Max: -223922.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 16.186us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 73.00 B (73) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000118 (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1.572ms (1.572ms) - Open Finished: 3s336ms (3s334ms) - First Batch Produced: 3s336ms (48.588us) - First Batch Sent: 3s336ms (24.993us) - ExecInternal Finished: 1m3s (59s839ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s752ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 87 (87) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 7.845ms - TotalThreadsUserTime: 223.420ms - TotalThreadsVoluntaryContextSwitches: 8 (8) Fragment Instance Lifecycle Timings: - ExecTime: 59s839ms - ExecTreeExecTime: 79.916us - OpenTime: 3s334ms - ExecTreeOpenTime: 2s754ms - PrepareTime: 380.510us - ExecTreePrepareTime: 248.997us Hash Join Builder (join_node_id=111):(Total: 59s839ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 23.896us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 52.134us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.155us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.115us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s754ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s336ms - Open Started: 581.332ms (581.332ms) - Open Finished: 3s335ms (2s754ms) - First Batch Requested: 3s336ms (500.023us) - First Batch Returned: 3s336ms (43.386us) - Last Batch Returned: 3s336ms (64.334us) - Closed: 3s336ms (73.105us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 40.881us - GetResultsTime: 33.337us - HTResizeTime: 2.641us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 15.009us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.277us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s752ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s334ms - Open Started: 581.333ms (581.333ms) - Open Finished: 3s330ms (2s748ms) - First Batch Requested: 3s331ms (1.235ms) - First Batch Returned: 3s334ms (3.316ms) - Last Batch Returned: 3s334ms (807.000ns) - Closed: 3s334ms (116.593us) - ConvertRowBatchTime: 3.867us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 3.727us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s748ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 2s752ms - DataWaitTime: 2s752ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -137900.000ns ; Min: -137900.000ns ; Max: -137900.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.782us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000011a (host=tarmstrong-Precision-7540:22002):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.110 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 1.658ms (1.658ms) - Open Finished: 3s341ms (3s339ms) - First Batch Produced: 3s341ms (52.130us) - First Batch Sent: 3s341ms (22.486us) - ExecInternal Finished: 1m3s (59s833ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 6 (6) - TotalNetworkReceiveTime: 2s756ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.966ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s833ms - ExecTreeExecTime: 267.005us - OpenTime: 3s339ms - ExecTreeOpenTime: 2s759ms - PrepareTime: 335.845us - ExecTreePrepareTime: 209.536us Hash Join Builder (join_node_id=111):(Total: 59s833ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 62.724us - BuildRowsPartitioned: 6 (6) - HashTablesBuildTime: 105.643us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 11.617us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 10 (10) - HashCollisions: 0 (0) - Probes: 11 (11) - Resizes: 0 (0) - Travel: 4 (4) AGGREGATION_NODE (id=190):(Total: 2s760ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s342ms - Open Started: 581.320ms (581.320ms) - Open Finished: 3s341ms (2s759ms) - First Batch Requested: 3s341ms (538.823us) - First Batch Returned: 3s341ms (47.334us) - Last Batch Returned: 3s341ms (300.246us) - Closed: 3s342ms (77.127us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 6 (6) - RowsReturnedRate: 2.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 81.667us - GetResultsTime: 116.003us - HTResizeTime: 2.473us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 6 (6) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 21.881us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.756us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s756ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s340ms - Open Started: 581.322ms (581.322ms) - Open Finished: 3s330ms (2s749ms) - First Batch Requested: 3s333ms (2.811ms) - First Batch Returned: 3s340ms (6.644ms) - Last Batch Returned: 3s340ms (947.000ns) - Closed: 3s340ms (141.297us) - ConvertRowBatchTime: 8.785us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 6 (6) - RowsReturnedRate: 2.00 /sec Buffer pool: - AllocTime: 1.962us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s749ms - TotalBytesDequeued: 270.00 B (270) - TotalGetBatchTime: 2s756ms - DataWaitTime: 2s756ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -198234.000ns ; Min: -198234.000ns ; Max: -198234.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 14.579us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 155.00 B (155) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000011c (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 42.881ms (42.881ms) - Open Finished: 3s301ms (3s258ms) - First Batch Produced: 3s301ms (49.486us) - First Batch Sent: 3s301ms (20.176us) - ExecInternal Finished: 1m3s (59s832ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s220ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 113 (113) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 4.412ms - TotalThreadsUserTime: 229.004ms - TotalThreadsVoluntaryContextSwitches: 14 (14) Fragment Instance Lifecycle Timings: - ExecTime: 59s832ms - ExecTreeExecTime: 80.419us - OpenTime: 3s258ms - ExecTreeOpenTime: 2s222ms - PrepareTime: 7.424ms - ExecTreePrepareTime: 7.247ms Hash Join Builder (join_node_id=111):(Total: 59s833ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 19.041us - BuildRowsPartitioned: 1 (1) - HashTablesBuildTime: 44.529us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 4.602us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1 (1) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s230ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s301ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s300ms (2s222ms) - First Batch Requested: 3s301ms (575.451us) - First Batch Returned: 3s301ms (43.799us) - Last Batch Returned: 3s301ms (58.133us) - Closed: 3s301ms (108.597us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 1 (1) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 53.800us - GetResultsTime: 33.941us - HTResizeTime: 2.236us - LargestPartitionPercent: 100 (100) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 28.269us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.368us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 1 (1) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s220ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s299ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s287ms (2s209ms) - First Batch Requested: 3s288ms (1.298ms) - First Batch Returned: 3s299ms (11.205ms) - Last Batch Returned: 3s299ms (844.000ns) - Closed: 3s299ms (114.636us) - ConvertRowBatchTime: 4.512us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 5.879us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.361us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s209ms - TotalBytesDequeued: 45.00 B (45) - TotalGetBatchTime: 2s220ms - DataWaitTime: 2s220ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -68931.000ns ; Min: -68931.000ns ; Max: -68931.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.191us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 24.00 B (24) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000011e (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.031 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 47.358ms (47.358ms) - Open Finished: 3s303ms (3s255ms) - First Batch Produced: 3s303ms (50.184us) - First Batch Sent: 3s303ms (17.592us) - ExecInternal Finished: 1m3s (59s832ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 3 (3) - TotalNetworkReceiveTime: 2s220ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.593ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 59s832ms - ExecTreeExecTime: 201.721us - OpenTime: 3s255ms - ExecTreeOpenTime: 2s224ms - PrepareTime: 356.302us - ExecTreePrepareTime: 236.873us Hash Join Builder (join_node_id=111):(Total: 59s832ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 40.866us - BuildRowsPartitioned: 3 (3) - HashTablesBuildTime: 114.390us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.879us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3 (3) - HashCollisions: 0 (0) - Probes: 6 (6) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s225ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s303ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s302ms (2s224ms) - First Batch Requested: 3s303ms (467.833us) - First Batch Returned: 3s303ms (45.288us) - Last Batch Returned: 3s303ms (210.475us) - Closed: 3s303ms (65.593us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 57.224us - GetResultsTime: 85.080us - HTResizeTime: 1.813us - LargestPartitionPercent: 33 (33) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 3 (3) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 29.945us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 21.454us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 3 (3) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s220ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s300ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s289ms (2s211ms) - First Batch Requested: 3s290ms (1.409ms) - First Batch Returned: 3s300ms (9.801ms) - Last Batch Returned: 3s300ms (665.000ns) - Closed: 3s300ms (97.750us) - ConvertRowBatchTime: 5.296us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 3 (3) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 2.637us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s211ms - TotalBytesDequeued: 135.00 B (135) - TotalGetBatchTime: 2s220ms - DataWaitTime: 2s220ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -55005.000ns ; Min: -55005.000ns ; Max: -55005.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 18.306us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 76.00 B (76) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000011d (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.031 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 47.079ms (47.079ms) - Open Finished: 3s305ms (3s258ms) - First Batch Produced: 3s305ms (39.249us) - First Batch Sent: 3s305ms (16.503us) - ExecInternal Finished: 1m3s (59s826ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s220ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.896ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s826ms - ExecTreeExecTime: 244.292us - OpenTime: 3s258ms - ExecTreeOpenTime: 2s226ms - PrepareTime: 358.028us - ExecTreePrepareTime: 222.028us Hash Join Builder (join_node_id=111):(Total: 59s827ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 120.495us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 104.870us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 26.044us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 19.583us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 8 (8) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s226ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s305ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s304ms (2s226ms) - First Batch Requested: 3s305ms (543.125us) - First Batch Returned: 3s305ms (35.029us) - Last Batch Returned: 3s305ms (347.884us) - Closed: 3s305ms (63.739us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 83.282us - GetResultsTime: 96.457us - HTResizeTime: 1.981us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 59.749us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 51.864us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s220ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s300ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s287ms (2s209ms) - First Batch Requested: 3s288ms (1.240ms) - First Batch Returned: 3s300ms (11.265ms) - Last Batch Returned: 3s300ms (708.000ns) - Closed: 3s300ms (144.524us) - ConvertRowBatchTime: 5.654us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 10.130us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.862us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s209ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s220ms - DataWaitTime: 2s220ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -39999.000ns ; Min: -39999.000ns ; Max: -39999.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 24.649us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000011f (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.031 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 75.789ms (75.789ms) - Open Finished: 3s302ms (3s226ms) - First Batch Produced: 3s302ms (43.964us) - First Batch Sent: 3s302ms (17.111us) - ExecInternal Finished: 1m3s (59s833ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 2 (2) - TotalNetworkReceiveTime: 2s218ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 2 (2) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.935ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s833ms - ExecTreeExecTime: 161.143us - OpenTime: 3s226ms - ExecTreeOpenTime: 2s223ms - PrepareTime: 400.771us - ExecTreePrepareTime: 253.276us Hash Join Builder (join_node_id=111):(Total: 59s833ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 29.923us - BuildRowsPartitioned: 2 (2) - HashTablesBuildTime: 61.077us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 5.737us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2 (2) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s224ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s302ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s301ms (2s223ms) - First Batch Requested: 3s302ms (494.387us) - First Batch Returned: 3s302ms (39.436us) - Last Batch Returned: 3s302ms (157.423us) - Closed: 3s302ms (64.477us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 2 (2) - RowsReturnedRate: 0 GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 61.303us - GetResultsTime: 54.808us - HTResizeTime: 2.178us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 2 (2) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 32.049us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 384.00 KB (393216) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 384.00 KB (393216) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.409us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.05K (2048) - HashCollisions: 0 (0) - Probes: 2 (2) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s218ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s301ms - Open Started: 1s078ms (1s078ms) - Open Finished: 3s290ms (2s212ms) - First Batch Requested: 3s294ms (3.848ms) - First Batch Returned: 3s300ms (6.247ms) - Last Batch Returned: 3s300ms (743.000ns) - Closed: 3s301ms (108.373us) - ConvertRowBatchTime: 4.236us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 2 (2) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 8.492us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.914us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s212ms - TotalBytesDequeued: 90.00 B (90) - TotalGetBatchTime: 2s218ms - DataWaitTime: 2s218ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -59055.000ns ; Min: -59055.000ns ; Max: -59055.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.602us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 51.00 B (51) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000120 (host=tarmstrong-Precision-7540:22001):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 126.516ms (126.516ms) - Open Finished: 3s313ms (3s186ms) - First Batch Produced: 3s313ms (40.152us) - First Batch Sent: 3s313ms (17.321us) - ExecInternal Finished: 1m3s (59s838ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s004ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 170 (170) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 242.359ms - TotalThreadsVoluntaryContextSwitches: 30 (30) Fragment Instance Lifecycle Timings: - ExecTime: 59s838ms - ExecTreeExecTime: 235.294us - OpenTime: 3s186ms - ExecTreeOpenTime: 2s007ms - PrepareTime: 387.924us - ExecTreePrepareTime: 241.857us Hash Join Builder (join_node_id=111):(Total: 59s838ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 55.872us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 143.286us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 8.382us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s008ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s313ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s312ms (2s007ms) - First Batch Requested: 3s313ms (476.906us) - First Batch Returned: 3s313ms (35.031us) - Last Batch Returned: 3s313ms (271.506us) - Closed: 3s313ms (67.672us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 73.645us - GetResultsTime: 95.887us - HTResizeTime: 2.095us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 16.492us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s004ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s312ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s302ms (1s997ms) - First Batch Requested: 3s304ms (2.423ms) - First Batch Returned: 3s312ms (7.383ms) - Last Batch Returned: 3s312ms (790.000ns) - Closed: 3s312ms (127.441us) - ConvertRowBatchTime: 6.513us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 4.307us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s996ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s004ms - DataWaitTime: 2s004ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -108219.000ns ; Min: -108219.000ns ; Max: -108219.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 19.056us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000121 (host=tarmstrong-Precision-7540:22001):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 134.642ms (134.642ms) - Open Finished: 3s317ms (3s183ms) - First Batch Produced: 3s317ms (50.646us) - First Batch Sent: 3s318ms (22.932us) - ExecInternal Finished: 1m3s (59s827ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s009ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.931ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 59s827ms - ExecTreeExecTime: 300.340us - OpenTime: 3s183ms - ExecTreeOpenTime: 2s012ms - PrepareTime: 371.659us - ExecTreePrepareTime: 233.959us Hash Join Builder (join_node_id=111):(Total: 59s827ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 65.161us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 115.329us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.553us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s012ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s318ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s317ms (2s012ms) - First Batch Requested: 3s317ms (534.527us) - First Batch Returned: 3s317ms (45.234us) - Last Batch Returned: 3s318ms (336.063us) - Closed: 3s318ms (89.957us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 73.498us - GetResultsTime: 114.537us - HTResizeTime: 2.189us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 20.750us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 9.039us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s009ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s316ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s302ms (1s997ms) - First Batch Requested: 3s304ms (2.475ms) - First Batch Returned: 3s316ms (11.874ms) - Last Batch Returned: 3s316ms (925.000ns) - Closed: 3s316ms (147.432us) - ConvertRowBatchTime: 5.067us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.040us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s997ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s009ms - DataWaitTime: 2s008ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -135089.000ns ; Min: -135089.000ns ; Max: -135089.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 21.079us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000122 (host=tarmstrong-Precision-7540:22001):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.124 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 148.959ms (148.959ms) - Open Finished: 3s315ms (3s166ms) - First Batch Produced: 3s315ms (41.222us) - First Batch Sent: 3s315ms (19.732us) - ExecInternal Finished: 1m3s (59s835ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s006ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.976ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s835ms - ExecTreeExecTime: 187.626us - OpenTime: 3s166ms - ExecTreeOpenTime: 2s009ms - PrepareTime: 404.534us - ExecTreePrepareTime: 242.470us Hash Join Builder (join_node_id=111):(Total: 59s835ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 43.903us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 81.642us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 7.947us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 4 (4) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.131us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 6 (6) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 2 (2) AGGREGATION_NODE (id=190):(Total: 2s010ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s315ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s314ms (2s009ms) - First Batch Requested: 3s315ms (654.971us) - First Batch Returned: 3s315ms (36.717us) - Last Batch Returned: 3s315ms (205.780us) - Closed: 3s315ms (77.754us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 55.069us - GetResultsTime: 78.304us - HTResizeTime: 2.349us - LargestPartitionPercent: 50 (50) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 13.008us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 448.00 KB (458752) - CumulativeAllocations: 7 (7) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 448.00 KB (458752) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.497us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s006ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s314ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s303ms (1s998ms) - First Batch Requested: 3s305ms (2.456ms) - First Batch Returned: 3s314ms (8.277ms) - Last Batch Returned: 3s314ms (673.000ns) - Closed: 3s314ms (101.712us) - ConvertRowBatchTime: 5.636us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 2.800us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s998ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s006ms - DataWaitTime: 2s006ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -167402.000ns ; Min: -167402.000ns ; Max: -167402.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 16.857us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 95.00 B (95) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000123 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.124 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 173.120ms (173.120ms) - Open Finished: 3s313ms (3s140ms) - First Batch Produced: 3s313ms (39.346us) - First Batch Sent: 3s313ms (17.184us) - ExecInternal Finished: 1m3s (59s837ms) - MemoryUsage (1s000ms): 30.25 KB, 30.25 KB, 30.25 KB, 1015.69 KB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB, 1.95 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.91 MB (4098304) - PeakReservation: 3.88 MB (4063232) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 4 (4) - TotalNetworkReceiveTime: 2s004ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 0 (0) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 3.899ms - TotalThreadsVoluntaryContextSwitches: 5 (5) Fragment Instance Lifecycle Timings: - ExecTime: 59s837ms - ExecTreeExecTime: 229.815us - OpenTime: 3s140ms - ExecTreeOpenTime: 2s007ms - PrepareTime: 532.792us - ExecTreePrepareTime: 347.198us Hash Join Builder (join_node_id=111):(Total: 59s837ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 52.031us - BuildRowsPartitioned: 4 (4) - HashTablesBuildTime: 158.540us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 9.899us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 320.00 KB (327680) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 320.00 KB (327680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4 (4) - HashCollisions: 0 (0) - Probes: 7 (7) - Resizes: 0 (0) - Travel: 0 (0) AGGREGATION_NODE (id=190):(Total: 2s008ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s313ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s312ms (2s007ms) - First Batch Requested: 3s313ms (447.245us) - First Batch Returned: 3s313ms (35.046us) - Last Batch Returned: 3s313ms (262.532us) - Closed: 3s313ms (73.096us) - PeakMemoryUsage: 1.96 MB (2053248) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 70.191us - GetResultsTime: 96.119us - HTResizeTime: 2.333us - LargestPartitionPercent: 25 (25) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 4 (4) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 1.534ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 512.00 KB (524288) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.521ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 4.10K (4096) - HashCollisions: 0 (0) - Probes: 4 (4) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=189):(Total: 2s004ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s312ms - Open Started: 1s305ms (1s305ms) - Open Finished: 3s302ms (1s997ms) - First Batch Requested: 3s304ms (2.706ms) - First Batch Returned: 3s312ms (7.299ms) - Last Batch Returned: 3s312ms (776.000ns) - Closed: 3s312ms (119.148us) - ConvertRowBatchTime: 4.750us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 4 (4) - RowsReturnedRate: 1.00 /sec Buffer pool: - AllocTime: 3.072us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0, 0, 0 - FirstBatchWaitTime: 1s997ms - TotalBytesDequeued: 180.00 B (180) - TotalGetBatchTime: 2s004ms - DataWaitTime: 2s004ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0, 0, 0 - DispatchTime: (Avg: -42500.000ns ; Min: -42500.000ns ; Max: -42500.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 24.240us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 103.00 B (103) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F67:(Total: 3s196ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.66 MB, max: 5.66 MB, avg: 5.66 MB, stddev: 0 completion times: min:8s055ms max:8s055ms mean: 8s055ms stddev:0.000ns execution rates: min:719.74 KB/sec max:719.74 KB/sec mean:719.74 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.88 MB (4072554) - PeakReservation: 3.19 MB (3342336) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 40 (40) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.370ms - TotalStorageWaitTime: 99.872ms - TotalThreadsInvoluntaryContextSwitches: 483 (483) - TotalThreadsTotalWallClockTime: 3s195ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 536.034ms - TotalThreadsVoluntaryContextSwitches: 40 (40) Fragment Instance Lifecycle Timings: - ExecTime: 29.614ms - ExecTreeExecTime: 10.186ms - OpenTime: 3s166ms - ExecTreeOpenTime: 1s041ms - PrepareTime: 822.007us - ExecTreePrepareTime: 512.280us KrpcDataStreamSender (dst_id=189):(Total: 19.416ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 12 (12) - PeakMemoryUsage: 89.44 KB (91584) - RowsSent: 40 (40) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 77.480us - TotalBytesSent: 1013.00 B (1013) - UncompressedRowBatchSize: 1.76 KB (1800) AGGREGATION_NODE (id=110):(Total: 1s051ms, non-child: 0.000ns, % non-child: 0.00%) - PeakMemoryUsage: 2.10 MB (2202752) - RowsReturned: 40 (40) - RowsReturnedRate: 38.00 /sec GroupingAggregator 0: - BuildTime: 0.000ns - GetResultsTime: 591.726us - HTResizeTime: 299.996us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 40 (40) - StreamingTime: 626.959us Buffer pool: - AllocTime: 108.924us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 85.464us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.04K (1039) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=109):(Total: 1s042ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 99.12 KB (101504) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 85.781us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 997.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=108):(Total: 362.178ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.136us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 2.87 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=105):(Total: 361.491ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 924.19 KB (946371) - BytesReadDataNodeCache: 0 - BytesReadLocal: 924.19 KB (946371) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 924.19 KB (946371) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 291.612us - MaterializeTupleTime: 224.066ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.79 MB (1872733) - PerReadThreadRawHdfsThroughput: 16.65 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 71.76K (71763) - RowsReturned: 1.04K (1039) - RowsReturnedRate: 2.87 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 99.872ms - TotalRawHdfsOpenFileTime: 2.108ms - TotalRawHdfsReadTime: 54.210ms - TotalReadThroughput: 264.05 KB/sec Buffer pool: - AllocTime: 32.365us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.31 MB (1376256) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.19 MB (1245184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.19 MB (1245184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.836us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 56 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 71.76K (71763) - Rows rejected: 3.13K (3130) - Rows total: 71.76K (71763) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 58 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 68.63K (68633) - Rows rejected: 67.59K (67594) - Rows total: 68.63K (68633) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F67: Instance 50467cb8e73eeac4:853461b400000117 (host=tarmstrong-Precision-7540:22001):(Total: 3s196ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.944 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.66 MB Fragment Instance Lifecycle Event Timeline: 3s319ms - Prepare Finished: 121.095ms (121.095ms) - Open Finished: 3s287ms (3s166ms) - First Batch Produced: 3s296ms (9.225ms) - First Batch Sent: 3s296ms (3.392us) - ExecInternal Finished: 3s319ms (22.624ms) - MemoryUsage (500.000ms): 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 120.81 KB, 1.83 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 3.88 MB (4072554) - PeakReservation: 3.19 MB (3342336) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 40 (40) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.370ms - TotalStorageWaitTime: 99.872ms - TotalThreadsInvoluntaryContextSwitches: 483 (483) - TotalThreadsTotalWallClockTime: 3s195ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 536.034ms - TotalThreadsVoluntaryContextSwitches: 40 (40) Fragment Instance Lifecycle Timings: - ExecTime: 29.614ms - ExecTreeExecTime: 10.186ms - OpenTime: 3s166ms - ExecTreeOpenTime: 1s041ms - PrepareTime: 822.007us - ExecTreePrepareTime: 512.280us KrpcDataStreamSender (dst_id=189):(Total: 19.416ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0, 0, 0, 0, 0 - NetworkThroughput: (Avg: 114.31 KB/sec ; Min: 19.24 KB/sec ; Max: 330.50 KB/sec ; Number of samples: 12) - RpcNetworkTime: (Avg: 1.318ms ; Min: 304.340us ; Max: 4.958ms ; Number of samples: 24) - RpcRecvrTime: (Avg: -369796.000ns ; Min: -4638602.000ns ; Max: -36935.000ns ; Number of samples: 24) - EosSent: 12 (12) - PeakMemoryUsage: 89.44 KB (91584) - RowsSent: 40 (40) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 77.480us - TotalBytesSent: 1013.00 B (1013) - UncompressedRowBatchSize: 1.76 KB (1800) AGGREGATION_NODE (id=110):(Total: 1s051ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 3s297ms - Open Started: 2s246ms (2s246ms) - Open Finished: 3s287ms (1s041ms) - First Batch Requested: 3s287ms (31.602us) - First Batch Returned: 3s296ms (9.218ms) - Last Batch Returned: 3s297ms (1.209ms) - Closed: 3s297ms (98.433us) - PeakMemoryUsage: 2.10 MB (2202752) - RowsReturned: 40 (40) - RowsReturnedRate: 38.00 /sec GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 591.726us - HTResizeTime: 299.996us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.01 MB (2110592) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 40 (40) - StreamingTime: 626.959us Buffer pool: - AllocTime: 108.924us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 85.464us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 30.72K (30720) - HashCollisions: 0 (0) - Probes: 1.04K (1039) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=109):(Total: 1s042ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s296ms - Open Started: 2s246ms (2s246ms) - Waiting for builder: 3s270ms (1s024ms) - Initial build available: 3s270ms (4.160us) - Open Finished: 3s286ms (15.251ms) - First Batch Requested: 3s287ms (1.038ms) - First Batch Returned: 3s287ms (88.770us) - Last Batch Returned: 3s289ms (1.849ms) - Closed: 3s296ms (7.195ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 99.12 KB (101504) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 85.781us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 997.00 /sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=108):(Total: 362.178ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 3s296ms - Open Started: 2s910ms (2s910ms) - Waiting for builder: 2s910ms (264.179us) - Initial build available: 2s910ms (2.803us) - Open Finished: 3s270ms (360.288ms) - First Batch Requested: 3s286ms (15.228ms) - First Batch Returned: 3s286ms (90.286us) - Last Batch Returned: 3s288ms (2.724ms) - Closed: 3s296ms (7.442ms) - BuildRows: 0 (0) - BuildTime: 0.000ns - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 1.04K (1039) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 86.136us - RowsReturned: 1.04K (1039) - RowsReturnedRate: 2.87 K/sec Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HDFS_SCAN_NODE (id=105):(Total: 361.491ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_returns Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.66 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0. Maximum arrival delay: 865ms. Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 3s296ms - Closed: 3s296ms (3s296ms) - BytesReadSeries (500.000ms): 0, 0, 0, 0, 0, 0, 924.19 KB - FooterProcessingTime: (Avg: 38.443ms ; Min: 38.443ms ; Max: 38.443ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 125.72 KB (128735) ; Min: 55.96 KB (57304) ; Max: 173.40 KB (177560) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 50.29 KB (51494) ; Min: 11.41 KB (11688) ; Max: 67.55 KB (69170) ; Number of samples: 10) - ParquetRowGroupActualReservation: (Avg: 1.19 MB (1245184) ; Min: 1.19 MB (1245184) ; Max: 1.19 MB (1245184) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 1.19 MB (1245184) ; Min: 1.19 MB (1245184) ; Max: 1.19 MB (1245184) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 127.59 KB (130652) ; Min: 58.04 KB (59435) ; Max: 175.16 KB (179365) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 51.04 KB (52261) ; Min: 11.43 KB (11706) ; Max: 68.84 KB (70495) ; Number of samples: 10) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 924.19 KB (946371) - BytesReadDataNodeCache: 0 - BytesReadLocal: 924.19 KB (946371) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 924.19 KB (946371) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 291.612us - MaterializeTupleTime: 224.066ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 10 (10) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.79 MB (1872733) - PerReadThreadRawHdfsThroughput: 16.65 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 71.76K (71763) - RowsReturned: 1.04K (1039) - RowsReturnedRate: 2.87 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 99.872ms - TotalRawHdfsOpenFileTime: 2.108ms - TotalRawHdfsReadTime: 54.210ms - TotalReadThroughput: 264.05 KB/sec Buffer pool: - AllocTime: 32.365us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.31 MB (1376256) - CumulativeAllocations: 5 (5) - EncryptionTime: 0.000ns - PeakReservation: 1.19 MB (1245184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.19 MB (1245184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.836us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 56 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 71.76K (71763) - Rows rejected: 3.13K (3130) - Rows total: 71.76K (71763) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 58 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 68.63K (68633) - Rows rejected: 67.59K (67594) - Rows total: 68.63K (68633) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F109:(Total: 3s185ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s064ms max:8s064ms mean: 8s064ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 14.029us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 155 (155) - TotalThreadsTotalWallClockTime: 3s185ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.230ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 2s444ms - ExecTreeExecTime: 59.329us - OpenTime: 740.816ms - ExecTreeOpenTime: 9.904us - PrepareTime: 256.822us - ExecTreePrepareTime: 119.534us Hash Join Builder (join_node_id=109):(Total: 2s445ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 200.377us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 414.494us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 59.418us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 47.721us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.10K (1099) - Resizes: 0 (0) - Travel: 613 (613) EXCHANGE_NODE (id=188):(Total: 66.352us, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 39.227us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 904.27 K/sec Buffer pool: - AllocTime: 6.336us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.554us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 12.633us - DataWaitTime: 0.000ns Enqueue: - DeserializeRowBatchTime: 23.848us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F109: Instance 50467cb8e73eeac4:853461b400000125 (host=tarmstrong-Precision-7540:22001):(Total: 3s185ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.953 Fragment Instance Lifecycle Event Timeline: 3s289ms - Prepare Finished: 104.090ms (104.090ms) - Open Finished: 844.919ms (740.828ms) - First Batch Produced: 844.982ms (63.166us) - First Batch Sent: 845.185ms (202.910us) - ExecInternal Finished: 3s289ms (2s444ms) - MemoryUsage (500.000ms): 17.12 KB, 33.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 14.029us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 155 (155) - TotalThreadsTotalWallClockTime: 3s185ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 159.230ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 2s444ms - ExecTreeExecTime: 59.329us - OpenTime: 740.816ms - ExecTreeOpenTime: 9.904us - PrepareTime: 256.822us - ExecTreePrepareTime: 119.534us Hash Join Builder (join_node_id=109):(Total: 2s445ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 200.377us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 414.494us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 59.418us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 47.721us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.10K (1099) - Resizes: 0 (0) - Travel: 613 (613) EXCHANGE_NODE (id=188):(Total: 66.352us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 845.247ms - Open Started: 843.928ms (843.928ms) - Open Finished: 843.935ms (7.418us) - First Batch Requested: 844.924ms (988.423us) - First Batch Returned: 844.980ms (56.246us) - Last Batch Returned: 844.981ms (453.000ns) - Closed: 845.247ms (266.421us) - ConvertRowBatchTime: 39.227us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 904.27 K/sec Buffer pool: - AllocTime: 6.336us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.554us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 12.633us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0, 484.00 B - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -77456.000ns ; Min: -77456.000ns ; Max: -77456.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 23.848us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F69:(Total: 504.950ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.56 KB, max: 5.56 KB, avg: 5.56 KB, stddev: 0 completion times: min:8s052ms max:8s052ms mean: 8s052ms stddev:0.000ns execution rates: min:707.00 B/sec max:707.00 B/sec mean:707.00 B/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.08 - PeakMemoryUsage: 54.83 KB (56144) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 44.377ms - TotalStorageWaitTime: 20.223ms - TotalThreadsInvoluntaryContextSwitches: 21 (21) - TotalThreadsTotalWallClockTime: 504.563ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 37.606ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 396.054ms - ExecTreeExecTime: 351.547ms - OpenTime: 108.516ms - ExecTreeOpenTime: 192.387us - PrepareTime: 309.895us - ExecTreePrepareTime: 121.825us KrpcDataStreamSender (dst_id=188):(Total: 44.504ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.911us - TotalBytesSent: 484.00 B (484) - UncompressedRowBatchSize: 780.00 B (780) HDFS_SCAN_NODE (id=107):(Total: 351.887ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 5.755us - MaterializeTupleTime: 11.396us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 3.63 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 170.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 20.223ms - TotalRawHdfsOpenFileTime: 11.830us - TotalRawHdfsReadTime: 1.584ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.464us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.664us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F69: Instance 50467cb8e73eeac4:853461b400000124 (host=tarmstrong-Precision-7540:22001):(Total: 504.950ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.942 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB Fragment Instance Lifecycle Event Timeline: 600.213ms - Prepare Finished: 95.587ms (95.587ms) - Open Finished: 204.111ms (108.524ms) - First Batch Produced: 555.552ms (351.441ms) - First Batch Sent: 555.593ms (41.163us) - ExecInternal Finished: 600.213ms (44.619ms) - MemoryUsage (500.000ms): 33.59 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.08 - PeakMemoryUsage: 54.83 KB (56144) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 44.377ms - TotalStorageWaitTime: 20.223ms - TotalThreadsInvoluntaryContextSwitches: 21 (21) - TotalThreadsTotalWallClockTime: 504.563ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 37.606ms - TotalThreadsVoluntaryContextSwitches: 6 (6) Fragment Instance Lifecycle Timings: - ExecTime: 396.054ms - ExecTreeExecTime: 351.547ms - OpenTime: 108.516ms - ExecTreeOpenTime: 192.387us - PrepareTime: 309.895us - ExecTreePrepareTime: 121.825us KrpcDataStreamSender (dst_id=188):(Total: 44.504ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 10.66 KB/sec ; Min: 10.66 KB/sec ; Max: 10.66 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 22.349ms ; Min: 345.312us ; Max: 44.354ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -84300.000ns ; Min: -107293.000ns ; Max: -61307.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 25.59 KB (26208) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.911us - TotalBytesSent: 484.00 B (484) - UncompressedRowBatchSize: 780.00 B (780) HDFS_SCAN_NODE (id=107):(Total: 351.887ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_page Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 555.758ms - Closed: 555.758ms (555.758ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 19.824ms ; Min: 19.824ms ; Max: 19.824ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 5.755us - MaterializeTupleTime: 11.396us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 3.63 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 170.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 20.223ms - TotalRawHdfsOpenFileTime: 11.830us - TotalRawHdfsReadTime: 1.584ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.464us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.664us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F110:(Total: 3s210ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:8s045ms max:8s045ms mean: 8s045ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 353.668ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 40 (40) - TotalThreadsTotalWallClockTime: 3s209ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 156.911ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 2s314ms - ExecTreeExecTime: 4.039ms - OpenTime: 894.922ms - ExecTreeOpenTime: 349.676ms - PrepareTime: 340.296us - ExecTreePrepareTime: 170.183us Hash Join Builder (join_node_id=108):(Total: 2s311ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 203.709us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 442.808us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 46.876us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.298us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.07K (1070) - Resizes: 0 (0) - Travel: 553 (553) EXCHANGE_NODE (id=187):(Total: 353.709ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.233us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 87.00 /sec Buffer pool: - AllocTime: 5.784ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.778ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 349.657ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 353.664ms - DataWaitTime: 353.648ms Enqueue: - DeserializeRowBatchTime: 5.812ms - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F110: Instance 50467cb8e73eeac4:853461b400000127 (host=tarmstrong-Precision-7540:22001):(Total: 3s210ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.934 Fragment Instance Lifecycle Event Timeline: 3s295ms - Prepare Finished: 85.941ms (85.941ms) - Open Finished: 980.880ms (894.938ms) - First Batch Produced: 984.923ms (4.043ms) - First Batch Sent: 985.132ms (208.318us) - ExecInternal Finished: 3s295ms (2s310ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 353.668ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 40 (40) - TotalThreadsTotalWallClockTime: 3s209ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 156.911ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 2s314ms - ExecTreeExecTime: 4.039ms - OpenTime: 894.922ms - ExecTreeOpenTime: 349.676ms - PrepareTime: 340.296us - ExecTreePrepareTime: 170.183us Hash Join Builder (join_node_id=108):(Total: 2s311ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 203.709us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 442.808us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 46.876us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.298us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.07K (1070) - Resizes: 0 (0) - Travel: 553 (553) EXCHANGE_NODE (id=187):(Total: 353.709ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 985.179ms - Open Started: 630.097ms (630.097ms) - Open Finished: 979.766ms (349.669ms) - First Batch Requested: 980.885ms (1.119ms) - First Batch Returned: 984.920ms (4.035ms) - Last Batch Returned: 984.921ms (1.129us) - Closed: 985.179ms (257.904us) - ConvertRowBatchTime: 22.233us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 87.00 /sec Buffer pool: - AllocTime: 5.784ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.778ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 349.657ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 353.664ms - DataWaitTime: 353.648ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -66341.000ns ; Min: -66341.000ns ; Max: -66341.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 5.812ms - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F68:(Total: 922.466ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s050ms max:8s050ms mean: 8s050ms stddev:0.000ns execution rates: min:274.01 KB/sec max:274.01 KB/sec mean:274.01 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 244.957us - TotalStorageWaitTime: 13.314us - TotalThreadsInvoluntaryContextSwitches: 75 (75) - TotalThreadsTotalWallClockTime: 922.075ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 212.073ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 132.283ms - ExecTreeExecTime: 100.113ms - OpenTime: 789.799ms - ExecTreeOpenTime: 313.011us - PrepareTime: 320.623us - ExecTreePrepareTime: 145.988us KrpcDataStreamSender (dst_id=187):(Total: 21.858ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.458ms - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=106):(Total: 100.613ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 23.698us - MaterializeTupleTime: 54.711ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 132.23 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 308.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 13.314us - TotalRawHdfsOpenFileTime: 52.236us - TotalRawHdfsReadTime: 3.223ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 47.896us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 38.281us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F68: Instance 50467cb8e73eeac4:853461b400000126 (host=tarmstrong-Precision-7540:22001):(Total: 922.466ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.939 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 984.756ms - Prepare Finished: 62.591ms (62.591ms) - Open Finished: 852.400ms (789.808ms) - First Batch Produced: 952.193ms (99.792ms) - First Batch Sent: 973.703ms (21.509ms) - ExecInternal Finished: 984.756ms (11.052ms) - MemoryUsage (500.000ms): 15.52 KB, 15.52 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.32 MB (2436760) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 244.957us - TotalStorageWaitTime: 13.314us - TotalThreadsInvoluntaryContextSwitches: 75 (75) - TotalThreadsTotalWallClockTime: 922.075ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 212.073ms - TotalThreadsVoluntaryContextSwitches: 22 (22) Fragment Instance Lifecycle Timings: - ExecTime: 132.283ms - ExecTreeExecTime: 100.113ms - OpenTime: 789.799ms - ExecTreeOpenTime: 313.011us - PrepareTime: 320.623us - ExecTreePrepareTime: 145.988us KrpcDataStreamSender (dst_id=187):(Total: 21.858ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 32.07 KB/sec ; Min: 32.07 KB/sec ; Max: 32.07 KB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 9.716ms ; Min: 6.155ms ; Max: 13.276ms ; Number of samples: 2) - RpcRecvrTime: (Avg: -2981357.000ns ; Min: -5894426.000ns ; Max: -68288.000ns ; Number of samples: 2) - EosSent: 1 (1) - PeakMemoryUsage: 7.52 KB (7704) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.458ms - TotalBytesSent: 436.00 B (436) - UncompressedRowBatchSize: 1.06 KB (1085) HDFS_SCAN_NODE (id=106):(Total: 100.613ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 984.384ms - Closed: 984.384ms (984.384ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 252.432us ; Min: 252.432us ; Max: 252.432us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 651.932us ; Min: 651.932us ; Max: 651.932us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 23.698us - MaterializeTupleTime: 54.711ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 132.23 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 308.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 13.314us - TotalRawHdfsOpenFileTime: 52.236us - TotalRawHdfsReadTime: 3.223ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 47.896us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 38.281us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F111:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m1s max:1m4s mean: 1m3s stddev:879.622ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 178.144ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 51 (51) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 154.334ms - TotalThreadsVoluntaryContextSwitches: 21 (21) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 32.998ms - OpenTime: 588.331ms - ExecTreeOpenTime: 145.192ms - PrepareTime: 269.993us - ExecTreePrepareTime: 127.755us Hash Join Builder (join_node_id=81):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 161.374us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 366.445us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 44.555us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.762us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 19.77K (19775) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=169):(Total: 178.184ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 16.504us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 294.00 /sec Buffer pool: - AllocTime: 6.731us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.014us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 145.170ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 178.141ms - DataWaitTime: 178.128ms Enqueue: - DeserializeRowBatchTime: 26.999us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F111: Instance 50467cb8e73eeac4:853461b40000012a (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.029 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 19.931ms (19.931ms) - Open Finished: 622.556ms (602.624ms) - First Batch Produced: 622.593ms (37.389us) - First Batch Sent: 622.747ms (154.079us) - ExecInternal Finished: 1m3s (1m2s) - MemoryUsage (1s000ms): 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 15.547ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 51 (51) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 154.844ms - TotalThreadsVoluntaryContextSwitches: 42 (42) Fragment Instance Lifecycle Timings: - ExecTime: 1m2s - ExecTreeExecTime: 33.068us - OpenTime: 602.612ms - ExecTreeOpenTime: 15.561ms - PrepareTime: 310.444us - ExecTreePrepareTime: 131.642us Hash Join Builder (join_node_id=81):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 150.722us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 421.676us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 29.212us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 18.811us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 18.73K (18728) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=169):(Total: 15.591ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 622.814ms - Open Started: 606.303ms (606.303ms) - Open Finished: 621.861ms (15.558ms) - First Batch Requested: 622.562ms (700.858us) - First Batch Returned: 622.591ms (29.836us) - Last Batch Returned: 622.592ms (495.000ns) - Closed: 622.814ms (221.953us) - ConvertRowBatchTime: 12.526us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 769.00 /sec Buffer pool: - AllocTime: 4.914us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.822us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 15.531ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 15.545ms - DataWaitTime: 15.531ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -481560.000ns ; Min: -481560.000ns ; Max: -481560.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 25.209us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000129 (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 46.996ms (46.996ms) - Open Finished: 599.660ms (552.663ms) - First Batch Produced: 638.319ms (38.659ms) - First Batch Sent: 638.511ms (191.878us) - ExecInternal Finished: 1m2s (1m1s) - MemoryUsage (1s000ms): 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 143.805ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 24 (24) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 154.633ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 38.654ms - OpenTime: 552.649ms - ExecTreeOpenTime: 105.197ms - PrepareTime: 324.532us - ExecTreePrepareTime: 165.323us Hash Join Builder (join_node_id=81):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 188.051us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 359.103us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 76.466us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 63.081us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 19.08K (19077) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=169):(Total: 143.848ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 638.569ms - Open Started: 493.428ms (493.428ms) - Open Finished: 598.621ms (105.193ms) - First Batch Requested: 599.664ms (1.043ms) - First Batch Returned: 638.314ms (38.649ms) - Last Batch Returned: 638.316ms (2.472us) - Closed: 638.569ms (253.329us) - ConvertRowBatchTime: 25.282us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 83.00 /sec Buffer pool: - AllocTime: 10.121us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.638us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 105.182ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 143.802ms - DataWaitTime: 143.790ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -70916.000ns ; Min: -70916.000ns ; Max: -70916.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 29.950us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000012b (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.849 Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 480.558us (480.558us) - Open Finished: 610.224ms (609.743ms) - First Batch Produced: 670.535ms (60.310ms) - First Batch Sent: 670.684ms (149.852us) - ExecInternal Finished: 1m (1m) - MemoryUsage (1s000ms): 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 375.082ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 79 (79) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 153.527ms - TotalThreadsVoluntaryContextSwitches: 13 (13) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 60.306ms - OpenTime: 609.732ms - ExecTreeOpenTime: 314.817ms - PrepareTime: 175.004us - ExecTreePrepareTime: 86.300us Hash Join Builder (join_node_id=81):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 145.351us - BuildRowsPartitioned: 12 (12) - HashTablesBuildTime: 318.558us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 27.989us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 832.00 KB (851968) - CumulativeAllocations: 13 (13) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 832.00 KB (851968) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 16.395us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12 (12) - HashCollisions: 0 (0) - Probes: 21.52K (21521) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=169):(Total: 375.113ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 670.755ms - Open Started: 294.797ms (294.797ms) - Open Finished: 609.610ms (314.813ms) - First Batch Requested: 610.236ms (625.955us) - First Batch Returned: 670.532ms (60.296ms) - Last Batch Returned: 670.533ms (647.000ns) - Closed: 670.755ms (221.901us) - ConvertRowBatchTime: 11.706us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 12 (12) - RowsReturnedRate: 31.00 /sec Buffer pool: - AllocTime: 5.158us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.585us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 314.798ms - TotalBytesDequeued: 156.00 B (156) - TotalGetBatchTime: 375.077ms - DataWaitTime: 375.064ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -72525.000ns ; Min: -72525.000ns ; Max: -72525.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 25.840us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 100.00 B (100) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F51:(Total: 605.129ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 9.93 KB, max: 9.93 KB, avg: 9.93 KB, stddev: 0 completion times: min:8s052ms max:8s052ms mean: 8s052ms stddev:0.000ns execution rates: min:1.23 KB/sec max:1.23 KB/sec mean:1.23 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.03 - PeakMemoryUsage: 113.83 KB (116560) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 83.919ms - TotalStorageWaitTime: 19.084ms - TotalThreadsInvoluntaryContextSwitches: 38 (38) - TotalThreadsTotalWallClockTime: 604.771ms - TotalThreadsSysTime: 3.512ms - TotalThreadsUserTime: 35.127ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 488.015ms - ExecTreeExecTime: 403.519ms - OpenTime: 116.764ms - ExecTreeOpenTime: 200.812us - PrepareTime: 291.209us - ExecTreePrepareTime: 105.474us KrpcDataStreamSender (dst_id=169):(Total: 84.142ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 76.78 KB (78624) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.806us - TotalBytesSent: 300.00 B (300) - UncompressedRowBatchSize: 468.00 B (468) HDFS_SCAN_NODE (id=79):(Total: 403.849ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 1 (1) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.838us - MaterializeTupleTime: 46.863us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 1.41 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 29.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 19.084ms - TotalRawHdfsOpenFileTime: 10.720ms - TotalRawHdfsReadTime: 6.943ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 10.131us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.354us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F51: Instance 50467cb8e73eeac4:853461b400000128 (host=tarmstrong-Precision-7540:22001):(Total: 605.129ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.941 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB Fragment Instance Lifecycle Event Timeline: 639.412ms - Prepare Finished: 34.559ms (34.559ms) - Open Finished: 151.332ms (116.772ms) - First Batch Produced: 554.708ms (403.375ms) - First Batch Sent: 554.801ms (93.304us) - ExecInternal Finished: 639.412ms (84.611ms) - MemoryUsage (500.000ms): 100.78 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.03 - PeakMemoryUsage: 113.83 KB (116560) - PeakReservation: 16.00 KB (16384) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 12 (12) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 83.919ms - TotalStorageWaitTime: 19.084ms - TotalThreadsInvoluntaryContextSwitches: 38 (38) - TotalThreadsTotalWallClockTime: 604.771ms - TotalThreadsSysTime: 3.512ms - TotalThreadsUserTime: 35.127ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Fragment Instance Lifecycle Timings: - ExecTime: 488.015ms - ExecTreeExecTime: 403.519ms - OpenTime: 116.764ms - ExecTreeOpenTime: 200.812us - PrepareTime: 291.209us - ExecTreePrepareTime: 105.474us KrpcDataStreamSender (dst_id=169):(Total: 84.142ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 2.53 KB/sec ; Min: 1.25 KB/sec ; Max: 4.16 KB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 26.998ms ; Min: 990.153us ; Max: 77.920ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -202025.000ns ; Min: -527438.000ns ; Max: -59585.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 76.78 KB (78624) - RowsSent: 12 (12) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.806us - TotalBytesSent: 300.00 B (300) - UncompressedRowBatchSize: 468.00 B (468) HDFS_SCAN_NODE (id=79):(Total: 403.849ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.store Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/9.93 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 555.366ms - Closed: 555.366ms (555.366ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 17.780ms ; Min: 17.780ms ; Max: 17.780ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 18.00 B (18) ; Min: 18.00 B (18) ; Max: 18.00 B (18) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 16.00 KB (16384) ; Min: 16.00 KB (16384) ; Max: 16.00 KB (16384) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 16.00 B (16) ; Min: 16.00 B (16) ; Max: 16.00 B (16) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.03 KB (10268) - BytesReadDataNodeCache: 0 - BytesReadLocal: 10.03 KB (10268) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.03 KB (10268) - CachedFileHandlesHitCount: 1 (1) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 9.838us - MaterializeTupleTime: 46.863us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 29.05 KB (29744) - PerReadThreadRawHdfsThroughput: 1.41 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 12 (12) - RowsReturned: 12 (12) - RowsReturnedRate: 29.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 19.084ms - TotalRawHdfsOpenFileTime: 10.720ms - TotalRawHdfsReadTime: 6.943ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 10.131us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 24.00 KB (24576) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.354us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F112:(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m1s max:1m4s mean: 1m3s stddev:880.123ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 327.138ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 67 (67) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 2.476ms - TotalThreadsUserTime: 149.657ms - TotalThreadsVoluntaryContextSwitches: 24 (24) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 4.848ms - OpenTime: 801.580ms - ExecTreeOpenTime: 322.331ms - PrepareTime: 254.479us - ExecTreePrepareTime: 120.767us Hash Join Builder (join_node_id=80):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 381.346us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 3.514ms - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 220.686us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 201.965us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 617.96K (617959) - Resizes: 0 (0) - Travel: 458.57K (458572) EXCHANGE_NODE (id=168):(Total: 327.177ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.432us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 114.00 /sec Buffer pool: - AllocTime: 4.250us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 693.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 322.318ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 327.136ms - DataWaitTime: 327.126ms Enqueue: - DeserializeRowBatchTime: 26.951us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F112: Instance 50467cb8e73eeac4:853461b40000012e (host=tarmstrong-Precision-7540:22000):(Total: 1m3s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:14.030 Fragment Instance Lifecycle Event Timeline: 1m3s - Prepare Finished: 7.753ms (7.753ms) - Open Finished: 800.200ms (792.447ms) - First Batch Produced: 800.242ms (42.092us) - First Batch Sent: 800.947ms (704.439us) - ExecInternal Finished: 1m3s (1m2s) - MemoryUsage (1s000ms): 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 185.006ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 45 (45) - TotalThreadsTotalWallClockTime: 1m3s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 153.057ms - TotalThreadsVoluntaryContextSwitches: 36 (36) Fragment Instance Lifecycle Timings: - ExecTime: 1m2s - ExecTreeExecTime: 37.886us - OpenTime: 792.436ms - ExecTreeOpenTime: 185.007ms - PrepareTime: 251.232us - ExecTreePrepareTime: 121.433us Hash Join Builder (join_node_id=80):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 701.762us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 371.804us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 556.695us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 528.957us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 917.94K (917944) - Resizes: 0 (0) - Travel: 686.88K (686878) EXCHANGE_NODE (id=168):(Total: 185.043ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 801.028ms - Open Started: 607.632ms (607.632ms) - Open Finished: 792.637ms (185.004ms) - First Batch Requested: 800.205ms (7.568ms) - First Batch Returned: 800.240ms (35.248us) - Last Batch Returned: 800.240ms (453.000ns) - Closed: 801.028ms (787.560us) - ConvertRowBatchTime: 21.756us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 167.00 /sec Buffer pool: - AllocTime: 4.794us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.079us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 184.994ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 185.003ms - DataWaitTime: 184.994ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -55817.000ns ; Min: -55817.000ns ; Max: -55817.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 26.862us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000012d (host=tarmstrong-Precision-7540:22001):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 27.720ms (27.720ms) - Open Finished: 804.964ms (777.244ms) - First Batch Produced: 809.955ms (4.990ms) - First Batch Sent: 810.190ms (235.157us) - ExecInternal Finished: 1m2s (1m1s) - MemoryUsage (1s000ms): 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 260.984ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 65 (65) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 154.771ms - TotalThreadsVoluntaryContextSwitches: 19 (19) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 4.986ms - OpenTime: 777.235ms - ExecTreeOpenTime: 256.040ms - PrepareTime: 324.596us - ExecTreePrepareTime: 152.063us Hash Join Builder (join_node_id=80):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 231.538us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 9.790ms - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 64.705us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 49.902us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 913.92K (913918) - Resizes: 0 (0) - Travel: 677.13K (677126) EXCHANGE_NODE (id=168):(Total: 261.024ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 810.247ms - Open Started: 547.862ms (547.862ms) - Open Finished: 803.899ms (256.036ms) - First Batch Requested: 804.968ms (1.069ms) - First Batch Returned: 809.951ms (4.982ms) - Last Batch Returned: 809.952ms (906.000ns) - Closed: 810.247ms (295.705us) - ConvertRowBatchTime: 22.520us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 118.00 /sec Buffer pool: - AllocTime: 3.821us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 256.025ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 260.981ms - DataWaitTime: 260.970ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -51102.000ns ; Min: -51102.000ns ; Max: -51102.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 26.288us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b40000012f (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.849 Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 415.346us (415.346us) - Open Finished: 835.496ms (835.081ms) - First Batch Produced: 845.020ms (9.524ms) - First Batch Sent: 845.236ms (215.529us) - ExecInternal Finished: 1m (59s998ms) - MemoryUsage (1s000ms): 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 535.425ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 92 (92) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 7.430ms - TotalThreadsUserTime: 141.145ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 9.520ms - OpenTime: 835.070ms - ExecTreeOpenTime: 525.946ms - PrepareTime: 187.610us - ExecTreePrepareTime: 88.805us Hash Join Builder (join_node_id=80):(Total: 59s999ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 210.739us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 381.178us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 40.658us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 27.037us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 22.02K (22015) - Resizes: 0 (0) - Travel: 11.71K (11712) EXCHANGE_NODE (id=168):(Total: 535.464ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 845.287ms - Open Started: 308.928ms (308.928ms) - Open Finished: 834.871ms (525.942ms) - First Batch Requested: 835.500ms (629.659us) - First Batch Returned: 845.017ms (9.516ms) - Last Batch Returned: 845.018ms (823.000ns) - Closed: 845.287ms (269.475us) - ConvertRowBatchTime: 23.021us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 57.00 /sec Buffer pool: - AllocTime: 4.135us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 525.934ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 535.423ms - DataWaitTime: 535.412ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: -66538.000ns ; Min: -66538.000ns ; Max: -66538.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.703us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F50:(Total: 795.268ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s049ms max:8s049ms mean: 8s049ms stddev:0.000ns execution rates: min:274.06 KB/sec max:274.06 KB/sec mean:274.06 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 7.251us - TotalStorageWaitTime: 1.310ms - TotalThreadsInvoluntaryContextSwitches: 136 (136) - TotalThreadsTotalWallClockTime: 783.683ms - TotalThreadsSysTime: 7.889ms - TotalThreadsUserTime: 203.321ms - TotalThreadsVoluntaryContextSwitches: 20 (20) Fragment Instance Lifecycle Timings: - ExecTime: 86.534ms - ExecTreeExecTime: 81.093ms - OpenTime: 697.157ms - ExecTreeOpenTime: 278.348us - PrepareTime: 11.510ms - ExecTreePrepareTime: 11.308ms KrpcDataStreamSender (dst_id=168):(Total: 5.384ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.765us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=78):(Total: 92.723ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 24.370us - MaterializeTupleTime: 52.609ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 160.49 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 334.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.310ms - TotalRawHdfsOpenFileTime: 39.101us - TotalRawHdfsReadTime: 2.655ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 5.140ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.126ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F50: Instance 50467cb8e73eeac4:853461b40000012c (host=tarmstrong-Precision-7540:22001):(Total: 795.268ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.938 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 813.017ms - Prepare Finished: 29.244ms (29.244ms) - Open Finished: 726.410ms (697.165ms) - First Batch Produced: 802.372ms (75.962ms) - First Batch Sent: 804.054ms (1.681ms) - ExecInternal Finished: 813.017ms (8.963ms) - MemoryUsage (500.000ms): 30.57 KB, 30.57 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 7.251us - TotalStorageWaitTime: 1.310ms - TotalThreadsInvoluntaryContextSwitches: 136 (136) - TotalThreadsTotalWallClockTime: 783.683ms - TotalThreadsSysTime: 7.889ms - TotalThreadsUserTime: 203.321ms - TotalThreadsVoluntaryContextSwitches: 20 (20) Fragment Instance Lifecycle Timings: - ExecTime: 86.534ms - ExecTreeExecTime: 81.093ms - OpenTime: 697.157ms - ExecTreeOpenTime: 278.348us - PrepareTime: 11.510ms - ExecTreePrepareTime: 11.308ms KrpcDataStreamSender (dst_id=168):(Total: 5.384ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 1.02 MB/sec ; Min: 882.35 KB/sec ; Max: 1.24 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.413ms ; Min: 334.560us ; Max: 3.692ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -624942.000ns ; Min: -3344662.000ns ; Max: -51778.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.765us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=78):(Total: 92.723ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 809.315ms - Closed: 809.315ms (809.315ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 589.981us ; Min: 589.981us ; Max: 589.981us ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 524.684us ; Min: 524.684us ; Max: 524.684us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 24.370us - MaterializeTupleTime: 52.609ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 160.49 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 334.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.310ms - TotalRawHdfsOpenFileTime: 39.101us - TotalRawHdfsReadTime: 2.655ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 5.140ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.126ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F113:(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1m1s max:1m3s mean: 1m2s stddev:543.580ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 527.27 MB (552879532) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 226.497ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 48 (48) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 1.408ms - TotalThreadsUserTime: 152.277ms - TotalThreadsVoluntaryContextSwitches: 18 (18) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 2.946ms - OpenTime: 663.840ms - ExecTreeOpenTime: 223.593ms - PrepareTime: 267.461us - ExecTreePrepareTime: 128.288us Hash Join Builder (join_node_id=92):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 210.952us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 407.567us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 48.344us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 35.138us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 478.15K (478153) - Resizes: 0 (0) - Travel: 343.68K (343681) EXCHANGE_NODE (id=176):(Total: 226.537ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 24.431us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 299.00 /sec Buffer pool: - AllocTime: 7.442us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.008us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 223.581ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 226.494ms - DataWaitTime: 226.483ms Enqueue: - DeserializeRowBatchTime: 34.826us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F113: Instance 50467cb8e73eeac4:853461b400000132 (host=tarmstrong-Precision-7540:22000):(Total: 1m2s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:12.905 Fragment Instance Lifecycle Event Timeline: 1m2s - Prepare Finished: 1.127ms (1.127ms) - Open Finished: 652.510ms (651.382ms) - First Batch Produced: 654.210ms (1.700ms) - First Batch Sent: 654.429ms (219.894us) - ExecInternal Finished: 1m2s (1m1s) - MemoryUsage (1s000ms): 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 44.233ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 46 (46) - TotalThreadsTotalWallClockTime: 1m2s - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 153.002ms - TotalThreadsVoluntaryContextSwitches: 34 (34) Fragment Instance Lifecycle Timings: - ExecTime: 1m1s - ExecTreeExecTime: 1.695ms - OpenTime: 651.364ms - ExecTreeOpenTime: 42.581ms - PrepareTime: 266.672us - ExecTreePrepareTime: 135.837us Hash Join Builder (join_node_id=92):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 216.709us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 409.233us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 63.295us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 50.962us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 648.92K (648923) - Resizes: 0 (0) - Travel: 490.71K (490709) EXCHANGE_NODE (id=176):(Total: 44.274ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 654.479ms - Open Started: 608.865ms (608.865ms) - Open Finished: 651.443ms (42.577ms) - First Batch Requested: 652.515ms (1.071ms) - First Batch Returned: 654.207ms (1.692ms) - Last Batch Returned: 654.208ms (759.000ns) - Closed: 654.479ms (270.633us) - ConvertRowBatchTime: 25.480us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 700.00 /sec Buffer pool: - AllocTime: 11.505us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.494us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 42.571ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 44.231ms - DataWaitTime: 44.221ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -52330.000ns ; Min: -52330.000ns ; Max: -52330.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 40.533us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000131 (host=tarmstrong-Precision-7540:22001):(Total: 1m1s, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:13.122 Fragment Instance Lifecycle Event Timeline: 1m1s - Prepare Finished: 17.919ms (17.919ms) - Open Finished: 665.311ms (647.392ms) - First Batch Produced: 667.273ms (1.962ms) - First Batch Sent: 667.512ms (238.678us) - ExecInternal Finished: 1m1s (1m) - MemoryUsage (1s000ms): 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 277.625ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 1m1s - TotalThreadsSysTime: 4.226ms - TotalThreadsUserTime: 147.692ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 1.957ms - OpenTime: 647.382ms - ExecTreeOpenTime: 275.709ms - PrepareTime: 322.250us - ExecTreePrepareTime: 152.220us Hash Join Builder (join_node_id=92):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 234.301us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 375.176us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 50.790us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 35.766us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 652.96K (652959) - Resizes: 0 (0) - Travel: 389.43K (389428) EXCHANGE_NODE (id=176):(Total: 277.664ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 667.565ms - Open Started: 388.578ms (388.578ms) - Open Finished: 664.283ms (275.705ms) - First Batch Requested: 665.315ms (1.032ms) - First Batch Returned: 667.270ms (1.954ms) - Last Batch Returned: 667.271ms (908.000ns) - Closed: 667.565ms (294.583us) - ConvertRowBatchTime: 23.361us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 111.00 /sec Buffer pool: - AllocTime: 3.609us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 898.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 275.696ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 277.623ms - DataWaitTime: 277.612ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -41011.000ns ; Min: -41011.000ns ; Max: -41011.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 27.065us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000133 (host=tarmstrong-Precision-7540:22002):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:33:11.851 Fragment Instance Lifecycle Event Timeline: 1m - Prepare Finished: 395.215us (395.215us) - Open Finished: 693.183ms (692.787ms) - First Batch Produced: 698.373ms (5.190ms) - First Batch Sent: 698.559ms (186.033us) - ExecInternal Finished: 1m (1m) - MemoryUsage (1s000ms): 3.89 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (1s000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 392.51 MB (411577152) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 357.631ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 81 (81) - TotalThreadsTotalWallClockTime: 1m - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 156.138ms - TotalThreadsVoluntaryContextSwitches: 10 (10) Fragment Instance Lifecycle Timings: - ExecTime: 1m - ExecTreeExecTime: 5.185ms - OpenTime: 692.775ms - ExecTreeOpenTime: 352.490ms - PrepareTime: 213.462us - ExecTreePrepareTime: 96.807us Hash Join Builder (join_node_id=92):(Total: 1m, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 181.847us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 438.292us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 30.949us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 18.687us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 132.58K (132579) - Resizes: 0 (0) - Travel: 150.91K (150907) EXCHANGE_NODE (id=176):(Total: 357.673ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 698.608ms - Open Started: 339.951ms (339.951ms) - Open Finished: 692.439ms (352.487ms) - First Batch Requested: 693.189ms (749.972us) - First Batch Returned: 698.371ms (5.182ms) - Last Batch Returned: 698.371ms (783.000ns) - Closed: 698.608ms (237.066us) - ConvertRowBatchTime: 24.454us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 86.00 /sec Buffer pool: - AllocTime: 7.213us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.632us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 352.476ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 357.628ms - DataWaitTime: 357.615ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: -68313.000ns ; Min: -68313.000ns ; Max: -68313.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 36.881us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F58:(Total: 656.125ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s048ms max:8s048ms mean: 8s048ms stddev:0.000ns execution rates: min:274.09 KB/sec max:274.09 KB/sec mean:274.09 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.983us - TotalStorageWaitTime: 29.623ms - TotalThreadsInvoluntaryContextSwitches: 51 (51) - TotalThreadsTotalWallClockTime: 643.903ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 209.013ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 90.334ms - ExecTreeExecTime: 80.872ms - OpenTime: 553.579ms - ExecTreeOpenTime: 281.310us - PrepareTime: 12.166ms - ExecTreePrepareTime: 11.977ms KrpcDataStreamSender (dst_id=176):(Total: 9.410ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 28.486us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=91):(Total: 93.173ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 20.774us - MaterializeTupleTime: 17.249ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 37.17 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 332.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 29.623ms - TotalRawHdfsOpenFileTime: 17.815ms - TotalRawHdfsReadTime: 11.466ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 20.153us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.358us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F58: Instance 50467cb8e73eeac4:853461b400000130 (host=tarmstrong-Precision-7540:22001):(Total: 656.125ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.937 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 667.488ms - Prepare Finished: 23.501ms (23.501ms) - Open Finished: 577.092ms (553.590ms) - First Batch Produced: 657.720ms (80.627ms) - First Batch Sent: 664.416ms (6.696ms) - ExecInternal Finished: 667.488ms (3.072ms) - MemoryUsage (500.000ms): 30.57 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.34 MB (2452168) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.983us - TotalStorageWaitTime: 29.623ms - TotalThreadsInvoluntaryContextSwitches: 51 (51) - TotalThreadsTotalWallClockTime: 643.903ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 209.013ms - TotalThreadsVoluntaryContextSwitches: 25 (25) Fragment Instance Lifecycle Timings: - ExecTime: 90.334ms - ExecTreeExecTime: 80.872ms - OpenTime: 553.579ms - ExecTreeOpenTime: 281.310us - PrepareTime: 12.166ms - ExecTreePrepareTime: 11.977ms KrpcDataStreamSender (dst_id=176):(Total: 9.410ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 614.97 KB/sec ; Min: 73.06 KB/sec ; Max: 1.40 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.711ms ; Min: 296.684us ; Max: 5.827ms ; Number of samples: 6) - RpcRecvrTime: (Avg: -77808.000ns ; Min: -116870.000ns ; Max: -45324.000ns ; Number of samples: 6) - EosSent: 3 (3) - PeakMemoryUsage: 22.57 KB (23112) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 28.486us - TotalBytesSent: 1.28 KB (1308) - UncompressedRowBatchSize: 3.18 KB (3255) HDFS_SCAN_NODE (id=91):(Total: 93.173ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 664.783ms - Closed: 664.783ms (664.783ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 20.358ms ; Min: 20.358ms ; Max: 20.358ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 564.758us ; Min: 564.758us ; Max: 564.758us ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 20.774us - MaterializeTupleTime: 17.249ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 37.17 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 332.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 29.623ms - TotalRawHdfsOpenFileTime: 17.815ms - TotalRawHdfsReadTime: 11.466ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 20.153us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.358us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F114:(Total: 3s299ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s310ms max:8s048ms mean: 7s679ms stddev:368.940ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 548.045ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 49 (49) - TotalThreadsTotalWallClockTime: 3s299ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 155.156ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 2s617ms - ExecTreeExecTime: 406.664ms - OpenTime: 681.495ms - ExecTreeOpenTime: 141.442ms - PrepareTime: 307.315us - ExecTreePrepareTime: 156.526us Hash Join Builder (join_node_id=103):(Total: 2s218ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 261.041us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 503.525us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 79.021us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 64.297us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 7.86K (7856) - Resizes: 0 (0) - Travel: 4.46K (4463) EXCHANGE_NODE (id=184):(Total: 548.103ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 41.313us - PeakMemoryUsage: 16.28 KB (16675) - RowsReturned: 60 (60) - RowsReturnedRate: 399.87 K/sec Buffer pool: - AllocTime: 5.049us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.375us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 141.428ms - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 548.043ms - DataWaitTime: 548.029ms Enqueue: - DeserializeRowBatchTime: 25.163us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 16.829us - TotalRPCsDeferred: 0 (0) Fragment F114: Instance 50467cb8e73eeac4:853461b400000135 (host=tarmstrong-Precision-7540:22001):(Total: 4s146ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.937 Fragment Instance Lifecycle Event Timeline: 4s158ms - Prepare Finished: 11.467ms (11.467ms) - Open Finished: 599.708ms (588.240ms) - First Batch Produced: 1s412ms (813.268ms) - First Batch Sent: 1s413ms (226.742us) - ExecInternal Finished: 4s158ms (2s744ms) - MemoryUsage (500.000ms): 17.12 KB, 7.78 MB, 7.78 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 1s096ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 47 (47) - TotalThreadsTotalWallClockTime: 4s146ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 152.439ms - TotalThreadsVoluntaryContextSwitches: 17 (17) Fragment Instance Lifecycle Timings: - ExecTime: 3s558ms - ExecTreeExecTime: 813.264ms - OpenTime: 588.229ms - ExecTreeOpenTime: 282.871ms - PrepareTime: 307.210us - ExecTreePrepareTime: 161.778us Hash Join Builder (join_node_id=103):(Total: 2s745ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 223.118us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 422.968us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 66.664us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 54.568us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 14.24K (14239) - Resizes: 0 (0) - Travel: 8.12K (8116) EXCHANGE_NODE (id=184):(Total: 1s096ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 1s413ms - Open Started: 315.908ms (315.908ms) - Open Finished: 598.776ms (282.868ms) - First Batch Requested: 599.712ms (936.074us) - First Batch Returned: 1s412ms (813.260ms) - Last Batch Returned: 1s412ms (851.000ns) - Closed: 1s413ms (283.155us) - ConvertRowBatchTime: 41.970us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 60 (60) - RowsReturnedRate: 54.00 /sec Buffer pool: - AllocTime: 4.913us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.751us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 780.00 B, 780.00 B - FirstBatchWaitTime: 282.856ms - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 1s096ms - DataWaitTime: 1s096ms Enqueue: - BytesReceived (500.000ms): 0, 484.00 B, 484.00 B - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -187820.000ns ; Min: -187820.000ns ; Max: -187820.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 22.234us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000136 (host=tarmstrong-Precision-7540:22000):(Total: 2s452ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.216 Fragment Instance Lifecycle Event Timeline: 3s854ms - Prepare Finished: 1s401ms (1s401ms) - Open Finished: 2s176ms (774.784ms) - First Batch Produced: 2s176ms (73.601us) - First Batch Sent: 2s177ms (307.972us) - ExecInternal Finished: 3s854ms (1s677ms) - MemoryUsage (500.000ms): 33.12 KB, 7.77 MB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 16.820us - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 52 (52) - TotalThreadsTotalWallClockTime: 2s452ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 157.873ms - TotalThreadsVoluntaryContextSwitches: 15 (15) Fragment Instance Lifecycle Timings: - ExecTime: 1s677ms - ExecTreeExecTime: 65.566us - OpenTime: 774.761ms - ExecTreeOpenTime: 13.267us - PrepareTime: 307.420us - ExecTreePrepareTime: 151.274us Hash Join Builder (join_node_id=103):(Total: 1s692ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 298.967us - BuildRowsPartitioned: 60 (60) - HashTablesBuildTime: 584.083us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 91.379us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 74.026us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 112 (112) - HashCollisions: 0 (0) - Probes: 1.47K (1474) - Resizes: 0 (0) - Travel: 810 (810) EXCHANGE_NODE (id=184):(Total: 75.030us, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s177ms - Open Started: 2s161ms (2s161ms) - Open Finished: 2s161ms (9.339us) - First Batch Requested: 2s176ms (14.928ms) - First Batch Returned: 2s176ms (61.319us) - Last Batch Returned: 2s176ms (596.000ns) - Closed: 2s177ms (391.047us) - ConvertRowBatchTime: 40.657us - PeakMemoryUsage: 16.57 KB (16966) - RowsReturned: 60 (60) - RowsReturnedRate: 799.68 K/sec Buffer pool: - AllocTime: 5.185us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 780.00 B (780) - TotalGetBatchTime: 15.166us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 484.00 B - DeferredQueueSize (500.000ms): 0 - DispatchTime: 0.000ns (Number of samples: 0) - DeserializeRowBatchTime: 28.093us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 484.00 B (484) - TotalEarlySenders: 1 (1) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 33.658us - TotalRPCsDeferred: 1 (1) Averaged Fragment F65:(Total: 1s402ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 5.56 KB, max: 5.56 KB, avg: 5.56 KB, stddev: 0 completion times: min:8s050ms max:8s050ms mean: 8s050ms stddev:0.000ns execution rates: min:707.00 B/sec max:707.00 B/sec mean:707.00 B/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.16 - PeakMemoryUsage: 80.42 KB (82352) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 857.613ms - TotalStorageWaitTime: 465.497ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1s389ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.740ms - TotalThreadsVoluntaryContextSwitches: 31 (31) Fragment Instance Lifecycle Timings: - ExecTime: 1s324ms - ExecTreeExecTime: 466.271ms - OpenTime: 65.170ms - ExecTreeOpenTime: 248.666us - PrepareTime: 13.283ms - ExecTreePrepareTime: 13.088ms KrpcDataStreamSender (dst_id=184):(Total: 857.792ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 2 (2) - PeakMemoryUsage: 51.19 KB (52416) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.486us - TotalBytesSent: 968.00 B (968) - UncompressedRowBatchSize: 1.52 KB (1560) HDFS_SCAN_NODE (id=101):(Total: 479.633ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 1 (1) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 7.039us - MaterializeTupleTime: 22.993us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 15.91 KB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 125.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 465.497ms - TotalRawHdfsOpenFileTime: 75.583ms - TotalRawHdfsReadTime: 370.090ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.614us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.389us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F65: Instance 50467cb8e73eeac4:853461b400000134 (host=tarmstrong-Precision-7540:22001):(Total: 1s402ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.939 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB Fragment Instance Lifecycle Event Timeline: 1s413ms - Prepare Finished: 23.500ms (23.500ms) - Open Finished: 88.682ms (65.181ms) - First Batch Produced: 554.848ms (466.166ms) - First Batch Sent: 554.899ms (51.780us) - ExecInternal Finished: 1s413ms (858.212ms) - MemoryUsage (500.000ms): 67.19 KB, 59.19 KB, 59.19 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.16 - PeakMemoryUsage: 80.42 KB (82352) - PeakReservation: 8.00 KB (8192) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 60 (60) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 857.613ms - TotalStorageWaitTime: 465.497ms - TotalThreadsInvoluntaryContextSwitches: 1 (1) - TotalThreadsTotalWallClockTime: 1s389ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 38.740ms - TotalThreadsVoluntaryContextSwitches: 31 (31) Fragment Instance Lifecycle Timings: - ExecTime: 1s324ms - ExecTreeExecTime: 466.271ms - OpenTime: 65.170ms - ExecTreeOpenTime: 248.666us - PrepareTime: 13.283ms - ExecTreePrepareTime: 13.088ms KrpcDataStreamSender (dst_id=184):(Total: 857.792ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 484.00 B, 484.00 B - NetworkThroughput: (Avg: 5.37 KB/sec ; Min: 295.00 B/sec ; Max: 10.46 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 616.468ms ; Min: 409.590us ; Max: 1s638ms ; Number of samples: 4) - RpcRecvrTime: (Avg: -195352426.000ns ; Min: -781080653.000ns ; Max: -52562.000ns ; Number of samples: 4) - EosSent: 2 (2) - PeakMemoryUsage: 51.19 KB (52416) - RowsSent: 60 (60) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 20.486us - TotalBytesSent: 968.00 B (968) - UncompressedRowBatchSize: 1.52 KB (1560) HDFS_SCAN_NODE (id=101):(Total: 479.633ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.web_page Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.56 KB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 555.375ms - Closed: 555.375ms (555.375ms) - BytesReadSeries (500.000ms): 0 - FooterProcessingTime: (Avg: 446.148ms ; Min: 446.148ms ; Max: 446.148ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - PageIndexProcessingTime: 0.000ns (Number of samples: 0) - ParquetCompressedBytesReadPerColumn: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetCompressedPageSize: (Avg: 58.00 B (58) ; Min: 58.00 B (58) ; Max: 58.00 B (58) ; Number of samples: 1) - ParquetRowGroupActualReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 8.00 KB (8192) ; Min: 8.00 KB (8192) ; Max: 8.00 KB (8192) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - ParquetUncompressedPageSize: (Avg: 56.00 B (56) ; Min: 56.00 B (56) ; Max: 56.00 B (56) ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 5.89 KB (6030) - BytesReadDataNodeCache: 0 - BytesReadLocal: 5.89 KB (6030) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.89 KB (6030) - CachedFileHandlesHitCount: 1 (1) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 7.039us - MaterializeTupleTime: 22.993us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 1 (1) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 21.23 KB (21744) - PerReadThreadRawHdfsThroughput: 15.91 KB/sec - RemoteScanRanges: 0 (0) - RowsRead: 60 (60) - RowsReturned: 60 (60) - RowsReturnedRate: 125.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 465.497ms - TotalRawHdfsOpenFileTime: 75.583ms - TotalRawHdfsReadTime: 370.090ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 7.614us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 8.00 KB (8192) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.00 KB (8192) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.389us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F115:(Total: 3s517ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s301ms max:8s051ms mean: 7s676ms stddev:374.979ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 594.65 MB (623530722) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 1s573ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 96 (96) - TotalThreadsTotalWallClockTime: 3s517ms - TotalThreadsSysTime: 2.381ms - TotalThreadsUserTime: 152.462ms - TotalThreadsVoluntaryContextSwitches: 15 (15) Fragment Instance Lifecycle Timings: - ExecTime: 1s340ms - ExecTreeExecTime: 7.754ms - OpenTime: 2s176ms - ExecTreeOpenTime: 1s565ms - PrepareTime: 301.814us - ExecTreePrepareTime: 128.270us Hash Join Builder (join_node_id=102):(Total: 1s337ms, non-child: 0.000ns, % non-child: 0.00%) - BuildRowsPartitionTime: 217.252us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 416.068us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 56.555us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.915us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 7.83K (7827) - Resizes: 0 (0) - Travel: 4.20K (4202) EXCHANGE_NODE (id=183):(Total: 1s573ms, non-child: 0.000ns, % non-child: 0.00%) - ConvertRowBatchTime: 22.784us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 23.00 /sec Buffer pool: - AllocTime: 10.973us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 7.092us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - FirstBatchWaitTime: 1s565ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 1s573ms - DataWaitTime: 1s573ms Enqueue: - DeserializeRowBatchTime: 38.699us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F115: Instance 50467cb8e73eeac4:853461b400000138 (host=tarmstrong-Precision-7540:22001):(Total: 4s156ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.940 Fragment Instance Lifecycle Event Timeline: 4s158ms - Prepare Finished: 1.395ms (1.395ms) - Open Finished: 2s678ms (2s677ms) - First Batch Produced: 2s678ms (43.893us) - First Batch Sent: 2s678ms (203.769us) - ExecInternal Finished: 4s158ms (1s479ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 2s249ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 109 (109) - TotalThreadsTotalWallClockTime: 4s156ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 149.398ms - TotalThreadsVoluntaryContextSwitches: 16 (16) Fragment Instance Lifecycle Timings: - ExecTime: 1s479ms - ExecTreeExecTime: 39.868us - OpenTime: 2s677ms - ExecTreeOpenTime: 2s249ms - PrepareTime: 244.692us - ExecTreePrepareTime: 102.676us Hash Join Builder (join_node_id=102):(Total: 1s486ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 201.201us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 401.023us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 45.422us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 31.957us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 14.21K (14210) - Resizes: 0 (0) - Travel: 7.57K (7568) EXCHANGE_NODE (id=183):(Total: 2s249ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s678ms - Open Started: 421.634ms (421.634ms) - Open Finished: 2s671ms (2s249ms) - First Batch Requested: 2s678ms (7.108ms) - First Batch Returned: 2s678ms (36.989us) - Last Batch Returned: 2s678ms (432.000ns) - Closed: 2s678ms (251.949us) - ConvertRowBatchTime: 22.368us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 13.00 /sec Buffer pool: - AllocTime: 15.291us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 11.011us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0, 0, 0 - FirstBatchWaitTime: 2s249ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 2s249ms - DataWaitTime: 2s249ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0, 0, 0 - DispatchTime: (Avg: -65029.000ns ; Min: -65029.000ns ; Max: -65029.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 42.345us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance 50467cb8e73eeac4:853461b400000139 (host=tarmstrong-Precision-7540:22000):(Total: 2s879ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.206 Fragment Instance Lifecycle Event Timeline: 3s854ms - Prepare Finished: 975.796ms (975.796ms) - Open Finished: 2s651ms (1s676ms) - First Batch Produced: 2s667ms (15.473ms) - First Batch Sent: 2s667ms (237.013us) - ExecInternal Finished: 3s854ms (1s186ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 17.12 KB, 7.77 MB, 7.77 MB, 7.77 MB - ThreadUsage (500.000ms): 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 7.78 MB (8160384) - PeakReservation: 7.75 MB (8126464) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 485.38 MB (508954413) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 896.838ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 84 (84) - TotalThreadsTotalWallClockTime: 2s878ms - TotalThreadsSysTime: 4.762ms - TotalThreadsUserTime: 155.527ms - TotalThreadsVoluntaryContextSwitches: 15 (15) Fragment Instance Lifecycle Timings: - ExecTime: 1s202ms - ExecTreeExecTime: 15.468ms - OpenTime: 1s676ms - ExecTreeOpenTime: 881.412ms - PrepareTime: 358.937us - ExecTreePrepareTime: 153.866us Hash Join Builder (join_node_id=102):(Total: 1s188ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 233.303us - BuildRowsPartitioned: 31 (31) - HashTablesBuildTime: 431.113us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 7.77 MB (8144000) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 67.688us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 7.75 MB (8126464) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.873us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 58 (58) - HashCollisions: 0 (0) - Probes: 1.45K (1445) - Resizes: 0 (0) - Travel: 836 (836) EXCHANGE_NODE (id=183):(Total: 896.878ms, non-child: 0.000ns, % non-child: 0.00%) Node Lifecycle Event Timeline: 2s667ms - Open Started: 1s769ms (1s769ms) - Open Finished: 2s650ms (881.409ms) - First Batch Requested: 2s652ms (1.221ms) - First Batch Returned: 2s667ms (15.464ms) - Last Batch Returned: 2s667ms (976.000ns) - Closed: 2s667ms (296.290us) - ConvertRowBatchTime: 23.200us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 31 (31) - RowsReturnedRate: 34.00 /sec Buffer pool: - AllocTime: 6.655us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - EncryptionTime: 0.000ns - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.174us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 881.399ms - TotalBytesDequeued: 1.06 KB (1085) - TotalGetBatchTime: 896.835ms - DataWaitTime: 896.823ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: -74944.000ns ; Min: -74944.000ns ; Max: -74944.000ns ; Number of samples: 1) - DeserializeRowBatchTime: 35.053us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 436.00 B (436) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F64:(Total: 988.050ms, non-child: 0.000ns, % non-child: 0.00%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:8s061ms max:8s061ms mean: 8s061ms stddev:0.000ns execution rates: min:273.65 KB/sec max:273.65 KB/sec mean:273.65 KB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.33 MB (2444464) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 6.803ms - TotalStorageWaitTime: 12.933ms - TotalThreadsInvoluntaryContextSwitches: 131 (131) - TotalThreadsTotalWallClockTime: 987.666ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 215.865ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 112.305ms - ExecTreeExecTime: 94.721ms - OpenTime: 875.368ms - ExecTreeOpenTime: 251.433us - PrepareTime: 318.124us - ExecTreePrepareTime: 146.162us KrpcDataStreamSender (dst_id=183):(Total: 17.516ms, non-child: 0.000ns, % non-child: 0.00%) - EosSent: 2 (2) - PeakMemoryUsage: 15.05 KB (15408) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 29.578us - TotalBytesSent: 872.00 B (872) - UncompressedRowBatchSize: 2.12 KB (2170) HDFS_SCAN_NODE (id=100):(Total: 95.160ms, non-child: 0.000ns, % non-child: 0.00%) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 29.327us - MaterializeTupleTime: 50.712ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 155.82 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 325.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 12.933ms - TotalRawHdfsOpenFileTime: 50.824us - TotalRawHdfsReadTime: 2.735ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 15.432us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.204us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F64: Instance 50467cb8e73eeac4:853461b400000137 (host=tarmstrong-Precision-7540:22001):(Total: 988.050ms, non-child: 0.000ns, % non-child: 0.00%) Last report received time: 2020-04-10 15:32:17.950 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 2s679ms - Prepare Finished: 1s691ms (1s691ms) - Open Finished: 2s566ms (875.376ms) - First Batch Produced: 2s661ms (94.269ms) - First Batch Sent: 2s671ms (10.300ms) - ExecInternal Finished: 2s679ms (7.815ms) - MemoryUsage (500.000ms): 23.05 KB, 23.05 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - ExchangeScanRatio: 0.00 - PeakMemoryUsage: 2.33 MB (2444464) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 703.91 MB (738107032) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 6.803ms - TotalStorageWaitTime: 12.933ms - TotalThreadsInvoluntaryContextSwitches: 131 (131) - TotalThreadsTotalWallClockTime: 987.666ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 215.865ms - TotalThreadsVoluntaryContextSwitches: 26 (26) Fragment Instance Lifecycle Timings: - ExecTime: 112.305ms - ExecTreeExecTime: 94.721ms - OpenTime: 875.368ms - ExecTreeOpenTime: 251.433us - PrepareTime: 318.124us - ExecTreePrepareTime: 146.162us KrpcDataStreamSender (dst_id=183):(Total: 17.516ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 691.40 KB/sec ; Min: 440.57 KB/sec ; Max: 942.22 KB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 2.259ms ; Min: 370.009us ; Max: 7.249ms ; Number of samples: 4) - RpcRecvrTime: (Avg: -93778.000ns ; Min: -123769.000ns ; Max: -52438.000ns ; Number of samples: 4) - EosSent: 2 (2) - PeakMemoryUsage: 15.05 KB (15408) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 29.578us - TotalBytesSent: 872.00 B (872) - UncompressedRowBatchSize: 2.12 KB (2170) HDFS_SCAN_NODE (id=100):(Total: 95.160ms, non-child: 0.000ns, % non-child: 0.00%) Table Name: tpcds_parquet.date_dim Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 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% File Formats: PARQUET/SNAPPY:1 Node Lifecycle Event Timeline: 2s672ms - Closed: 2s672ms (2s672ms) - BytesReadSeries (500.000ms): 0, 0 - FooterProcessingTime: (Avg: 1.437ms ; Min: 1.437ms ; Max: 1.437ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - InitialRangeIdealReservation: (Avg: 128.00 KB (131072) ; Min: 128.00 KB (131072) ; Max: 128.00 KB (131072) ; Number of samples: 1) - PageIndexProcessingTime: (Avg: 5.881ms ; Min: 5.881ms ; Max: 5.881ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 14.09 KB (14428) ; Min: 14.09 KB (14428) ; Max: 14.09 KB (14428) ; Number of samples: 2) - ParquetRowGroupActualReservation: (Avg: 1.00 MB (1048576) ; Min: 1.00 MB (1048576) ; Max: 1.00 MB (1048576) ; Number of samples: 1) - ParquetRowGroupIdealReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; Number of samples: 1) - ParquetUncompressedBytesReadPerColumn: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 14.08 KB (14423) ; Min: 14.08 KB (14423) ; Max: 14.08 KB (14423) ; Number of samples: 2) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 436.46 KB (446930) - BytesReadDataNodeCache: 0 - BytesReadLocal: 436.46 KB (446930) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 436.46 KB (446930) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 29.327us - MaterializeTupleTime: 50.712ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumPages: 15 (15) - NumRowGroups: 1 (1) - NumRowGroupsWithPageIndex: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 13 (13) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.31 MB (2420864) - PerReadThreadRawHdfsThroughput: 155.82 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 7.20K (7200) - RowsReturned: 31 (31) - RowsReturnedRate: 325.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 12.933ms - TotalRawHdfsOpenFileTime: 50.824us - TotalRawHdfsReadTime: 2.735ms - TotalReadThroughput: 0.00 /sec Buffer pool: - AllocTime: 15.432us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 640.00 KB (655360) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 512.00 KB (524288) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.204us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns