Query (id=f04aed6e613865a1:acb29fb100000000): DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance. Summary: Session ID: ee465e27c6012a04:c88eabebe90decb3 Session Type: BEESWAX Start Time: 2023-04-28 08:29:37.956067000 End Time: 2023-04-28 08:29:45.128879000 Duration: 7s172ms (7172812 us) Query Type: QUERY Query State: FINISHED Impala Query State: FINISHED Query Status: OK Impala Version: impalad version 4.3.0-SNAPSHOT DEBUG (build 5b0864d7b4a52169f9225f51caf1cfbac6272da2) User: rsuminto Connected User: rsuminto Delegated User: Network Address: 127.0.0.1:39658 Default Db: tpcds_parquet Sql Statement: with year_total as ( select c_customer_id customer_id ,c_first_name customer_first_name ,c_last_name customer_last_name ,c_preferred_cust_flag customer_preferred_cust_flag ,c_birth_country customer_birth_country ,c_login customer_login ,c_email_address customer_email_address ,d_year dyear ,sum(ss_ext_list_price-ss_ext_discount_amt) year_total ,'s' sale_type from customer ,store_sales ,date_dim where c_customer_sk = ss_customer_sk and ss_sold_date_sk = d_date_sk group by c_customer_id ,c_first_name ,c_last_name ,c_preferred_cust_flag ,c_birth_country ,c_login ,c_email_address ,d_year union all select c_customer_id customer_id ,c_first_name customer_first_name ,c_last_name customer_last_name ,c_preferred_cust_flag customer_preferred_cust_flag ,c_birth_country customer_birth_country ,c_login customer_login ,c_email_address customer_email_address ,d_year dyear ,sum(ws_ext_list_price-ws_ext_discount_amt) year_total ,'w' sale_type from customer ,web_sales ,date_dim where c_customer_sk = ws_bill_customer_sk and ws_sold_date_sk = d_date_sk group by c_customer_id ,c_first_name ,c_last_name ,c_preferred_cust_flag ,c_birth_country ,c_login ,c_email_address ,d_year ) select t_s_secyear.customer_id ,t_s_secyear.customer_first_name ,t_s_secyear.customer_last_name ,t_s_secyear.customer_preferred_cust_flag from year_total t_s_firstyear ,year_total t_s_secyear ,year_total t_w_firstyear ,year_total t_w_secyear where t_s_secyear.customer_id = t_s_firstyear.customer_id and t_s_firstyear.customer_id = t_w_secyear.customer_id and t_s_firstyear.customer_id = t_w_firstyear.customer_id and t_s_firstyear.sale_type = 's' and t_w_firstyear.sale_type = 'w' and t_s_secyear.sale_type = 's' and t_w_secyear.sale_type = 'w' and t_s_firstyear.dyear = 2001 and t_s_secyear.dyear = 2001+1 and t_w_firstyear.dyear = 2001 and t_w_secyear.dyear = 2001+1 and t_s_firstyear.year_total > 0 and t_w_firstyear.year_total > 0 and case when t_w_firstyear.year_total > 0 then t_w_secyear.year_total / t_w_firstyear.year_total else 0.0 end > case when t_s_firstyear.year_total > 0 then t_s_secyear.year_total / t_s_firstyear.year_total else 0.0 end order by t_s_secyear.customer_id ,t_s_secyear.customer_first_name ,t_s_secyear.customer_last_name ,t_s_secyear.customer_preferred_cust_flag limit 100 Coordinator: rsuminto-22746:27000 Query Options (set by configuration): ABORT_ON_ERROR=1,EXEC_SINGLE_NODE_ROWS_THRESHOLD=0,MT_DOP=1,DECIMAL_V2=0,DISABLE_CODEGEN_ROWS_THRESHOLD=0,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=query_test/test_tpcds_queries.py::TestTpcdsQueryWithProcessingCost::()::test_tpcds_q11[protocol:beeswax|exec_option:{'decimal_v2':0;'test_replan':1;'mt_dop':1;'batch_size':0;'num_nodes':0;'disable_codegen_rows_threshold':0;'disable_codegen':False;'abort_o,TEST_REPLAN=1 Query Options (set by configuration and planner): ABORT_ON_ERROR=1,EXEC_SINGLE_NODE_ROWS_THRESHOLD=0,MT_DOP=1,DECIMAL_V2=0,DISABLE_CODEGEN_ROWS_THRESHOLD=0,TIMEZONE=America/Los_Angeles,CLIENT_IDENTIFIER=query_test/test_tpcds_queries.py::TestTpcdsQueryWithProcessingCost::()::test_tpcds_q11[protocol:beeswax|exec_option:{'decimal_v2':0;'test_replan':1;'mt_dop':1;'batch_size':0;'num_nodes':0;'disable_codegen_rows_threshold':0;'disable_codegen':False;'abort_o,MINMAX_FILTER_THRESHOLD=0.5,MINMAX_FILTERING_LEVEL=PAGE,TEST_REPLAN=1 Plan: ---------------- Max Per-Host Resource Reservation: Memory=353.31MB Threads=33 Per-Host Resource Estimates: Memory=650MB Analyzed query: WITH year_total AS (SELECT c_customer_id customer_id, c_first_name customer_first_name, c_last_name customer_last_name, c_preferred_cust_flag customer_preferred_cust_flag, c_birth_country customer_birth_country, c_login customer_login, c_email_address customer_email_address, d_year dyear, sum(ss_ext_list_price - ss_ext_discount_amt) year_total, 's' sale_type FROM tpcds_parquet.customer, tpcds_parquet.store_sales, tpcds_parquet.date_dim WHERE c_customer_sk = ss_customer_sk AND ss_sold_date_sk = d_date_sk GROUP BY c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year UNION ALL SELECT c_customer_id customer_id, c_first_name customer_first_name, c_last_name customer_last_name, c_preferred_cust_flag customer_preferred_cust_flag, c_birth_country customer_birth_country, c_login customer_login, c_email_address customer_email_address, d_year dyear, sum(ws_ext_list_price - ws_ext_discount_amt) year_total, 'w' sale_type FROM tpcds_parquet.customer, tpcds_parquet.web_sales, tpcds_parquet.date_dim WHERE c_customer_sk = ws_bill_customer_sk AND ws_sold_date_sk = d_date_sk GROUP BY c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year) SELECT t_s_secyear.customer_id, t_s_secyear.customer_first_name, t_s_secyear.customer_last_name, t_s_secyear.customer_preferred_cust_flag FROM year_total t_s_firstyear, year_total t_s_secyear, year_total t_w_firstyear, year_total t_w_secyear WHERE t_s_secyear.customer_id = t_s_firstyear.customer_id AND t_s_firstyear.customer_id = t_w_secyear.customer_id AND t_s_firstyear.customer_id = t_w_firstyear.customer_id AND t_s_firstyear.sale_type = 's' AND t_w_firstyear.sale_type = 'w' AND t_s_secyear.sale_type = 's' AND t_w_secyear.sale_type = 'w' AND t_s_firstyear.dyear = CAST(2001 AS INT) AND t_s_secyear.dyear = CAST(2002 AS INT) AND t_w_firstyear.dyear = CAST(2001 AS INT) AND t_w_secyear.dyear = CAST(2002 AS INT) AND t_s_firstyear.year_total > CAST(0 AS DECIMAL(3,0)) AND t_w_firstyear.year_total > CAST(0 AS DECIMAL(3,0)) AND CASE WHEN t_w_firstyear.year_total > CAST(0 AS DECIMAL(3,0)) THEN t_w_secyear.year_total / t_w_firstyear.year_total ELSE CAST(0 AS DECIMAL(38,2)) END > CASE WHEN t_s_firstyear.year_total > CAST(0 AS DECIMAL(3,0)) THEN t_s_secyear.year_total / t_s_firstyear.year_total ELSE CAST(0 AS DECIMAL(38,2)) END ORDER BY t_s_secyear.customer_id ASC, t_s_secyear.customer_first_name ASC, t_s_secyear.customer_last_name ASC, t_s_secyear.customer_preferred_cust_flag ASC LIMIT CAST(100 AS TINYINT) F25:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | Per-Instance Resources: mem-estimate=4.03MB mem-reservation=4.00MB thread-reservation=1 PLAN-ROOT SINK | output exprs: customer_id, customer_first_name, customer_last_name, customer_preferred_cust_flag | mem-estimate=4.00MB mem-reservation=4.00MB spill-buffer=2.00MB thread-reservation=0 | 56:MERGING-EXCHANGE [UNPARTITIONED] | order by: customer_id ASC, customer_first_name ASC, customer_last_name ASC, customer_preferred_cust_flag ASC | limit: 100 | mem-estimate=26.23KB mem-reservation=0B thread-reservation=0 | tuple-ids=40 row-size=77B cardinality=100 | in pipelines: 31(GETNEXT) | F18:PLAN FRAGMENT [HASH(customer_id)] hosts=3 instances=3 Per-Instance Resources: mem-estimate=2.33MB mem-reservation=0B thread-reservation=1 31:TOP-N [LIMIT=100] | order by: customer_id ASC, customer_first_name ASC, customer_last_name ASC, customer_preferred_cust_flag ASC | mem-estimate=7.52KB mem-reservation=0B thread-reservation=0 | tuple-ids=40 row-size=77B cardinality=100 | in pipelines: 31(GETNEXT), 36(OPEN) | 30:HASH JOIN [INNER JOIN, PARTITIONED] | hash-table-id=00 | hash predicates: customer_id = customer_id | fk/pk conjuncts: assumed fk/pk | other predicates: CASE WHEN year_total > CAST(0 AS DECIMAL(3,0)) THEN year_total / year_total ELSE CAST(0 AS DECIMAL(38,2)) END > CASE WHEN year_total > CAST(0 AS DECIMAL(3,0)) THEN year_total / year_total ELSE CAST(0 AS DECIMAL(38,2)) END | mem-estimate=0B mem-reservation=0B spill-buffer=256.00KB thread-reservation=0 | tuple-ids=18,28,8,38 row-size=225B cardinality=43.59K | in pipelines: 36(GETNEXT), 54(OPEN) | |--F26:PLAN FRAGMENT [HASH(customer_id)] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=8.95MB mem-reservation=5.75MB thread-reservation=1 runtime-filters-memory=1.00MB | JOIN BUILD | | join-table-id=00 plan-id=01 cohort-id=01 | | build expressions: customer_id | | runtime filters: RF000[bloom] <- customer_id | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB thread-reservation=0 | | | 55:EXCHANGE [HASH(customer_id)] | | mem-estimate=3.20MB mem-reservation=0B thread-reservation=0 | | tuple-ids=38 row-size=44B cardinality=148.00K | | in pipelines: 54(GETNEXT) | | | F24:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | Per-Instance Resources: mem-estimate=27.90MB mem-reservation=17.00MB thread-reservation=1 | 21:UNION | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | tuple-ids=38 row-size=44B cardinality=148.00K | | in pipelines: 54(GETNEXT) | | | 54:AGGREGATE [FINALIZE] | | output: sum:merge(ws_ext_list_price - ws_ext_discount_amt) | | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | | mem-estimate=17.00MB mem-reservation=17.00MB spill-buffer=1.00MB thread-reservation=0 | | tuple-ids=37 row-size=169B cardinality=148.00K | | in pipelines: 54(GETNEXT), 23(OPEN) | | | 53:EXCHANGE [HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year)] | | mem-estimate=10.34MB mem-reservation=0B thread-reservation=0 | | tuple-ids=37 row-size=169B cardinality=148.00K | | in pipelines: 23(GETNEXT) | | | F21:PLAN FRAGMENT [HASH(ws_bill_customer_sk)] hosts=2 instances=2 | Per-Instance Resources: mem-estimate=23.88MB mem-reservation=17.00MB thread-reservation=1 | 27:AGGREGATE [STREAMING] | | output: sum(ws_ext_list_price - ws_ext_discount_amt) | | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | | mem-estimate=17.00MB mem-reservation=17.00MB spill-buffer=1.00MB thread-reservation=0 | | tuple-ids=37 row-size=169B cardinality=148.00K | | in pipelines: 23(GETNEXT) | | | 26:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=01 | | 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=35,34,36 row-size=177B cardinality=148.00K | | in pipelines: 23(GETNEXT), 24(OPEN) | | | |--F27:PLAN FRAGMENT [HASH(ws_bill_customer_sk)] hosts=2 instances=2 | | | Per-Instance Resources: mem-estimate=2.95MB mem-reservation=2.94MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=01 plan-id=02 cohort-id=02 | | | build expressions: d_date_sk | | | runtime filters: RF018[bloom] <- d_date_sk | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | 52:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=36 row-size=8B cardinality=373 | | | in pipelines: 24(GETNEXT) | | | | | F22:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.05MB mem-reservation=512.00KB thread-reservation=1 | | 24:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: tpcds_parquet.date_dim.d_year = CAST(2002 AS INT) | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: tpcds_parquet.date_dim.d_year = CAST(2002 AS INT) | | parquet dictionary predicates: tpcds_parquet.date_dim.d_year = CAST(2002 AS INT) | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0 | | tuple-ids=36 row-size=8B cardinality=373 | | in pipelines: 24(GETNEXT) | | | 25:HASH JOIN [INNER JOIN, PARTITIONED] | | hash-table-id=02 | | hash predicates: ws_bill_customer_sk = c_customer_sk | | fk/pk conjuncts: none | | mem-estimate=0B mem-reservation=0B spill-buffer=1.00MB thread-reservation=0 | | tuple-ids=35,34 row-size=169B cardinality=719.38K | | in pipelines: 23(GETNEXT), 22(OPEN) | | | |--F28:PLAN FRAGMENT [HASH(ws_bill_customer_sk)] hosts=2 instances=2 | | | Per-Instance Resources: mem-estimate=27.15MB mem-reservation=17.00MB thread-reservation=1 | | JOIN BUILD | | | join-table-id=02 plan-id=03 cohort-id=02 | | | build expressions: c_customer_sk | | | mem-estimate=17.00MB mem-reservation=17.00MB spill-buffer=1.00MB thread-reservation=0 | | | | | 51:EXCHANGE [HASH(c_customer_sk)] | | | mem-estimate=10.15MB mem-reservation=0B thread-reservation=0 | | | tuple-ids=34 row-size=153B cardinality=100.00K | | | in pipelines: 22(GETNEXT) | | | | | F20:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=17.23MB mem-reservation=8.00MB thread-reservation=1 | | 22:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | HDFS partitions=1/1 files=1 size=5.49MB | | stored statistics: | | table: rows=100.00K size=5.49MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=100.00K | | mem-estimate=16.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=34 row-size=153B cardinality=100.00K | | in pipelines: 22(GETNEXT) | | | 50:EXCHANGE [HASH(ws_bill_customer_sk)] | | mem-estimate=5.53MB mem-reservation=0B thread-reservation=0 | | tuple-ids=35 row-size=16B cardinality=719.38K | | in pipelines: 23(GETNEXT) | | | F19:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | 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=32.16MB mem-reservation=8.00MB thread-reservation=1 | 23:SCAN HDFS [tpcds_parquet.web_sales, RANDOM] | HDFS partitions=1/1 files=2 size=45.09MB | runtime filters: RF018[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=35 row-size=16B cardinality=719.38K | in pipelines: 23(GETNEXT) | 29:HASH JOIN [INNER JOIN, PARTITIONED] | hash-table-id=03 | hash predicates: customer_id = customer_id | fk/pk conjuncts: assumed fk/pk | mem-estimate=0B mem-reservation=0B spill-buffer=128.00KB thread-reservation=0 | tuple-ids=18,28,8 row-size=181B cardinality=43.59K | in pipelines: 36(GETNEXT), 47(OPEN) | |--F29:PLAN FRAGMENT [HASH(customer_id)] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=4.84MB mem-reservation=3.88MB thread-reservation=1 runtime-filters-memory=1.00MB | JOIN BUILD | | join-table-id=03 plan-id=04 cohort-id=01 | | build expressions: customer_id | | runtime filters: RF002[bloom] <- customer_id | | mem-estimate=2.88MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0 | | | 49:EXCHANGE [HASH(customer_id)] | | mem-estimate=987.66KB mem-reservation=0B thread-reservation=0 | | tuple-ids=8 row-size=44B cardinality=58.90K | | in pipelines: 47(GETNEXT) | | | F17:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | Per-Instance Resources: mem-estimate=45.07MB mem-reservation=34.00MB thread-reservation=1 | 00:UNION | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | tuple-ids=8 row-size=44B cardinality=58.90K | | in pipelines: 47(GETNEXT) | | | 47:AGGREGATE [FINALIZE] | | output: sum:merge(ss_ext_list_price - ss_ext_discount_amt) | | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | | having: sum(ss_ext_list_price - ss_ext_discount_amt) > CAST(0 AS DECIMAL(3,0)) | | mem-estimate=34.00MB mem-reservation=34.00MB spill-buffer=2.00MB thread-reservation=0 | | tuple-ids=3 row-size=169B cardinality=58.90K | | in pipelines: 47(GETNEXT), 02(OPEN) | | | 46:EXCHANGE [HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year)] | | mem-estimate=10.51MB mem-reservation=0B thread-reservation=0 | | tuple-ids=3 row-size=169B cardinality=589.03K | | in pipelines: 02(GETNEXT) | | | F15:PLAN FRAGMENT [HASH(ss_customer_sk)] hosts=3 instances=3 | Per-Instance Resources: mem-estimate=40.62MB mem-reservation=34.00MB thread-reservation=1 | 06:AGGREGATE [STREAMING] | | output: sum(ss_ext_list_price - ss_ext_discount_amt) | | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | | mem-estimate=34.00MB mem-reservation=34.00MB spill-buffer=2.00MB thread-reservation=0 | | tuple-ids=3 row-size=169B cardinality=589.03K | | in pipelines: 02(GETNEXT) | | | 05:HASH JOIN [INNER JOIN, PARTITIONED] | | hash-table-id=04 | | hash predicates: ss_customer_sk = c_customer_sk | | fk/pk conjuncts: ss_customer_sk = c_customer_sk | | mem-estimate=0B mem-reservation=0B spill-buffer=512.00KB thread-reservation=0 | | tuple-ids=1,2,0 row-size=177B cardinality=589.03K | | in pipelines: 02(GETNEXT), 01(OPEN) | | | |--F30:PLAN FRAGMENT [HASH(ss_customer_sk)] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=19.65MB mem-reservation=9.50MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=04 plan-id=05 cohort-id=03 | | | build expressions: c_customer_sk | | | runtime filters: RF014[bloom] <- c_customer_sk | | | mem-estimate=8.50MB mem-reservation=8.50MB spill-buffer=512.00KB thread-reservation=0 | | | | | 45:EXCHANGE [HASH(c_customer_sk)] | | | mem-estimate=10.15MB mem-reservation=0B thread-reservation=0 | | | tuple-ids=0 row-size=153B cardinality=100.00K | | | in pipelines: 01(GETNEXT) | | | | | F14: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=17.84MB mem-reservation=8.00MB thread-reservation=1 | | 01:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | HDFS partitions=1/1 files=1 size=5.49MB | | runtime filters: RF000[bloom] -> tpcds_parquet.customer.c_customer_id | | stored statistics: | | table: rows=100.00K size=5.49MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=100.00K | | mem-estimate=16.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=0 row-size=153B cardinality=100.00K | | in pipelines: 01(GETNEXT) | | | 44:EXCHANGE [HASH(ss_customer_sk)] | | mem-estimate=4.59MB mem-reservation=0B thread-reservation=0 | | tuple-ids=1,2 row-size=24B cardinality=589.03K | | in pipelines: 02(GETNEXT) | | | F12:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | 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=16.38MB mem-reservation=2.00MB thread-reservation=1 | 04:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=05 | | 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=1,2 row-size=24B cardinality=589.03K | | in pipelines: 02(GETNEXT), 03(OPEN) | | | |--F31:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | | Per-Instance Resources: mem-estimate=2.95MB mem-reservation=2.94MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=05 plan-id=06 cohort-id=03 | | | build expressions: d_date_sk | | | runtime filters: RF016[bloom] <- d_date_sk, RF017[min_max] <- d_date_sk | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | 43:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=2 row-size=8B cardinality=373 | | | in pipelines: 03(GETNEXT) | | | | | F13:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.05MB mem-reservation=512.00KB thread-reservation=1 | | 03:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: tpcds_parquet.date_dim.d_year = CAST(2001 AS INT) | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: tpcds_parquet.date_dim.d_year = CAST(2001 AS INT) | | parquet dictionary predicates: tpcds_parquet.date_dim.d_year = CAST(2001 AS INT) | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0 | | tuple-ids=2 row-size=8B cardinality=373 | | in pipelines: 03(GETNEXT) | | | 02:SCAN HDFS [tpcds_parquet.store_sales, RANDOM] | HDFS partitions=1824/1824 files=1824 size=199.44MB | runtime filters: RF017[min_max] -> ss_sold_date_sk, RF016[bloom] -> ss_sold_date_sk, RF014[bloom] -> ss_customer_sk | stored statistics: | table: rows=2.88M size=199.44MB | 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=1 row-size=16B cardinality=2.88M | in pipelines: 02(GETNEXT) | 48:EXCHANGE [HASH(customer_id)] | mem-estimate=2.32MB mem-reservation=0B thread-reservation=0 | tuple-ids=18,28 row-size=137B cardinality=43.59K | in pipelines: 36(GETNEXT) | F05:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 Per-Instance Resources: mem-estimate=46.21MB mem-reservation=34.00MB thread-reservation=1 28:HASH JOIN [INNER JOIN, BROADCAST] | hash-table-id=06 | hash predicates: customer_id = customer_id | fk/pk conjuncts: assumed fk/pk | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0 | tuple-ids=18,28 row-size=137B cardinality=43.59K | in pipelines: 36(GETNEXT), 41(OPEN) | |--F32:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=3.65MB mem-reservation=2.94MB thread-reservation=1 runtime-filters-memory=1.00MB | JOIN BUILD | | join-table-id=06 plan-id=07 cohort-id=01 | | build expressions: customer_id | | runtime filters: RF004[bloom] <- customer_id | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | 42:EXCHANGE [BROADCAST] | | mem-estimate=731.94KB mem-reservation=0B thread-reservation=0 | | tuple-ids=28 row-size=44B cardinality=14.80K | | in pipelines: 41(GETNEXT) | | | F11:PLAN FRAGMENT [RANDOM] hosts=2 instances=2 | Per-Instance Resources: mem-estimate=27.53MB mem-reservation=17.00MB thread-reservation=1 | 14:UNION | | mem-estimate=0B mem-reservation=0B thread-reservation=0 | | tuple-ids=28 row-size=44B cardinality=14.80K | | in pipelines: 41(GETNEXT) | | | 41:AGGREGATE [FINALIZE] | | output: sum:merge(ws_ext_list_price - ws_ext_discount_amt) | | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | | having: sum(ws_ext_list_price - ws_ext_discount_amt) > CAST(0 AS DECIMAL(3,0)) | | mem-estimate=17.00MB mem-reservation=17.00MB spill-buffer=1.00MB thread-reservation=0 | | tuple-ids=27 row-size=169B cardinality=14.80K | | in pipelines: 41(GETNEXT), 16(OPEN) | | | 40:EXCHANGE [HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year)] | | mem-estimate=10.34MB mem-reservation=0B thread-reservation=0 | | tuple-ids=27 row-size=169B cardinality=148.00K | | in pipelines: 16(GETNEXT) | | | F08:PLAN FRAGMENT [HASH(ws_bill_customer_sk)] hosts=2 instances=2 | Per-Instance Resources: mem-estimate=23.88MB mem-reservation=17.00MB thread-reservation=1 | 20:AGGREGATE [STREAMING] | | output: sum(ws_ext_list_price - ws_ext_discount_amt) | | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | | mem-estimate=17.00MB mem-reservation=17.00MB spill-buffer=1.00MB thread-reservation=0 | | tuple-ids=27 row-size=169B cardinality=148.00K | | in pipelines: 16(GETNEXT) | | | 19:HASH JOIN [INNER JOIN, BROADCAST] | | hash-table-id=07 | | 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=25,24,26 row-size=177B cardinality=148.00K | | in pipelines: 16(GETNEXT), 17(OPEN) | | | |--F33:PLAN FRAGMENT [HASH(ws_bill_customer_sk)] hosts=2 instances=2 | | | Per-Instance Resources: mem-estimate=2.95MB mem-reservation=2.94MB 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: RF010[bloom] <- d_date_sk | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | | | 39:EXCHANGE [BROADCAST] | | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | | tuple-ids=26 row-size=8B cardinality=373 | | | in pipelines: 17(GETNEXT) | | | | | F09:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Instance Resources: mem-estimate=16.05MB mem-reservation=512.00KB thread-reservation=1 | | 17:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | HDFS partitions=1/1 files=1 size=2.15MB | | predicates: tpcds_parquet.date_dim.d_year = CAST(2001 AS INT) | | stored statistics: | | table: rows=73.05K size=2.15MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=73.05K | | parquet statistics predicates: tpcds_parquet.date_dim.d_year = CAST(2001 AS INT) | | parquet dictionary predicates: tpcds_parquet.date_dim.d_year = CAST(2001 AS INT) | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0 | | tuple-ids=26 row-size=8B cardinality=373 | | in pipelines: 17(GETNEXT) | | | 18:HASH JOIN [INNER JOIN, PARTITIONED] | | hash-table-id=08 | | hash predicates: ws_bill_customer_sk = c_customer_sk | | fk/pk conjuncts: none | | mem-estimate=0B mem-reservation=0B spill-buffer=1.00MB thread-reservation=0 | | tuple-ids=25,24 row-size=169B cardinality=719.38K | | in pipelines: 16(GETNEXT), 15(OPEN) | | | |--F34:PLAN FRAGMENT [HASH(ws_bill_customer_sk)] hosts=2 instances=2 | | | Per-Instance Resources: mem-estimate=28.15MB mem-reservation=18.00MB thread-reservation=1 runtime-filters-memory=1.00MB | | JOIN BUILD | | | join-table-id=08 plan-id=09 cohort-id=04 | | | build expressions: c_customer_sk | | | runtime filters: RF012[bloom] <- c_customer_sk | | | mem-estimate=17.00MB mem-reservation=17.00MB spill-buffer=1.00MB thread-reservation=0 | | | | | 38:EXCHANGE [HASH(c_customer_sk)] | | | mem-estimate=10.15MB mem-reservation=0B thread-reservation=0 | | | tuple-ids=24 row-size=153B cardinality=100.00K | | | in pipelines: 15(GETNEXT) | | | | | F07: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=17.23MB mem-reservation=8.00MB thread-reservation=1 | | 15:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | HDFS partitions=1/1 files=1 size=5.49MB | | runtime filters: RF000[bloom] -> tpcds_parquet.customer.c_customer_id, RF002[bloom] -> tpcds_parquet.customer.c_customer_id | | stored statistics: | | table: rows=100.00K size=5.49MB | | columns: all | | extrapolated-rows=disabled max-scan-range-rows=100.00K | | mem-estimate=16.00MB mem-reservation=8.00MB thread-reservation=0 | | tuple-ids=24 row-size=153B cardinality=100.00K | | in pipelines: 15(GETNEXT) | | | 37:EXCHANGE [HASH(ws_bill_customer_sk)] | | mem-estimate=5.53MB mem-reservation=0B thread-reservation=0 | | tuple-ids=25 row-size=16B cardinality=719.38K | | in pipelines: 16(GETNEXT) | | | F06: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=32.16MB mem-reservation=8.00MB thread-reservation=1 | 16:SCAN HDFS [tpcds_parquet.web_sales, RANDOM] | HDFS partitions=1/1 files=2 size=45.09MB | runtime filters: RF010[bloom] -> ws_sold_date_sk, RF012[bloom] -> ws_bill_customer_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=25 row-size=16B cardinality=719.38K | in pipelines: 16(GETNEXT) | 07:UNION | mem-estimate=0B mem-reservation=0B thread-reservation=0 | tuple-ids=18 row-size=93B cardinality=589.03K | in pipelines: 36(GETNEXT) | 36:AGGREGATE [FINALIZE] | output: sum:merge(ss_ext_list_price - ss_ext_discount_amt) | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | mem-estimate=34.00MB mem-reservation=34.00MB spill-buffer=2.00MB thread-reservation=0 | tuple-ids=13 row-size=169B cardinality=589.03K | in pipelines: 36(GETNEXT), 09(OPEN) | 35:EXCHANGE [HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year)] | mem-estimate=10.51MB mem-reservation=0B thread-reservation=0 | tuple-ids=13 row-size=169B cardinality=589.03K | in pipelines: 09(GETNEXT) | F03:PLAN FRAGMENT [HASH(ss_customer_sk)] hosts=3 instances=3 Per-Instance Resources: mem-estimate=40.62MB mem-reservation=34.00MB thread-reservation=1 13:AGGREGATE [STREAMING] | output: sum(ss_ext_list_price - ss_ext_discount_amt) | group by: c_customer_id, c_first_name, c_last_name, c_preferred_cust_flag, c_birth_country, c_login, c_email_address, d_year | mem-estimate=34.00MB mem-reservation=34.00MB spill-buffer=2.00MB thread-reservation=0 | tuple-ids=13 row-size=169B cardinality=589.03K | in pipelines: 09(GETNEXT) | 12:HASH JOIN [INNER JOIN, PARTITIONED] | hash-table-id=09 | hash predicates: ss_customer_sk = c_customer_sk | fk/pk conjuncts: ss_customer_sk = c_customer_sk | mem-estimate=0B mem-reservation=0B spill-buffer=512.00KB thread-reservation=0 | tuple-ids=11,12,10 row-size=177B cardinality=589.03K | in pipelines: 09(GETNEXT), 08(OPEN) | |--F35:PLAN FRAGMENT [HASH(ss_customer_sk)] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=19.65MB mem-reservation=9.50MB thread-reservation=1 runtime-filters-memory=1.00MB | JOIN BUILD | | join-table-id=09 plan-id=10 cohort-id=01 | | build expressions: c_customer_sk | | runtime filters: RF006[bloom] <- c_customer_sk | | mem-estimate=8.50MB mem-reservation=8.50MB spill-buffer=512.00KB thread-reservation=0 | | | 34:EXCHANGE [HASH(c_customer_sk)] | | mem-estimate=10.15MB mem-reservation=0B thread-reservation=0 | | tuple-ids=10 row-size=153B cardinality=100.00K | | in pipelines: 08(GETNEXT) | | | F02:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Shared Resources: mem-estimate=3.00MB mem-reservation=3.00MB thread-reservation=0 runtime-filters-memory=3.00MB | Per-Instance Resources: mem-estimate=17.84MB mem-reservation=8.00MB thread-reservation=1 | 08:SCAN HDFS [tpcds_parquet.customer, RANDOM] | HDFS partitions=1/1 files=1 size=5.49MB | runtime filters: RF004[bloom] -> tpcds_parquet.customer.c_customer_id, RF000[bloom] -> tpcds_parquet.customer.c_customer_id, RF002[bloom] -> tpcds_parquet.customer.c_customer_id | stored statistics: | table: rows=100.00K size=5.49MB | columns: all | extrapolated-rows=disabled max-scan-range-rows=100.00K | mem-estimate=16.00MB mem-reservation=8.00MB thread-reservation=0 | tuple-ids=10 row-size=153B cardinality=100.00K | in pipelines: 08(GETNEXT) | 33:EXCHANGE [HASH(ss_customer_sk)] | mem-estimate=4.59MB mem-reservation=0B thread-reservation=0 | tuple-ids=11,12 row-size=24B cardinality=589.03K | in pipelines: 09(GETNEXT) | F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 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=16.38MB mem-reservation=2.00MB thread-reservation=1 11:HASH JOIN [INNER JOIN, BROADCAST] | hash-table-id=10 | 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=11,12 row-size=24B cardinality=589.03K | in pipelines: 09(GETNEXT), 10(OPEN) | |--F36:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | | Per-Instance Resources: mem-estimate=2.95MB mem-reservation=2.94MB 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, RF009[min_max] <- d_date_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0 | | | 32:EXCHANGE [BROADCAST] | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0 | | tuple-ids=12 row-size=8B cardinality=373 | | in pipelines: 10(GETNEXT) | | | F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Instance Resources: mem-estimate=16.05MB mem-reservation=512.00KB thread-reservation=1 | 10:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | HDFS partitions=1/1 files=1 size=2.15MB | predicates: tpcds_parquet.date_dim.d_year = CAST(2002 AS INT) | stored statistics: | table: rows=73.05K size=2.15MB | columns: all | extrapolated-rows=disabled max-scan-range-rows=73.05K | parquet statistics predicates: tpcds_parquet.date_dim.d_year = CAST(2002 AS INT) | parquet dictionary predicates: tpcds_parquet.date_dim.d_year = CAST(2002 AS INT) | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0 | tuple-ids=12 row-size=8B cardinality=373 | in pipelines: 10(GETNEXT) | 09:SCAN HDFS [tpcds_parquet.store_sales, RANDOM] HDFS partitions=1824/1824 files=1824 size=199.44MB runtime filters: RF009[min_max] -> ss_sold_date_sk, RF008[bloom] -> ss_sold_date_sk, RF006[bloom] -> ss_customer_sk stored statistics: table: rows=2.88M size=199.44MB 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=11 row-size=16B cardinality=2.88M in pipelines: 09(GETNEXT) ---------------- Estimated Per-Host Mem: 681893724 Request Pool: default-pool Per Host Min Memory Reservation: rsuminto-22746:27001(349.31 MB) rsuminto-22746:27002(309.31 MB) rsuminto-22746:27000(202.44 MB) Per Host Number of Fragment Instances: rsuminto-22746:27001(32) rsuminto-22746:27002(24) rsuminto-22746:27000(16) Admission result: Admitted immediately Cluster Memory Admitted: 1.91 GB Executor Group: default ExecSummary: Operator #Hosts #Inst Avg Time Max Time #Rows Est. #Rows Peak Mem Est. Peak Mem Detail ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- F25:ROOT 1 1 57.497us 57.497us 4.01 MB 4.00 MB 56:MERGING-EXCHANGE 1 1 24.141us 24.141us 87 100 48.00 KB 26.23 KB UNPARTITIONED F18:EXCHANGE SENDER 3 3 42.796us 45.190us 7.36 KB 323.86 KB 31:TOP-N 3 3 0.000ns 0.000ns 87 100 36.00 KB 7.52 KB 30:HASH JOIN 3 3 125.831us 142.840us 87 43.59K 53.12 KB 0 INNER JOIN, PARTITIONED |--F26:JOIN BUILD 3 3 2.503ms 3.152ms 4.77 MB 4.75 MB | 55:EXCHANGE 3 3 956.782us 1.269ms 11.25K 148.00K 264.00 KB 3.20 MB HASH(customer_id) | F24:EXCHANGE SENDER 2 2 1.980ms 2.569ms 446.47 KB 576.00 KB | 21:UNION 2 2 235.526us 274.224us 11.25K 148.00K 8.00 KB 0 | 54:AGGREGATE 2 2 10.468ms 18.352ms 11.25K 148.00K 17.11 MB 17.00 MB FINALIZE | 53:EXCHANGE 2 2 598.403us 601.511us 11.25K 148.00K 304.00 KB 10.34 MB HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year) | F21:EXCHANGE SENDER 2 2 5.196ms 5.354ms 507.57 KB 1.35 MB | 27:AGGREGATE 2 2 4.970ms 6.938ms 11.25K 148.00K 17.13 MB 17.00 MB STREAMING | 26:HASH JOIN 2 2 1.601ms 1.804ms 142.49K 148.00K 33.12 KB 0 INNER JOIN, BROADCAST | |--F27:JOIN BUILD 2 2 1.303ms 1.535ms 1.95 MB 1.94 MB | | 52:EXCHANGE 2 2 44.514us 49.079us 365 373 16.00 KB 16.00 KB BROADCAST | | F22:EXCHANGE SENDER 1 1 106.889us 106.889us 34.88 KB 48.00 KB | | 24:SCAN HDFS 1 1 376.752ms 376.752ms 365 373 845.29 KB 16.00 MB tpcds_parquet.date_dim | 25:HASH JOIN 2 2 8.940ms 15.762ms 142.49K 719.38K 25.12 KB 0 INNER JOIN, PARTITIONED | |--F28:JOIN BUILD 2 2 8.107ms 8.511ms 18.02 MB 17.00 MB | | 51:EXCHANGE 2 2 4.990ms 5.278ms 100.00K 100.00K 232.00 KB 10.15 MB HASH(c_customer_sk) | | F20:EXCHANGE SENDER 1 1 77.498ms 77.498ms 563.48 KB 1.23 MB | | 22:SCAN HDFS 1 1 406.947ms 406.947ms 100.00K 100.00K 12.29 MB 16.00 MB tpcds_parquet.customer | 50:EXCHANGE 2 2 5.242ms 5.846ms 142.50K 719.38K 1.77 MB 5.53 MB HASH(ws_bill_customer_sk) | F19:EXCHANGE SENDER 2 2 12.608ms 19.190ms 279.20 KB 160.00 KB | 23:SCAN HDFS 2 2 312.332ms 332.355ms 142.50K 719.38K 9.44 MB 32.00 MB tpcds_parquet.web_sales 29:HASH JOIN 3 3 163.932us 167.746us 180 43.59K 41.12 KB 0 INNER JOIN, PARTITIONED |--F29:JOIN BUILD 3 3 1.384ms 1.524ms 2.90 MB 2.88 MB | 49:EXCHANGE 3 3 194.197us 208.563us 4.18K 58.90K 104.00 KB 987.66 KB HASH(customer_id) | F17:EXCHANGE SENDER 3 3 795.533us 1.016ms 166.67 KB 576.00 KB | 00:UNION 3 3 121.544us 131.973us 4.18K 58.90K 8.00 KB 0 | 47:AGGREGATE 3 3 9.037ms 10.542ms 4.18K 58.90K 34.11 MB 34.00 MB FINALIZE | 46:EXCHANGE 3 3 241.201us 274.571us 4.18K 589.03K 344.00 KB 10.51 MB HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year) | F15:EXCHANGE SENDER 3 3 2.078ms 2.333ms 478.17 KB 2.03 MB | 06:AGGREGATE 3 3 6.192ms 10.473ms 4.18K 589.03K 34.13 MB 34.00 MB STREAMING | 05:HASH JOIN 3 3 9.093ms 24.793ms 58.79K 589.03K 33.12 KB 0 INNER JOIN, PARTITIONED | |--F30:JOIN BUILD 3 3 2.313ms 4.142ms 8.52 MB 8.50 MB | | 45:EXCHANGE 3 3 993.556us 1.614ms 11.25K 100.00K 272.00 KB 10.15 MB HASH(c_customer_sk) | | F14:EXCHANGE SENDER 1 1 9.127ms 9.127ms 755.86 KB 1.84 MB | | 01:SCAN HDFS 1 1 287.593ms 287.593ms 11.25K 100.00K 12.29 MB 16.00 MB tpcds_parquet.customer | 44:EXCHANGE 3 3 2.133ms 2.205ms 58.79K 589.03K 112.00 KB 4.59 MB HASH(ss_customer_sk) | F12:EXCHANGE SENDER 3 3 7.913ms 9.081ms 401.94 KB 384.00 KB | 04:HASH JOIN 3 3 5.970ms 14.445ms 58.79K 589.03K 97.12 KB 0 INNER JOIN, BROADCAST | |--F31:JOIN BUILD 3 3 2.791ms 6.463ms 1.95 MB 1.94 MB | | 43:EXCHANGE 3 3 50.050us 54.947us 365 373 16.00 KB 16.00 KB BROADCAST | | F13:EXCHANGE SENDER 1 1 210.107us 210.107us 49.10 KB 48.00 KB | | 03:SCAN HDFS 1 1 98.207ms 98.207ms 365 373 845.29 KB 16.00 MB tpcds_parquet.date_dim | 02:SCAN HDFS 3 3 881.909ms 1s022ms 58.79K 2.88M 2.06 MB 16.00 MB tpcds_parquet.store_sales 48:EXCHANGE 3 3 39.064us 52.832us 522 43.59K 48.00 KB 2.32 MB HASH(customer_id) F05:EXCHANGE SENDER 3 3 239.991us 270.244us 73.14 KB 1.70 MB 28:HASH JOIN 3 3 458.016us 601.326us 522 43.59K 228.12 KB 0 INNER JOIN, BROADCAST |--F32:JOIN BUILD 3 3 1.035ms 1.124ms 1.96 MB 1.94 MB | 42:EXCHANGE 3 3 118.763us 132.686us 1.33K 14.80K 120.00 KB 731.94 KB BROADCAST | F11:EXCHANGE SENDER 3 3 130.372us 157.038us 52.86 KB 192.00 KB | 14:UNION 3 3 113.073us 196.543us 1.33K 14.80K 8.00 KB 0 | 41:AGGREGATE 3 3 1.437ms 1.787ms 1.33K 14.80K 17.11 MB 17.00 MB FINALIZE | 40:EXCHANGE 3 3 82.561us 116.482us 1.33K 148.00K 104.00 KB 10.34 MB HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year) | F08:EXCHANGE SENDER 2 2 1.290ms 1.830ms 270.36 KB 1.35 MB | 20:AGGREGATE 2 2 3.742ms 4.966ms 1.33K 148.00K 17.13 MB 17.00 MB STREAMING | 19:HASH JOIN 2 2 584.892us 850.649us 16.80K 148.00K 33.12 KB 0 INNER JOIN, BROADCAST | |--F33:JOIN BUILD 2 2 988.112us 1.084ms 1.95 MB 1.94 MB | | 39:EXCHANGE 2 2 39.908us 43.178us 365 373 16.00 KB 16.00 KB BROADCAST | | F09:EXCHANGE SENDER 1 1 114.912us 114.912us 34.88 KB 48.00 KB | | 17:SCAN HDFS 1 1 94.728ms 94.728ms 365 373 845.29 KB 16.00 MB tpcds_parquet.date_dim | 18:HASH JOIN 2 2 2.650ms 4.151ms 16.80K 719.38K 25.12 KB 0 INNER JOIN, PARTITIONED | |--F34:JOIN BUILD 2 2 4.924ms 5.631ms 17.02 MB 17.00 MB | | 38:EXCHANGE 2 2 1.842ms 1.967ms 11.25K 100.00K 272.00 KB 10.15 MB HASH(c_customer_sk) | | F07:EXCHANGE SENDER 1 1 19.714ms 19.714ms 534.03 KB 1.23 MB | | 15:SCAN HDFS 1 1 502.498ms 502.498ms 11.25K 100.00K 12.29 MB 16.00 MB tpcds_parquet.customer | 37:EXCHANGE 2 2 9.660ms 15.699ms 108.28K 719.38K 1.24 MB 5.53 MB HASH(ws_bill_customer_sk) | F06:EXCHANGE SENDER 2 2 16.323ms 26.920ms 279.20 KB 160.00 KB | 16:SCAN HDFS 2 2 642.905ms 744.442ms 108.28K 719.38K 9.44 MB 32.00 MB tpcds_parquet.web_sales 07:UNION 3 3 145.393us 176.725us 4.30K 589.03K 8.00 KB 0 36:AGGREGATE 3 3 5.437ms 6.368ms 4.30K 589.03K 34.11 MB 34.00 MB FINALIZE 35:EXCHANGE 3 3 182.560us 206.660us 4.30K 589.03K 360.00 KB 10.51 MB HASH(c_customer_id,c_first_name,c_last_name,c_preferred_cust_flag,c_birth_country,c_login,c_email_address,d_year) F03:EXCHANGE SENDER 3 3 2.030ms 2.234ms 510.29 KB 2.03 MB 13:AGGREGATE 3 3 8.043ms 14.180ms 4.30K 589.03K 34.13 MB 34.00 MB STREAMING 12:HASH JOIN 3 3 14.474ms 39.377ms 61.07K 589.03K 33.12 KB 0 INNER JOIN, PARTITIONED |--F35:JOIN BUILD 3 3 2.643ms 3.270ms 8.52 MB 8.50 MB | 34:EXCHANGE 3 3 1.001ms 1.378ms 11.25K 100.00K 232.00 KB 10.15 MB HASH(c_customer_sk) | F02:EXCHANGE SENDER 1 1 20.095ms 20.095ms 755.86 KB 1.84 MB | 08:SCAN HDFS 1 1 718.000ms 718.000ms 11.25K 100.00K 12.29 MB 16.00 MB tpcds_parquet.customer 33:EXCHANGE 3 3 4.338ms 6.550ms 97.79K 589.03K 672.00 KB 4.59 MB HASH(ss_customer_sk) F00:EXCHANGE SENDER 3 3 15.853ms 17.236ms 417.94 KB 384.00 KB 11:HASH JOIN 3 3 2.509ms 2.728ms 97.79K 589.03K 97.12 KB 0 INNER JOIN, BROADCAST |--F36:JOIN BUILD 3 3 1.331ms 2.153ms 1.95 MB 1.94 MB | 32:EXCHANGE 3 3 45.638us 57.422us 365 373 16.00 KB 16.00 KB BROADCAST | F01:EXCHANGE SENDER 1 1 108.893us 108.893us 49.10 KB 48.00 KB | 10:SCAN HDFS 1 1 372.763ms 372.763ms 365 373 845.29 KB 16.00 MB tpcds_parquet.date_dim 09:SCAN HDFS 3 3 951.968ms 1s026ms 97.79K 2.88M 2.06 MB 16.00 MB tpcds_parquet.store_sales Errors: Query Compilation: 5s736ms - Metadata load started: 41.929ms (41.929ms) - Metadata load finished. loaded-tables=4/4 load-requests=1 catalog-updates=5 storage-load-time=553ms: 5s161ms (5s120ms) - Analysis finished: 5s311ms (149.599ms) - Authorization finished (noop): 5s311ms (377.194us) - Value transfer graph computed: 5s329ms (17.981ms) - Single node plan created: 5s521ms (191.580ms) - Runtime filters computed: 5s543ms (22.289ms) - Distributed plan created: 5s544ms (1.097ms) - Parallel plans created: 5s546ms (1.820ms) - Metadata of all 4 tables cached: 5s628ms (82.167ms) - Analysis finished: 5s643ms (14.681ms) - Value transfer graph computed: 5s644ms (448.105us) - Single node plan created: 5s713ms (69.295ms) - Runtime filters computed: 5s723ms (10.652ms) - Distributed plan created: 5s724ms (112.822us) - Parallel plans created: 5s724ms (61.037us) - Planning finished: 5s736ms (12.576ms) Query Timeline: 7s185ms - Query submitted: 21.604us (21.604us) - Planning finished: 5s758ms (5s758ms) - Submit for admission: 5s759ms (227.656us) - Completed admission: 5s762ms (3.851ms) - Ready to start on 3 backends: 5s763ms (708.872us) - All 3 execution backends (72 fragment instances) started: 5s775ms (11.974ms) - First dynamic filter received: 6s279ms (503.462ms) - Rows available: 7s121ms (842.261ms) - First row fetched: 7s169ms (48.289ms) - Last row fetched: 7s169ms (3.975us) - Released admission control resources: 7s172ms (3.234ms) - Unregister query: 7s185ms (13.088ms) - AdmissionControlTimeSinceLastUpdate: 41.000ms - ComputeScanRangeAssignmentTimer: 2.519ms Frontend: Referenced Tables: tpcds_parquet.web_sales, tpcds_parquet.customer, tpcds_parquet.store_sales, tpcds_parquet.date_dim - ExecutorGroupsConsidered: 2 (2) Executor group 1 (small): Verdict: not enough per-host memory - MemoryAsk: 1.91 GB (2045681172) - MemoryMax: 192.00 MB (201326592) Executor group 2 (large): Verdict: Match - MemoryAsk: 1.91 GB (2045681172) - MemoryMax: 8589934592.00 GB (9223372036854775807) ImpalaServer: - ClientFetchWaitTimer: 60.869ms - NumRowsFetched: 87 (87) - NumRowsFetchedFromCache: 0 (0) - RowMaterializationRate: 23.63 K/sec - RowMaterializationTimer: 3.681ms Execution Profile f04aed6e613865a1:acb29fb100000000: Number of filters: 12 Filter routing table: ID Src. Node Tgt. Node(s) Target type Partition filter Pending (Expected) First arrived Completed Enabled Bloom Size Est fpp Min value Max value In-list size ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 12 18 16 REMOTE false 2 (2) N/A N/A true 1.00 MB 2.84e-07 10 19 16 REMOTE false 1 (2) N/A N/A true 1.00 MB 2.45e-14 4 28 8 REMOTE false 1 (3) N/A N/A true 1.00 MB 1.33e-10 14 5 2 REMOTE false 3 (3) N/A N/A true 1.00 MB 2.84e-07 16 4 2 LOCAL true 0 (3) N/A N/A true 1.00 MB 2.45e-14 2 29 15, 8 REMOTE, REMOTE false, false 3 (3) N/A N/A true 1.00 MB 2.55e-08 18 26 23 REMOTE false 1 (2) N/A N/A true 1.00 MB 2.45e-14 17 4 2 LOCAL true 0 (3) N/A N/A true MIN_MAX PartialUpdates PartialUpdates 0 30 1, 15, 8 REMOTE, REMOTE, REMOTE false, false, false 3 (3) N/A N/A true 1.00 MB 1.92e-06 6 12 9 REMOTE false 3 (3) N/A N/A true 1.00 MB 2.84e-07 8 11 9 LOCAL true 0 (3) N/A N/A true 1.00 MB 2.45e-14 9 11 9 LOCAL true 0 (3) N/A N/A true MIN_MAX PartialUpdates PartialUpdates Backend startup latencies: Count: 3, min / max: 9ms / 10ms, 25th %-ile: 9ms, 50th %-ile: 10ms, 75th %-ile: 10ms, 90th %-ile: 10ms, 95th %-ile: 10ms, 99.9th %-ile: 10ms Slowest backend to start up: rsuminto-22746:27000 Final filter table: ID Src. Node Tgt. Node(s) Target type Partition filter Pending (Expected) First arrived Completed Enabled Bloom Size Est fpp Min value Max value In-list size ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 12 18 16 REMOTE false 0 (2) 6s833ms 6s834ms true 1.00 MB 2.84e-07 10 19 16 REMOTE false 0 (2) 6s279ms 6s279ms true 1.00 MB 2.45e-14 4 28 8 REMOTE false 0 (3) 6s868ms 6s869ms true 1.00 MB 1.33e-10 14 5 2 REMOTE false 0 (3) 6s537ms 6s538ms true 1.00 MB 2.84e-07 16 4 2 LOCAL true 0 (3) N/A N/A true 1.00 MB 2.45e-14 2 29 15, 8 REMOTE, REMOTE false, false 0 (3) 7s076ms 7s077ms true 1.00 MB 2.55e-08 18 26 23 REMOTE false 0 (2) 6s280ms 6s281ms true 1.00 MB 2.45e-14 17 4 2 LOCAL true 0 (3) N/A N/A true MIN_MAX PartialUpdates PartialUpdates 0 30 1, 15, 8 REMOTE, REMOTE, REMOTE false, false, false 0 (3) 6s502ms 6s504ms true 1.00 MB 1.92e-06 6 12 9 REMOTE false 0 (3) 6s831ms 6s832ms true 1.00 MB 2.84e-07 8 11 9 LOCAL true 0 (3) N/A N/A true 1.00 MB 2.45e-14 9 11 9 LOCAL true 0 (3) N/A N/A true MIN_MAX PartialUpdates PartialUpdates Per Node Peak Memory Usage: rsuminto-22746:27000(240.25 MB) rsuminto-22746:27002(356.95 MB) rsuminto-22746:27001(397.48 MB) Per Node Bytes Read: rsuminto-22746:27000(22.00 MB) rsuminto-22746:27002(23.60 MB) rsuminto-22746:27001(50.79 MB) Per Node User Time: rsuminto-22746:27000(3s601ms) rsuminto-22746:27002(5s103ms) rsuminto-22746:27001(5s534ms) Per Node System Time: rsuminto-22746:27000(173.176ms) rsuminto-22746:27002(164.447ms) rsuminto-22746:27001(228.531ms) - ExchangeScanRatio: 0.19 - FiltersReceived: 17 (17) - FinalizationTimer: 0.000ns - InnerNodeSelectivityRatio: 0.14 - NumBackends: 3 (3) - NumCompletedBackends: 3 (3) - NumFragmentInstances: 72 (72) - NumFragments: 33 (33) - TotalBytesRead: 96.40 MB (101078298) - TotalBytesSent: 20.33 MB (21319900) - TotalCpuTime: 14s806ms - TotalInnerBytesSent: 2.44 MB (2554448) - TotalScanBytesSent: 17.90 MB (18765452) Per Node Profiles: rsuminto-22746:27000: Filter 16 arrival: 503ms Filter 8 arrival: 503ms Filter 17 arrival: 503ms Filter 9 arrival: 503ms Filter 14 arrival: 766ms Filter 6 arrival: 1s059ms - AdmissionSlots: 1 (1) - BloomFilterBytes: 9.00 MB (9437184) - InListFilterItems: 0 (0) - ScratchBytesRead: 0 - ScratchBytesReadUseLocalDisk: 0 - ScratchBytesReadUseMem: 0 - ScratchBytesWritten: 0 - ScratchFileUsedBytes: 0 - ScratchReads: 0 (0) - ScratchReadsUseLocalDisk: 0 (0) - ScratchReadsUseMem: 0 (0) - ScratchWrites: 0 (0) - TotalEncryptionTime: 0.000ns - TotalReadBlockTime: 0.000ns - UncompressedScratchBytesWritten: 0 Buffer pool: - AllocTime: 54.909us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 9.00 MB (9437184) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 11.00 MB (11534336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 9.00 MB (9437184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 11.00 MB (11534336) - SystemAllocTime: 42.278us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns JVM: - GcCount: 1 (1) - GcNumInfoThresholdExceeded: 0 (0) - GcNumWarnThresholdExceeded: 0 (0) - GcTimeMillis: 4ms - GcTotalExtraSleepTimeMillis: 0 Fragment F25: CodeGen: - CodegenCacheLookupTime: 1.466ms - CodegenCacheSaveTime: 14.506ms - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 12 (12) - CodegenTotalWallClockTime: 183.257ms - CodegenSysTime: 4.025ms - CodegenUserTime: 84.382ms - CodegenVoluntaryContextSwitches: 69 (69) - CompileTime: 53.782ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.486ms - LoadTime: 0.000ns - MainThreadCodegenTime: 156.265ms - ModuleBitcodeGenTime: 1.402ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 65 (65) - NumInstructions: 2.01K (2010) - OptimizationTime: 83.172ms - PeakMemoryUsage: 1005.00 KB (1029120) - PrepareTime: 27.003ms - TotalTime: 183.268ms Fragment F18: CodeGen: - CodegenCacheLookupTime: 7.275ms - CodegenCacheSaveTime: 134.010us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 41 (41) - CodegenTotalWallClockTime: 701.131ms - CodegenSysTime: 3.998ms - CodegenUserTime: 621.724ms - CodegenVoluntaryContextSwitches: 34 (34) - CompileTime: 50.260ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 17.213ms - LoadTime: 0.000ns - MainThreadCodegenTime: 687.486ms - ModuleBitcodeGenTime: 7.048ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 269 (269) - NumInstructions: 15.22K (15224) - OptimizationTime: 596.280ms - PeakMemoryUsage: 7.43 MB (7794688) - PrepareTime: 13.650ms - TotalTime: 701.136ms Fragment F05: CodeGen: - CodegenCacheLookupTime: 3.902ms - CodegenCacheSaveTime: 146.161us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 39 (39) - CodegenTotalWallClockTime: 317.216ms - CodegenSysTime: 15.726ms - CodegenUserTime: 239.686ms - CodegenVoluntaryContextSwitches: 29 (29) - CompileTime: 20.035ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 31.092ms - LoadTime: 0.000ns - MainThreadCodegenTime: 292.017ms - ModuleBitcodeGenTime: 3.773ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 140 (140) - NumInstructions: 4.67K (4674) - OptimizationTime: 235.056ms - PeakMemoryUsage: 2.28 MB (2393088) - PrepareTime: 25.207ms - TotalTime: 317.223ms Fragment F03: CodeGen: - CodegenCacheLookupTime: 23.790ms - CodegenCacheSaveTime: 141.993us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 39 (39) - CodegenTotalWallClockTime: 416.646ms - CodegenSysTime: 11.568ms - CodegenUserTime: 308.495ms - CodegenVoluntaryContextSwitches: 22 (22) - CompileTime: 21.137ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 9.257ms - LoadTime: 0.000ns - MainThreadCodegenTime: 396.145ms - ModuleBitcodeGenTime: 23.621ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 170 (170) - NumInstructions: 6.83K (6834) - OptimizationTime: 320.657ms - PeakMemoryUsage: 3.34 MB (3499008) - PrepareTime: 20.507ms - TotalTime: 416.652ms Fragment F00: CodeGen: - CodegenCacheLookupTime: 3.252ms - CodegenCacheSaveTime: 168.502us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 35 (35) - CodegenTotalWallClockTime: 278.016ms - CodegenSysTime: 11.166ms - CodegenUserTime: 193.097ms - CodegenVoluntaryContextSwitches: 28 (28) - CompileTime: 13.521ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 4.284ms - LoadTime: 0.000ns - MainThreadCodegenTime: 204.126ms - ModuleBitcodeGenTime: 3.134ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 106 (106) - NumInstructions: 3.25K (3249) - OptimizationTime: 181.819ms - PeakMemoryUsage: 1.59 MB (1663488) - PrepareTime: 73.897ms - TotalTime: 278.023ms Fragment F26: CodeGen: - CodegenCacheLookupTime: 2.283ms - CodegenCacheSaveTime: 126.717us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 69 (69) - CodegenTotalWallClockTime: 203.141ms - CodegenSysTime: 11.260ms - CodegenUserTime: 104.947ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 28.378ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 19.953ms - LoadTime: 0.000ns - MainThreadCodegenTime: 183.282ms - ModuleBitcodeGenTime: 2.203ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 131.620ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 19.865ms - TotalTime: 203.147ms Fragment F29: CodeGen: - CodegenCacheLookupTime: 2.225ms - CodegenCacheSaveTime: 92.240us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 14 (14) - CodegenTotalWallClockTime: 184.197ms - CodegenSysTime: 3.993ms - CodegenUserTime: 103.819ms - CodegenVoluntaryContextSwitches: 60 (60) - CompileTime: 59.413ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.221ms - LoadTime: 0.000ns - MainThreadCodegenTime: 167.152ms - ModuleBitcodeGenTime: 2.142ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 101.423ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 17.049ms - TotalTime: 184.201ms Fragment F17: CodeGen: - CodegenCacheLookupTime: 5.200ms - CodegenCacheSaveTime: 129.728us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 70 (70) - CodegenTotalWallClockTime: 509.676ms - CodegenSysTime: 11.821ms - CodegenUserTime: 409.073ms - CodegenVoluntaryContextSwitches: 20 (20) - CompileTime: 51.172ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 24.892ms - LoadTime: 0.000ns - MainThreadCodegenTime: 452.155ms - ModuleBitcodeGenTime: 5.057ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 190 (190) - NumInstructions: 7.75K (7755) - OptimizationTime: 369.576ms - PeakMemoryUsage: 3.79 MB (3970560) - PrepareTime: 57.528ms - TotalTime: 509.683ms Fragment F15: CodeGen: - CodegenCacheLookupTime: 21.270ms - CodegenCacheSaveTime: 223.226us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 55 (55) - CodegenTotalWallClockTime: 454.626ms - CodegenSysTime: 4.016ms - CodegenUserTime: 302.416ms - CodegenVoluntaryContextSwitches: 53 (53) - CompileTime: 20.419ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 7.243ms - LoadTime: 0.000ns - MainThreadCodegenTime: 406.383ms - ModuleBitcodeGenTime: 21.159ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 170 (170) - NumInstructions: 6.83K (6834) - OptimizationTime: 356.079ms - PeakMemoryUsage: 3.34 MB (3499008) - PrepareTime: 48.251ms - TotalTime: 454.634ms Fragment F12: CodeGen: - CodegenCacheLookupTime: 2.867ms - CodegenCacheSaveTime: 168.464us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 44 (44) - CodegenTotalWallClockTime: 245.611ms - CodegenSysTime: 11.405ms - CodegenUserTime: 163.462ms - CodegenVoluntaryContextSwitches: 34 (34) - CompileTime: 12.430ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 5.583ms - LoadTime: 0.000ns - MainThreadCodegenTime: 222.320ms - ModuleBitcodeGenTime: 2.766ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 106 (106) - NumInstructions: 3.25K (3249) - OptimizationTime: 200.423ms - PeakMemoryUsage: 1.59 MB (1663488) - PrepareTime: 23.296ms - TotalTime: 245.617ms Fragment F30: CodeGen: - CodegenCacheLookupTime: 23.726ms - CodegenCacheSaveTime: 117.510us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 16 (16) - CodegenTotalWallClockTime: 168.429ms - CodegenSysTime: 3.630ms - CodegenUserTime: 86.569ms - CodegenVoluntaryContextSwitches: 30 (30) - CompileTime: 23.697ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.160ms - LoadTime: 0.000ns - MainThreadCodegenTime: 123.576ms - ModuleBitcodeGenTime: 23.636ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 71.918ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 44.859ms - TotalTime: 168.435ms Fragment F31: CodeGen: - CodegenCacheLookupTime: 2.141ms - CodegenCacheSaveTime: 128.164us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 19 (19) - CodegenTotalWallClockTime: 184.628ms - CodegenSysTime: 3.553ms - CodegenUserTime: 88.814ms - CodegenVoluntaryContextSwitches: 40 (40) - CompileTime: 42.665ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 20.771ms - LoadTime: 0.000ns - MainThreadCodegenTime: 161.073ms - ModuleBitcodeGenTime: 2.050ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 94 (94) - NumInstructions: 2.66K (2659) - OptimizationTime: 94.469ms - PeakMemoryUsage: 1.30 MB (1361408) - PrepareTime: 23.566ms - TotalTime: 184.639ms Fragment F32: CodeGen: - CodegenCacheLookupTime: 2.535ms - CodegenCacheSaveTime: 114.907us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 35 (35) - CodegenTotalWallClockTime: 203.156ms - CodegenSysTime: 0.000ns - CodegenUserTime: 134.662ms - CodegenVoluntaryContextSwitches: 10 (10) - CompileTime: 10.459ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.451ms - LoadTime: 0.000ns - MainThreadCodegenTime: 146.155ms - ModuleBitcodeGenTime: 2.433ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 128.569ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 57.009ms - TotalTime: 203.163ms Fragment F11: CodeGen: - CodegenCacheLookupTime: 5.673ms - CodegenCacheSaveTime: 147.484us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 41 (41) - CodegenTotalWallClockTime: 489.579ms - CodegenSysTime: 4.054ms - CodegenUserTime: 407.010ms - CodegenVoluntaryContextSwitches: 43 (43) - CompileTime: 50.251ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 5.251ms - LoadTime: 0.000ns - MainThreadCodegenTime: 459.137ms - ModuleBitcodeGenTime: 5.559ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 143 (143) - NumInstructions: 6.55K (6555) - OptimizationTime: 384.929ms - PeakMemoryUsage: 3.20 MB (3356160) - PrepareTime: 30.447ms - TotalTime: 489.584ms Fragment F35: CodeGen: - CodegenCacheLookupTime: 3.371ms - CodegenCacheSaveTime: 240.830us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 10 (10) - CodegenTotalWallClockTime: 183.470ms - CodegenSysTime: 12.413ms - CodegenUserTime: 86.693ms - CodegenVoluntaryContextSwitches: 80 (80) - CompileTime: 58.128ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 5.285ms - LoadTime: 0.000ns - MainThreadCodegenTime: 166.472ms - ModuleBitcodeGenTime: 3.295ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 98.540ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 17.003ms - TotalTime: 183.474ms Fragment F36: CodeGen: - CodegenCacheLookupTime: 2.119ms - CodegenCacheSaveTime: 129.311us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 10 (10) - CodegenTotalWallClockTime: 182.671ms - CodegenSysTime: 8.113ms - CodegenUserTime: 76.929ms - CodegenVoluntaryContextSwitches: 73 (73) - CompileTime: 82.090ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.246ms - LoadTime: 0.000ns - MainThreadCodegenTime: 165.430ms - ModuleBitcodeGenTime: 2.031ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 94 (94) - NumInstructions: 2.66K (2659) - OptimizationTime: 77.032ms - PeakMemoryUsage: 1.30 MB (1361408) - PrepareTime: 17.245ms - TotalTime: 182.675ms rsuminto-22746:27002: Filter 16 arrival: 503ms Filter 17 arrival: 503ms Filter 8 arrival: 504ms Filter 9 arrival: 504ms Filter 10 arrival: 510ms Filter 18 arrival: 512ms Filter 14 arrival: 767ms Filter 6 arrival: 1s060ms Filter 12 arrival: 1s063ms - AdmissionSlots: 1 (1) - BloomFilterBytes: 15.00 MB (15728640) - InListFilterItems: 0 (0) - ScratchBytesRead: 0 - ScratchBytesReadUseLocalDisk: 0 - ScratchBytesReadUseMem: 0 - ScratchBytesWritten: 0 - ScratchFileUsedBytes: 0 - ScratchReads: 0 (0) - ScratchReadsUseLocalDisk: 0 (0) - ScratchReadsUseMem: 0 (0) - ScratchWrites: 0 (0) - TotalEncryptionTime: 0.000ns - TotalReadBlockTime: 0.000ns - UncompressedScratchBytesWritten: 0 Buffer pool: - AllocTime: 137.840us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 15.00 MB (15728640) - CumulativeAllocations: 15 (15) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 15.00 MB (15728640) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 17.00 MB (17825792) - SystemAllocTime: 115.372us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns JVM: - GcCount: 1 (1) - GcNumInfoThresholdExceeded: 0 (0) - GcNumWarnThresholdExceeded: 0 (0) - GcTimeMillis: 5ms - GcTotalExtraSleepTimeMillis: 0 Fragment F18: CodeGen: - CodegenCacheLookupTime: 33.617ms - CodegenCacheSaveTime: 153.374us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 59 (59) - CodegenTotalWallClockTime: 797.015ms - CodegenSysTime: 0.000ns - CodegenUserTime: 617.619ms - CodegenVoluntaryContextSwitches: 82 (82) - CompileTime: 55.972ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 90.656ms - LoadTime: 0.000ns - MainThreadCodegenTime: 774.752ms - ModuleBitcodeGenTime: 33.455ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 269 (269) - NumInstructions: 15.22K (15224) - OptimizationTime: 593.075ms - PeakMemoryUsage: 7.43 MB (7794688) - PrepareTime: 22.269ms - TotalTime: 797.021ms Fragment F05: CodeGen: - CodegenCacheLookupTime: 5.145ms - CodegenCacheSaveTime: 145.397us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 101 (101) - CodegenTotalWallClockTime: 436.159ms - CodegenSysTime: 3.958ms - CodegenUserTime: 285.577ms - CodegenVoluntaryContextSwitches: 24 (24) - CompileTime: 24.434ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 34.983ms - LoadTime: 0.000ns - MainThreadCodegenTime: 363.023ms - ModuleBitcodeGenTime: 5.027ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 140 (140) - NumInstructions: 4.67K (4674) - OptimizationTime: 297.182ms - PeakMemoryUsage: 2.28 MB (2393088) - PrepareTime: 73.142ms - TotalTime: 436.164ms Fragment F03: CodeGen: - CodegenCacheLookupTime: 4.454ms - CodegenCacheSaveTime: 144.475us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 24 (24) - CodegenTotalWallClockTime: 400.016ms - CodegenSysTime: 0.000ns - CodegenUserTime: 302.417ms - CodegenVoluntaryContextSwitches: 29 (29) - CompileTime: 21.848ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 22.988ms - LoadTime: 0.000ns - MainThreadCodegenTime: 382.460ms - ModuleBitcodeGenTime: 4.333ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 170 (170) - NumInstructions: 6.83K (6834) - OptimizationTime: 331.967ms - PeakMemoryUsage: 3.34 MB (3499008) - PrepareTime: 17.562ms - TotalTime: 400.021ms Fragment F00: CodeGen: - CodegenCacheLookupTime: 2.883ms - CodegenCacheSaveTime: 132.663us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 25 (25) - CodegenTotalWallClockTime: 244.859ms - CodegenSysTime: 0.000ns - CodegenUserTime: 159.868ms - CodegenVoluntaryContextSwitches: 29 (29) - CompileTime: 10.622ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.996ms - LoadTime: 0.000ns - MainThreadCodegenTime: 212.680ms - ModuleBitcodeGenTime: 2.774ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 106 (106) - NumInstructions: 3.25K (3249) - OptimizationTime: 194.225ms - PeakMemoryUsage: 1.59 MB (1663488) - PrepareTime: 32.185ms - TotalTime: 244.865ms Fragment F26: CodeGen: - CodegenCacheLookupTime: 7.408ms - CodegenCacheSaveTime: 100.334us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 30 (30) - CodegenTotalWallClockTime: 218.929ms - CodegenSysTime: 3.854ms - CodegenUserTime: 111.594ms - CodegenVoluntaryContextSwitches: 52 (52) - CompileTime: 29.828ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 4.121ms - LoadTime: 0.000ns - MainThreadCodegenTime: 187.416ms - ModuleBitcodeGenTime: 7.309ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 144.862ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 31.521ms - TotalTime: 218.937ms Fragment F24: CodeGen: - CodegenCacheLookupTime: 9.273ms - CodegenCacheSaveTime: 113.955us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 33 (33) - CodegenTotalWallClockTime: 260.996ms - CodegenSysTime: 0.000ns - CodegenUserTime: 165.444ms - CodegenVoluntaryContextSwitches: 40 (40) - CompileTime: 30.324ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 17.901ms - LoadTime: 0.000ns - MainThreadCodegenTime: 211.978ms - ModuleBitcodeGenTime: 9.167ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 125 (125) - NumInstructions: 3.17K (3166) - OptimizationTime: 153.372ms - PeakMemoryUsage: 1.55 MB (1620992) - PrepareTime: 49.028ms - TotalTime: 261.006ms Fragment F21: CodeGen: - CodegenCacheLookupTime: 5.007ms - CodegenCacheSaveTime: 188.707us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 43 (43) - CodegenTotalWallClockTime: 439.252ms - CodegenSysTime: 7.569ms - CodegenUserTime: 343.879ms - CodegenVoluntaryContextSwitches: 21 (21) - CompileTime: 26.041ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 7.885ms - LoadTime: 0.000ns - MainThreadCodegenTime: 412.414ms - ModuleBitcodeGenTime: 4.918ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 183 (183) - NumInstructions: 8.18K (8182) - OptimizationTime: 370.902ms - PeakMemoryUsage: 4.00 MB (4189184) - PrepareTime: 26.845ms - TotalTime: 439.259ms Fragment F19: CodeGen: - CodegenCacheLookupTime: 2.003ms - CodegenCacheSaveTime: 123.114us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 18 (18) - CodegenTotalWallClockTime: 131.668ms - CodegenSysTime: 0.000ns - CodegenUserTime: 54.249ms - CodegenVoluntaryContextSwitches: 45 (45) - CompileTime: 38.168ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 5.631ms - LoadTime: 0.000ns - MainThreadCodegenTime: 90.824ms - ModuleBitcodeGenTime: 1.905ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 72 (72) - NumInstructions: 1.56K (1560) - OptimizationTime: 43.891ms - PeakMemoryUsage: 780.00 KB (798720) - PrepareTime: 40.851ms - TotalTime: 131.674ms Fragment F27: CodeGen: - CodegenCacheLookupTime: 2.161ms - CodegenCacheSaveTime: 129.219us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 4 (4) - CodegenTotalWallClockTime: 122.776ms - CodegenSysTime: 0.000ns - CodegenUserTime: 81.714ms - CodegenVoluntaryContextSwitches: 41 (41) - CompileTime: 37.532ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.760ms - LoadTime: 0.000ns - MainThreadCodegenTime: 97.488ms - ModuleBitcodeGenTime: 2.071ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 53.866ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 25.296ms - TotalTime: 122.784ms Fragment F28: CodeGen: - CodegenCacheLookupTime: 1.605ms - CodegenCacheSaveTime: 86.198us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 18 (18) - CodegenTotalWallClockTime: 148.158ms - CodegenSysTime: 0.000ns - CodegenUserTime: 83.642ms - CodegenVoluntaryContextSwitches: 7 (7) - CompileTime: 23.420ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.234ms - LoadTime: 0.000ns - MainThreadCodegenTime: 122.891ms - ModuleBitcodeGenTime: 1.530ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 38 (38) - NumInstructions: 1.54K (1544) - OptimizationTime: 94.669ms - PeakMemoryUsage: 772.00 KB (790528) - PrepareTime: 25.275ms - TotalTime: 148.166ms Fragment F29: CodeGen: - CodegenCacheLookupTime: 2.526ms - CodegenCacheSaveTime: 127.756us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 34 (34) - CodegenTotalWallClockTime: 183.302ms - CodegenSysTime: 8.029ms - CodegenUserTime: 124.395ms - CodegenVoluntaryContextSwitches: 11 (11) - CompileTime: 11.404ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.634ms - LoadTime: 0.000ns - MainThreadCodegenTime: 143.642ms - ModuleBitcodeGenTime: 2.426ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 124.919ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 39.668ms - TotalTime: 183.309ms Fragment F17: CodeGen: - CodegenCacheLookupTime: 5.120ms - CodegenCacheSaveTime: 166.089us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 90 (90) - CodegenTotalWallClockTime: 577.281ms - CodegenSysTime: 7.758ms - CodegenUserTime: 468.689ms - CodegenVoluntaryContextSwitches: 39 (39) - CompileTime: 59.035ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 38.818ms - LoadTime: 0.000ns - MainThreadCodegenTime: 516.628ms - ModuleBitcodeGenTime: 4.977ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 190 (190) - NumInstructions: 7.75K (7755) - OptimizationTime: 410.887ms - PeakMemoryUsage: 3.79 MB (3970560) - PrepareTime: 60.662ms - TotalTime: 577.290ms Fragment F15: CodeGen: - CodegenCacheLookupTime: 62.274ms - CodegenCacheSaveTime: 232.095us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 51 (51) - CodegenTotalWallClockTime: 487.945ms - CodegenSysTime: 0.000ns - CodegenUserTime: 310.311ms - CodegenVoluntaryContextSwitches: 66 (66) - CompileTime: 22.048ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 6.590ms - LoadTime: 0.000ns - MainThreadCodegenTime: 455.342ms - ModuleBitcodeGenTime: 62.150ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 170 (170) - NumInstructions: 6.83K (6834) - OptimizationTime: 363.158ms - PeakMemoryUsage: 3.34 MB (3499008) - PrepareTime: 32.609ms - TotalTime: 487.950ms Fragment F12: CodeGen: - CodegenCacheLookupTime: 24.442ms - CodegenCacheSaveTime: 114.871us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 34 (34) - CodegenTotalWallClockTime: 297.003ms - CodegenSysTime: 4.649ms - CodegenUserTime: 196.786ms - CodegenVoluntaryContextSwitches: 31 (31) - CompileTime: 9.762ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 11.155ms - LoadTime: 0.000ns - MainThreadCodegenTime: 234.763ms - ModuleBitcodeGenTime: 24.313ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 106 (106) - NumInstructions: 3.25K (3249) - OptimizationTime: 188.298ms - PeakMemoryUsage: 1.59 MB (1663488) - PrepareTime: 62.247ms - TotalTime: 297.010ms Fragment F30: CodeGen: - CodegenCacheLookupTime: 2.213ms - CodegenCacheSaveTime: 99.312us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 37 (37) - CodegenTotalWallClockTime: 237.375ms - CodegenSysTime: 3.807ms - CodegenUserTime: 83.420ms - CodegenVoluntaryContextSwitches: 61 (61) - CompileTime: 31.357ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 68.399ms - LoadTime: 0.000ns - MainThreadCodegenTime: 209.918ms - ModuleBitcodeGenTime: 2.122ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 106.919ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 27.464ms - TotalTime: 237.381ms Fragment F31: CodeGen: - CodegenCacheLookupTime: 2.083ms - CodegenCacheSaveTime: 97.539us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 8 (8) - CodegenTotalWallClockTime: 255.662ms - CodegenSysTime: 8.694ms - CodegenUserTime: 78.230ms - CodegenVoluntaryContextSwitches: 79 (79) - CompileTime: 117.475ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.866ms - LoadTime: 0.000ns - MainThreadCodegenTime: 226.294ms - ModuleBitcodeGenTime: 2.006ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 94 (94) - NumInstructions: 2.66K (2659) - OptimizationTime: 102.959ms - PeakMemoryUsage: 1.30 MB (1361408) - PrepareTime: 29.373ms - TotalTime: 255.667ms Fragment F32: CodeGen: - CodegenCacheLookupTime: 2.209ms - CodegenCacheSaveTime: 90.302us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 16 (16) - CodegenTotalWallClockTime: 256.229ms - CodegenSysTime: 3.948ms - CodegenUserTime: 114.486ms - CodegenVoluntaryContextSwitches: 75 (75) - CompileTime: 79.441ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 15.612ms - LoadTime: 0.000ns - MainThreadCodegenTime: 230.012ms - ModuleBitcodeGenTime: 2.123ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 111.915ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 26.225ms - TotalTime: 256.236ms Fragment F11: CodeGen: - CodegenCacheLookupTime: 4.444ms - CodegenCacheSaveTime: 149.149us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 45 (45) - CodegenTotalWallClockTime: 557.736ms - CodegenSysTime: 12.032ms - CodegenUserTime: 397.004ms - CodegenVoluntaryContextSwitches: 52 (52) - CompileTime: 49.669ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 4.781ms - LoadTime: 0.000ns - MainThreadCodegenTime: 526.345ms - ModuleBitcodeGenTime: 4.319ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 143 (143) - NumInstructions: 6.55K (6555) - OptimizationTime: 466.409ms - PeakMemoryUsage: 3.20 MB (3356160) - PrepareTime: 31.396ms - TotalTime: 557.741ms Fragment F08: CodeGen: - CodegenCacheLookupTime: 19.579ms - CodegenCacheSaveTime: 98.699us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 116 (116) - CodegenTotalWallClockTime: 550.934ms - CodegenSysTime: 4.222ms - CodegenUserTime: 395.025ms - CodegenVoluntaryContextSwitches: 50 (50) - CompileTime: 17.202ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 23.672ms - LoadTime: 0.000ns - MainThreadCodegenTime: 485.422ms - ModuleBitcodeGenTime: 19.442ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 183 (183) - NumInstructions: 8.18K (8182) - OptimizationTime: 423.762ms - PeakMemoryUsage: 4.00 MB (4189184) - PrepareTime: 65.520ms - TotalTime: 550.942ms Fragment F06: CodeGen: - CodegenCacheLookupTime: 1.929ms - CodegenCacheSaveTime: 418.970us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 9 (9) - CodegenTotalWallClockTime: 250.855ms - CodegenSysTime: 0.000ns - CodegenUserTime: 101.475ms - CodegenVoluntaryContextSwitches: 80 (80) - CompileTime: 76.913ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 1.849ms - LoadTime: 0.000ns - MainThreadCodegenTime: 223.464ms - ModuleBitcodeGenTime: 1.829ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 74 (74) - NumInstructions: 1.62K (1625) - OptimizationTime: 141.447ms - PeakMemoryUsage: 812.50 KB (832000) - PrepareTime: 27.398ms - TotalTime: 250.861ms Fragment F33: CodeGen: - CodegenCacheLookupTime: 2.097ms - CodegenCacheSaveTime: 93.315us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 22 (22) - CodegenTotalWallClockTime: 257.954ms - CodegenSysTime: 12.894ms - CodegenUserTime: 81.411ms - CodegenVoluntaryContextSwitches: 77 (77) - CompileTime: 98.921ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.204ms - LoadTime: 0.000ns - MainThreadCodegenTime: 192.469ms - ModuleBitcodeGenTime: 2.018ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 87.331ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 65.490ms - TotalTime: 257.958ms Fragment F34: CodeGen: - CodegenCacheLookupTime: 2.128ms - CodegenCacheSaveTime: 120.013us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 18 (18) - CodegenTotalWallClockTime: 259.126ms - CodegenSysTime: 4.702ms - CodegenUserTime: 91.731ms - CodegenVoluntaryContextSwitches: 68 (68) - CompileTime: 72.933ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.236ms - LoadTime: 0.000ns - MainThreadCodegenTime: 195.103ms - ModuleBitcodeGenTime: 2.052ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 115.825ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 64.031ms - TotalTime: 259.133ms Fragment F35: CodeGen: - CodegenCacheLookupTime: 2.166ms - CodegenCacheSaveTime: 216.104us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 17 (17) - CodegenTotalWallClockTime: 259.479ms - CodegenSysTime: 4.421ms - CodegenUserTime: 97.014ms - CodegenVoluntaryContextSwitches: 87 (87) - CompileTime: 77.894ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.866ms - LoadTime: 0.000ns - MainThreadCodegenTime: 222.854ms - ModuleBitcodeGenTime: 2.098ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 138.926ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 36.630ms - TotalTime: 259.484ms Fragment F36: CodeGen: - CodegenCacheLookupTime: 2.197ms - CodegenCacheSaveTime: 15.217us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 10 (10) - CodegenTotalWallClockTime: 242.021ms - CodegenSysTime: 11.720ms - CodegenUserTime: 74.117ms - CodegenVoluntaryContextSwitches: 77 (77) - CompileTime: 80.247ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.145ms - LoadTime: 0.000ns - MainThreadCodegenTime: 183.091ms - ModuleBitcodeGenTime: 2.116ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 94 (94) - NumInstructions: 2.66K (2659) - OptimizationTime: 96.545ms - PeakMemoryUsage: 1.30 MB (1361408) - PrepareTime: 58.936ms - TotalTime: 242.028ms rsuminto-22746:27001: Filter 8 arrival: 502ms Filter 9 arrival: 502ms Filter 16 arrival: 509ms Filter 17 arrival: 509ms Filter 10 arrival: 515ms Filter 18 arrival: 516ms Filter 0 arrival: 730ms Filter 14 arrival: 765ms Filter 6 arrival: 1s059ms Filter 12 arrival: 1s060ms Filter 4 arrival: 1s095ms Filter 2 arrival: 1s303ms - AdmissionSlots: 1 (1) - BloomFilterBytes: 18.00 MB (18874368) - InListFilterItems: 0 (0) - ScratchBytesRead: 0 - ScratchBytesReadUseLocalDisk: 0 - ScratchBytesReadUseMem: 0 - ScratchBytesWritten: 0 - ScratchFileUsedBytes: 0 - ScratchReads: 0 (0) - ScratchReadsUseLocalDisk: 0 (0) - ScratchReadsUseMem: 0 (0) - ScratchWrites: 0 (0) - TotalEncryptionTime: 0.000ns - TotalReadBlockTime: 0.000ns - UncompressedScratchBytesWritten: 0 Buffer pool: - AllocTime: 948.806us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 18.00 MB (18874368) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 23.00 MB (24117248) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 18.00 MB (18874368) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 23.00 MB (24117248) - SystemAllocTime: 920.699us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns JVM: - GcCount: 1 (1) - GcNumInfoThresholdExceeded: 0 (0) - GcNumWarnThresholdExceeded: 0 (0) - GcTimeMillis: 5ms - GcTotalExtraSleepTimeMillis: 0 Fragment F18: CodeGen: - CodegenCacheLookupTime: 32.708ms - CodegenCacheSaveTime: 138.863us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 31 (31) - CodegenTotalWallClockTime: 849.744ms - CodegenSysTime: 0.000ns - CodegenUserTime: 599.668ms - CodegenVoluntaryContextSwitches: 92 (92) - CompileTime: 53.974ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 58.100ms - LoadTime: 0.000ns - MainThreadCodegenTime: 689.102ms - ModuleBitcodeGenTime: 32.450ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 269 (269) - NumInstructions: 15.22K (15224) - OptimizationTime: 538.070ms - PeakMemoryUsage: 7.43 MB (7794688) - PrepareTime: 160.649ms - TotalTime: 849.751ms Fragment F05: CodeGen: - CodegenCacheLookupTime: 8.410ms - CodegenCacheSaveTime: 125.864us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 51 (51) - CodegenTotalWallClockTime: 516.910ms - CodegenSysTime: 0.000ns - CodegenUserTime: 267.382ms - CodegenVoluntaryContextSwitches: 95 (95) - CompileTime: 19.906ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 43.380ms - LoadTime: 0.000ns - MainThreadCodegenTime: 412.655ms - ModuleBitcodeGenTime: 8.261ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 140 (140) - NumInstructions: 4.67K (4674) - OptimizationTime: 331.119ms - PeakMemoryUsage: 2.28 MB (2393088) - PrepareTime: 104.263ms - TotalTime: 516.918ms Fragment F03: CodeGen: - CodegenCacheLookupTime: 6.351ms - CodegenCacheSaveTime: 97.654us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 38 (38) - CodegenTotalWallClockTime: 501.027ms - CodegenSysTime: 8.448ms - CodegenUserTime: 273.075ms - CodegenVoluntaryContextSwitches: 86 (86) - CompileTime: 12.932ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 38.021ms - LoadTime: 0.000ns - MainThreadCodegenTime: 388.924ms - ModuleBitcodeGenTime: 6.234ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 170 (170) - NumInstructions: 6.83K (6834) - OptimizationTime: 315.580ms - PeakMemoryUsage: 3.34 MB (3499008) - PrepareTime: 112.111ms - TotalTime: 501.036ms Fragment F00: CodeGen: - CodegenCacheLookupTime: 10.336ms - CodegenCacheSaveTime: 142.171us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 50 (50) - CodegenTotalWallClockTime: 428.565ms - CodegenSysTime: 8.462ms - CodegenUserTime: 168.485ms - CodegenVoluntaryContextSwitches: 86 (86) - CompileTime: 32.504ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 54.556ms - LoadTime: 0.000ns - MainThreadCodegenTime: 335.472ms - ModuleBitcodeGenTime: 10.188ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 106 (106) - NumInstructions: 3.25K (3249) - OptimizationTime: 236.961ms - PeakMemoryUsage: 1.59 MB (1663488) - PrepareTime: 93.103ms - TotalTime: 428.575ms Fragment F26: CodeGen: - CodegenCacheLookupTime: 2.279ms - CodegenCacheSaveTime: 257.559us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 35 (35) - CodegenTotalWallClockTime: 433.905ms - CodegenSysTime: 0.000ns - CodegenUserTime: 139.349ms - CodegenVoluntaryContextSwitches: 103 (103) - CompileTime: 54.938ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 38.440ms - LoadTime: 0.000ns - MainThreadCodegenTime: 268.164ms - ModuleBitcodeGenTime: 2.187ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 161.690ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 165.749ms - TotalTime: 433.913ms Fragment F24: CodeGen: - CodegenCacheLookupTime: 78.007ms - CodegenCacheSaveTime: 109.224us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 59 (59) - CodegenTotalWallClockTime: 467.256ms - CodegenSysTime: 0.000ns - CodegenUserTime: 193.502ms - CodegenVoluntaryContextSwitches: 90 (90) - CompileTime: 16.308ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 16.276ms - LoadTime: 0.000ns - MainThreadCodegenTime: 397.953ms - ModuleBitcodeGenTime: 77.882ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 125 (125) - NumInstructions: 3.17K (3166) - OptimizationTime: 286.205ms - PeakMemoryUsage: 1.55 MB (1620992) - PrepareTime: 69.310ms - TotalTime: 467.263ms Fragment F21: CodeGen: - CodegenCacheLookupTime: 11.308ms - CodegenCacheSaveTime: 98.682us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 44 (44) - CodegenTotalWallClockTime: 657.656ms - CodegenSysTime: 4.248ms - CodegenUserTime: 322.524ms - CodegenVoluntaryContextSwitches: 104 (104) - CompileTime: 15.274ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 97.513ms - LoadTime: 0.000ns - MainThreadCodegenTime: 541.611ms - ModuleBitcodeGenTime: 11.155ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 183 (183) - NumInstructions: 8.18K (8182) - OptimizationTime: 409.894ms - PeakMemoryUsage: 4.00 MB (4189184) - PrepareTime: 116.052ms - TotalTime: 657.663ms Fragment F19: CodeGen: - CodegenCacheLookupTime: 2.238ms - CodegenCacheSaveTime: 116.791us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 13 (13) - CodegenTotalWallClockTime: 231.775ms - CodegenSysTime: 4.294ms - CodegenUserTime: 51.521ms - CodegenVoluntaryContextSwitches: 53 (53) - CompileTime: 4.689ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 1.514ms - LoadTime: 0.000ns - MainThreadCodegenTime: 186.675ms - ModuleBitcodeGenTime: 2.153ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 72 (72) - NumInstructions: 1.56K (1560) - OptimizationTime: 177.260ms - PeakMemoryUsage: 780.00 KB (798720) - PrepareTime: 45.108ms - TotalTime: 231.782ms Fragment F27: CodeGen: - CodegenCacheLookupTime: 4.461ms - CodegenCacheSaveTime: 103.274us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 32 (32) - CodegenTotalWallClockTime: 339.888ms - CodegenSysTime: 0.000ns - CodegenUserTime: 95.867ms - CodegenVoluntaryContextSwitches: 52 (52) - CompileTime: 56.669ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.376ms - LoadTime: 0.000ns - MainThreadCodegenTime: 313.663ms - ModuleBitcodeGenTime: 4.295ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 249.200ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 26.229ms - TotalTime: 339.892ms Fragment F22: CodeGen: - CodegenCacheLookupTime: 967.903us - CodegenCacheSaveTime: 10.695ms - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 9 (9) - CodegenTotalWallClockTime: 99.534ms - CodegenSysTime: 4.262ms - CodegenUserTime: 38.234ms - CodegenVoluntaryContextSwitches: 18 (18) - CompileTime: 19.104ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 616.319us - LoadTime: 0.000ns - MainThreadCodegenTime: 70.557ms - ModuleBitcodeGenTime: 872.519us - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 19 (19) - NumInstructions: 367 (367) - OptimizationTime: 38.401ms - PeakMemoryUsage: 183.50 KB (187904) - PrepareTime: 28.981ms - TotalTime: 99.538ms Fragment F28: CodeGen: - CodegenCacheLookupTime: 1.396ms - CodegenCacheSaveTime: 100.828us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 21 (21) - CodegenTotalWallClockTime: 380.102ms - CodegenSysTime: 4.096ms - CodegenUserTime: 77.844ms - CodegenVoluntaryContextSwitches: 63 (63) - CompileTime: 70.012ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.647ms - LoadTime: 0.000ns - MainThreadCodegenTime: 342.708ms - ModuleBitcodeGenTime: 1.329ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 38 (38) - NumInstructions: 1.54K (1544) - OptimizationTime: 267.731ms - PeakMemoryUsage: 772.00 KB (790528) - PrepareTime: 37.402ms - TotalTime: 380.109ms Fragment F20: CodeGen: - CodegenCacheLookupTime: 1.734ms - CodegenCacheSaveTime: 119.239us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 10 (10) - CodegenTotalWallClockTime: 90.474ms - CodegenSysTime: 0.000ns - CodegenUserTime: 39.466ms - CodegenVoluntaryContextSwitches: 65 (65) - CompileTime: 27.602ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 1.450ms - LoadTime: 0.000ns - MainThreadCodegenTime: 50.448ms - ModuleBitcodeGenTime: 1.648ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 67 (67) - NumInstructions: 1.35K (1349) - OptimizationTime: 18.586ms - PeakMemoryUsage: 674.50 KB (690688) - PrepareTime: 40.031ms - TotalTime: 90.480ms Fragment F29: CodeGen: - CodegenCacheLookupTime: 6.261ms - CodegenCacheSaveTime: 3.603ms - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 25 (25) - CodegenTotalWallClockTime: 330.522ms - CodegenSysTime: 3.967ms - CodegenUserTime: 126.963ms - CodegenVoluntaryContextSwitches: 69 (69) - CompileTime: 31.900ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 23.612ms - LoadTime: 0.000ns - MainThreadCodegenTime: 315.803ms - ModuleBitcodeGenTime: 6.175ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 248.487ms - PeakMemoryUsage: 1.33 MB (1398272) - PrepareTime: 14.728ms - TotalTime: 330.530ms Fragment F17: CodeGen: - CodegenCacheLookupTime: 12.768ms - CodegenCacheSaveTime: 111.161us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 71 (71) - CodegenTotalWallClockTime: 581.614ms - CodegenSysTime: 5.281ms - CodegenUserTime: 378.009ms - CodegenVoluntaryContextSwitches: 90 (90) - CompileTime: 31.404ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 34.164ms - LoadTime: 0.000ns - MainThreadCodegenTime: 449.471ms - ModuleBitcodeGenTime: 12.622ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 190 (190) - NumInstructions: 7.75K (7755) - OptimizationTime: 369.879ms - PeakMemoryUsage: 3.79 MB (3970560) - PrepareTime: 132.152ms - TotalTime: 581.622ms Fragment F15: CodeGen: - CodegenCacheLookupTime: 5.898ms - CodegenCacheSaveTime: 196.737us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 22 (22) - CodegenTotalWallClockTime: 467.343ms - CodegenSysTime: 0.000ns - CodegenUserTime: 307.875ms - CodegenVoluntaryContextSwitches: 70 (70) - CompileTime: 20.354ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 11.056ms - LoadTime: 0.000ns - MainThreadCodegenTime: 408.254ms - ModuleBitcodeGenTime: 5.754ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 170 (170) - NumInstructions: 6.83K (6834) - OptimizationTime: 361.610ms - PeakMemoryUsage: 3.34 MB (3499008) - PrepareTime: 59.095ms - TotalTime: 467.349ms Fragment F12: CodeGen: - CodegenCacheLookupTime: 4.201ms - CodegenCacheSaveTime: 209.534us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 26 (26) - CodegenTotalWallClockTime: 321.381ms - CodegenSysTime: 3.970ms - CodegenUserTime: 158.587ms - CodegenVoluntaryContextSwitches: 60 (60) - CompileTime: 11.326ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 16.347ms - LoadTime: 0.000ns - MainThreadCodegenTime: 217.928ms - ModuleBitcodeGenTime: 4.081ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 106 (106) - NumInstructions: 3.25K (3249) - OptimizationTime: 184.746ms - PeakMemoryUsage: 1.59 MB (1663488) - PrepareTime: 103.462ms - TotalTime: 321.390ms Fragment F30: CodeGen: - CodegenCacheLookupTime: 16.105ms - CodegenCacheSaveTime: 114.617us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 15 (15) - CodegenTotalWallClockTime: 242.409ms - CodegenSysTime: 0.000ns - CodegenUserTime: 89.091ms - CodegenVoluntaryContextSwitches: 60 (60) - CompileTime: 23.590ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 4.988ms - LoadTime: 0.000ns - MainThreadCodegenTime: 167.260ms - ModuleBitcodeGenTime: 16.017ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 114.148ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 75.158ms - TotalTime: 242.418ms Fragment F14: CodeGen: - CodegenCacheLookupTime: 2.295ms - CodegenCacheSaveTime: 142.926us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 11 (11) - CodegenTotalWallClockTime: 228.851ms - CodegenSysTime: 3.977ms - CodegenUserTime: 63.253ms - CodegenVoluntaryContextSwitches: 75 (75) - CompileTime: 36.059ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 2.152ms - LoadTime: 0.000ns - MainThreadCodegenTime: 144.539ms - ModuleBitcodeGenTime: 2.137ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 72 (72) - NumInstructions: 1.57K (1575) - OptimizationTime: 102.963ms - PeakMemoryUsage: 787.50 KB (806400) - PrepareTime: 84.319ms - TotalTime: 228.858ms Fragment F31: CodeGen: - CodegenCacheLookupTime: 15.289ms - CodegenCacheSaveTime: 115.935us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 18 (18) - CodegenTotalWallClockTime: 221.820ms - CodegenSysTime: 0.000ns - CodegenUserTime: 87.290ms - CodegenVoluntaryContextSwitches: 51 (51) - CompileTime: 7.555ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 9.321ms - LoadTime: 0.000ns - MainThreadCodegenTime: 165.232ms - ModuleBitcodeGenTime: 15.193ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 94 (94) - NumInstructions: 2.66K (2659) - OptimizationTime: 131.204ms - PeakMemoryUsage: 1.30 MB (1361408) - PrepareTime: 56.595ms - TotalTime: 221.827ms Fragment F13: CodeGen: - CodegenCacheLookupTime: 1.077ms - CodegenCacheSaveTime: 834.377us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 5 (5) - CodegenTotalWallClockTime: 128.661ms - CodegenSysTime: 3.394ms - CodegenUserTime: 32.670ms - CodegenVoluntaryContextSwitches: 36 (36) - CompileTime: 6.443ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 5.914ms - LoadTime: 0.000ns - MainThreadCodegenTime: 60.797ms - ModuleBitcodeGenTime: 1.003ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 19 (19) - NumInstructions: 367 (367) - OptimizationTime: 45.597ms - PeakMemoryUsage: 183.50 KB (187904) - PrepareTime: 67.872ms - TotalTime: 128.669ms Fragment F32: CodeGen: - CodegenCacheLookupTime: 3.580ms - CodegenCacheSaveTime: 0.000ns - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 9 (9) - CodegenTotalWallClockTime: 67.590ms - CodegenSysTime: 0.000ns - CodegenUserTime: 27.616ms - CodegenVoluntaryContextSwitches: 19 (19) - CompileTime: 0.000ns - InactiveTotalTime: 0.000ns - IrGenerationTime: 12.592ms - LoadTime: 0.000ns - MainThreadCodegenTime: 19.753ms - ModuleBitcodeGenTime: 3.456ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 97 (97) - NumFunctions: 97 (97) - NumInstructions: 2.73K (2731) - OptimizationTime: 2.648ms - PeakMemoryUsage: 0 - PrepareTime: 47.845ms - TotalTime: 67.598ms Fragment F11: CodeGen: - CodegenCacheLookupTime: 4.603ms - CodegenCacheSaveTime: 97.288us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 29 (29) - CodegenTotalWallClockTime: 481.387ms - CodegenSysTime: 0.000ns - CodegenUserTime: 360.022ms - CodegenVoluntaryContextSwitches: 47 (47) - CompileTime: 29.564ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 32.949ms - LoadTime: 0.000ns - MainThreadCodegenTime: 432.211ms - ModuleBitcodeGenTime: 4.463ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 143 (143) - NumInstructions: 6.55K (6555) - OptimizationTime: 363.786ms - PeakMemoryUsage: 3.20 MB (3356160) - PrepareTime: 49.184ms - TotalTime: 481.395ms Fragment F08: CodeGen: - CodegenCacheLookupTime: 5.746ms - CodegenCacheSaveTime: 92.328us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 28 (28) - CodegenTotalWallClockTime: 431.995ms - CodegenSysTime: 3.869ms - CodegenUserTime: 317.026ms - CodegenVoluntaryContextSwitches: 44 (44) - CompileTime: 15.333ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 30.280ms - LoadTime: 0.000ns - MainThreadCodegenTime: 367.505ms - ModuleBitcodeGenTime: 5.596ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 183 (183) - NumInstructions: 8.18K (8182) - OptimizationTime: 310.375ms - PeakMemoryUsage: 4.00 MB (4189184) - PrepareTime: 64.499ms - TotalTime: 432.004ms Fragment F06: CodeGen: - CodegenCacheLookupTime: 1.973ms - CodegenCacheSaveTime: 109.014us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 24 (24) - CodegenTotalWallClockTime: 234.038ms - CodegenSysTime: 7.870ms - CodegenUserTime: 102.002ms - CodegenVoluntaryContextSwitches: 38 (38) - CompileTime: 5.614ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 1.888ms - LoadTime: 0.000ns - MainThreadCodegenTime: 189.109ms - ModuleBitcodeGenTime: 1.878ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 74 (74) - NumInstructions: 1.62K (1625) - OptimizationTime: 178.498ms - PeakMemoryUsage: 812.50 KB (832000) - PrepareTime: 44.937ms - TotalTime: 234.046ms Fragment F33: CodeGen: - CodegenCacheLookupTime: 3.252ms - CodegenCacheSaveTime: 117.312us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 39 (39) - CodegenTotalWallClockTime: 193.979ms - CodegenSysTime: 4.253ms - CodegenUserTime: 89.154ms - CodegenVoluntaryContextSwitches: 44 (44) - CompileTime: 14.771ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 6.458ms - LoadTime: 0.000ns - MainThreadCodegenTime: 153.383ms - ModuleBitcodeGenTime: 3.154ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 127.784ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 40.602ms - TotalTime: 193.985ms Fragment F09: CodeGen: - CodegenCacheLookupTime: 10.052ms - CodegenCacheSaveTime: 0.000ns - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 13 (13) - CodegenTotalWallClockTime: 113.472ms - CodegenSysTime: 8.023ms - CodegenUserTime: 15.921ms - CodegenVoluntaryContextSwitches: 30 (30) - CompileTime: 0.000ns - InactiveTotalTime: 0.000ns - IrGenerationTime: 823.404us - LoadTime: 0.000ns - MainThreadCodegenTime: 41.814ms - ModuleBitcodeGenTime: 9.966ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 19 (19) - NumFunctions: 19 (19) - NumInstructions: 367 (367) - OptimizationTime: 30.056ms - PeakMemoryUsage: 0 - PrepareTime: 71.665ms - TotalTime: 113.480ms Fragment F34: CodeGen: - CodegenCacheLookupTime: 2.076ms - CodegenCacheSaveTime: 172.483us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 17 (17) - CodegenTotalWallClockTime: 160.554ms - CodegenSysTime: 3.587ms - CodegenUserTime: 81.560ms - CodegenVoluntaryContextSwitches: 30 (30) - CompileTime: 24.165ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 3.078ms - LoadTime: 0.000ns - MainThreadCodegenTime: 126.563ms - ModuleBitcodeGenTime: 1.985ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 96.026ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 33.999ms - TotalTime: 160.562ms Fragment F07: CodeGen: - CodegenCacheLookupTime: 2.076ms - CodegenCacheSaveTime: 122.113us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 11 (11) - CodegenTotalWallClockTime: 213.521ms - CodegenSysTime: 14.604ms - CodegenUserTime: 102.016ms - CodegenVoluntaryContextSwitches: 32 (32) - CompileTime: 6.247ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 4.340ms - LoadTime: 0.000ns - MainThreadCodegenTime: 170.415ms - ModuleBitcodeGenTime: 1.968ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 74 (74) - NumInstructions: 1.65K (1645) - OptimizationTime: 156.639ms - PeakMemoryUsage: 822.50 KB (842240) - PrepareTime: 43.116ms - TotalTime: 213.531ms Fragment F35: CodeGen: - CodegenCacheLookupTime: 19.482ms - CodegenCacheSaveTime: 126.274us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 30 (30) - CodegenTotalWallClockTime: 197.723ms - CodegenSysTime: 8.128ms - CodegenUserTime: 81.229ms - CodegenVoluntaryContextSwitches: 57 (57) - CompileTime: 13.437ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 31.608ms - LoadTime: 0.000ns - MainThreadCodegenTime: 127.572ms - ModuleBitcodeGenTime: 19.389ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 91 (91) - NumInstructions: 2.61K (2609) - OptimizationTime: 61.765ms - PeakMemoryUsage: 1.27 MB (1335808) - PrepareTime: 70.160ms - TotalTime: 197.732ms Fragment F02: CodeGen: - CodegenCacheLookupTime: 1.393ms - CodegenCacheSaveTime: 125.516us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 29 (29) - CodegenTotalWallClockTime: 305.021ms - CodegenSysTime: 4.350ms - CodegenUserTime: 126.164ms - CodegenVoluntaryContextSwitches: 88 (88) - CompileTime: 18.528ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 1.635ms - LoadTime: 0.000ns - MainThreadCodegenTime: 271.587ms - ModuleBitcodeGenTime: 1.342ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 76 (76) - NumInstructions: 1.72K (1715) - OptimizationTime: 249.166ms - PeakMemoryUsage: 857.50 KB (878080) - PrepareTime: 33.439ms - TotalTime: 305.026ms Fragment F36: CodeGen: - CodegenCacheLookupTime: 73.774ms - CodegenCacheSaveTime: 122.493us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 29 (29) - CodegenTotalWallClockTime: 413.743ms - CodegenSysTime: 7.460ms - CodegenUserTime: 107.806ms - CodegenVoluntaryContextSwitches: 78 (78) - CompileTime: 11.732ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 18.454ms - LoadTime: 0.000ns - MainThreadCodegenTime: 313.178ms - ModuleBitcodeGenTime: 73.678ms - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 94 (94) - NumInstructions: 2.66K (2659) - OptimizationTime: 208.127ms - PeakMemoryUsage: 1.30 MB (1361408) - PrepareTime: 100.574ms - TotalTime: 413.751ms Fragment F01: CodeGen: - CodegenCacheLookupTime: 1.025ms - CodegenCacheSaveTime: 17.797us - CodegenCompileThreadInvoluntaryContextSwitches: 0 (0) - CodegenCompileThreadTotalWallClockTime: 0.000ns - CodegenCompileThreadSysTime: 0.000ns - CodegenCompileThreadUserTime: 0.000ns - CodegenCompileThreadVoluntaryContextSwitches: 0 (0) - CodegenInvoluntaryContextSwitches: 22 (22) - CodegenTotalWallClockTime: 114.231ms - CodegenSysTime: 0.000ns - CodegenUserTime: 52.561ms - CodegenVoluntaryContextSwitches: 61 (61) - CompileTime: 36.394ms - InactiveTotalTime: 0.000ns - IrGenerationTime: 13.348ms - LoadTime: 0.000ns - MainThreadCodegenTime: 96.100ms - ModuleBitcodeGenTime: 957.101us - ModuleBitcodeSize: 4.29 MB (4496048) - NumCachedFunctions: 0 (0) - NumFunctions: 19 (19) - NumInstructions: 367 (367) - OptimizationTime: 44.583ms - PeakMemoryUsage: 183.50 KB (187904) - PrepareTime: 18.137ms - TotalTime: 114.237ms Averaged Fragment F25:(Total: 1s383ms, non-child: 183.400ms, % non-child: 13.25%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s397ms max:1s397ms mean: 1s397ms 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 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 4.06 MB (4259840) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 87 (87) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 1s383ms - TotalThreadsSysTime: 4.033ms - TotalThreadsUserTime: 84.567ms - TotalThreadsVoluntaryContextSwitches: 75 (75) - TotalTime: 1s383ms Fragment Instance Lifecycle Timings: - ExecTime: 48.367ms - ExecTreeExecTime: 41.146us - OpenTime: 1s335ms - ExecTreeOpenTime: 1s152ms - PrepareTime: 53.505us - ExecTreePrepareTime: 27.850us PLAN_ROOT_SINK:(Total: 48.324ms, non-child: 57.497us, % non-child: 0.12%) - InactiveTotalTime: 48.266ms - PeakMemoryUsage: 4.01 MB (4202496) - RowBatchGetWaitTime: 0.000ns - RowBatchSendWaitTime: 0.000ns - RowsSent: 87 (87) - RowsSentRate: 1.80 K/sec - TotalTime: 48.324ms Buffer pool: - AllocTime: 1.342us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 1 (1) - EncryptionTime: 0.000ns - PeakReservation: 4.00 MB (4194304) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 100.00 MB (104857600) - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=56):(Total: 1s152ms, non-child: 24.141us, % non-child: 0.00%) - ConvertRowBatchTime: 0.000ns - InactiveTotalTime: 1s152ms - MergeGetNext: 38.444us - MergeGetNextBatch: 33.607us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 87 (87) - RowsReturnedRate: 75.00 /sec - TotalTime: 1s152ms Buffer pool: - AllocTime: 1.996us - 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: - FirstBatchWaitTime: 1s152ms - TotalBytesDequeued: 7.32 KB (7494) - TotalGetBatchTime: 1s152ms - DataWaitTime: 1s152ms Enqueue: - DispatchTime: (Avg: 16.756us ; Min: 11.453us ; Max: 26.319us ; Number of samples: 3) - DeserializeRowBatchTime: 17.307us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 4.42 KB (4531) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Coordinator Fragment F25: Instance f04aed6e613865a1:acb29fb100000000 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s384ms - Prepare Finished: 432.377us (432.377us) - Open Finished: 1s335ms (1s335ms) - First Batch Produced: 1s335ms (41.589us) - First Batch Sent: 1s335ms (7.773us) - ExecInternal Finished: 1s384ms (48.373ms) - MemoryUsage (500.000ms): 8.00 KB, 8.00 KB, 8.00 KB - AverageThreadTokens: 0.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 4.06 MB (4259840) - PeakReservation: 4.00 MB (4194304) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 87 (87) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 1s383ms - TotalThreadsSysTime: 4.033ms - TotalThreadsUserTime: 84.567ms - TotalThreadsVoluntaryContextSwitches: 75 (75) - TotalTime: 1s383ms Fragment Instance Lifecycle Timings: - ExecTime: 48.367ms - ExecTreeExecTime: 41.146us - OpenTime: 1s335ms - ExecTreeOpenTime: 1s152ms - PrepareTime: 53.505us - ExecTreePrepareTime: 27.850us PLAN_ROOT_SINK: - InactiveTotalTime: 48.266ms - PeakMemoryUsage: 4.01 MB (4202496) - RowBatchGetWaitTime: 0.000ns - RowBatchSendWaitTime: 0.000ns - RowsSent: 87 (87) - RowsSentRate: 1.80 K/sec - TotalTime: 48.324ms Buffer pool: - AllocTime: 1.342us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 1 (1) - EncryptionTime: 0.000ns - PeakReservation: 4.00 MB (4194304) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 100.00 MB (104857600) - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=56): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s336ms - Open Started: 183.728ms (183.728ms) - Open Finished: 1s335ms (1s152ms) - First Batch Requested: 1s335ms (39.169us) - First Batch Returned: 1s335ms (40.227us) - Last Batch Returned: 1s335ms (84.000ns) - Closed: 1s336ms (49.754us) - ConvertRowBatchTime: 0.000ns - InactiveTotalTime: 1s152ms - MergeGetNext: 38.444us - MergeGetNextBatch: 33.607us - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 87 (87) - RowsReturnedRate: 75.00 /sec - TotalTime: 1s152ms Buffer pool: - AllocTime: 1.996us - 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 (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 1s152ms - TotalBytesDequeued: 7.32 KB (7494) - TotalGetBatchTime: 1s152ms - DataWaitTime: 1s152ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 16.756us ; Min: 11.453us ; Max: 26.319us ; Number of samples: 3) - DeserializeRowBatchTime: 17.307us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 4.42 KB (4531) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F18 [3 instances]:(Total: 1s294ms, non-child: 785.748ms, % non-child: 60.68%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.391ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 183.53 KB (187930) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 29 (29) - TotalNetworkReceiveTime: 508.325ms - TotalNetworkSendTime: 168.244us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 1s291ms - TotalThreadsSysTime: 1.332ms - TotalThreadsUserTime: 615.082ms - TotalThreadsVoluntaryContextSwitches: 75 (75) - TotalTime: 1s294ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 200.861us - ExecTreeExecTime: 3.209us - OpenTime: 1s291ms - ExecTreeOpenTime: 508.760ms - PrepareTime: 153.677us - ExecTreePrepareTime: 91.235us KrpcDataStreamSender (dst_id=56) [3 instances]:(Total: 211.040us, non-child: 42.796us, % non-child: 20.28%) - NetworkThroughput: (Avg: 16.05 MB/sec ; Min: 14.88 MB/sec ; Max: 18.15 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 68.136us ; Min: 31.338us ; Max: 102.776us ; Number of samples: 6) - RpcRecvrTime: (Avg: 18.254us ; Min: 9.341us ; Max: 34.378us ; Number of samples: 6) - EosSent: 1 (1) - InactiveTotalTime: 168.244us - PeakMemoryUsage: 7.06 KB (7230) - RowsSent: 29 (29) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.723us - TotalBytesSent: 1.47 KB (1510) - TotalTime: 211.040us - UncompressedRowBatchSize: 2.44 KB (2498) SORT_NODE (id=31) [3 instances]:(Total: 508.853ms, non-child: 0.000ns, % non-child: 0.00%) - InactiveTotalTime: 0.000ns - InsertBatchTime: 7.709us - PeakMemoryUsage: 36.00 KB (36864) - RowsReturned: 29 (29) - RowsReturnedRate: 59.00 /sec - TotalTime: 508.853ms - TuplePoolReclamations: 0 (0) HASH_JOIN_NODE (id=30) [3 instances]:(Total: 508.856ms, non-child: 125.831us, % non-child: 0.02%) - InactiveTotalTime: 94.960us - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 60 (60) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 38.262us - RowsReturned: 29 (29) - RowsReturnedRate: 59.00 /sec - TotalTime: 508.856ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=29) [3 instances]:(Total: 508.635ms, non-child: 163.933us, % non-child: 0.03%) - InactiveTotalTime: 113.378us - PeakMemoryUsage: 41.12 KB (42112) - ProbeRows: 174 (174) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 19.332us - RowsReturned: 60 (60) - RowsReturnedRate: 124.00 /sec - TotalTime: 508.635ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=48) [3 instances]:(Total: 508.358ms, non-child: 39.064us, % non-child: 0.01%) - ConvertRowBatchTime: 24.477us - InactiveTotalTime: 508.318ms - PeakMemoryUsage: 42.67 KB (43690) - RowsReturned: 174 (174) - RowsReturnedRate: 361.00 /sec - TotalTime: 508.358ms Buffer pool [3 instances]: - AllocTime: 3.692us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 58.67 KB (60074) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 42.67 KB (43690) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 42.67 KB (43690) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 306.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 506.154ms - TotalBytesDequeued: 26.28 KB (26908) - TotalGetBatchTime: 508.324ms - DataWaitTime: 508.318ms Enqueue [3 instances]: - DispatchTime: (Avg: 24.010us ; Min: 9.480us ; Max: 33.616us ; Number of samples: 9) - DeserializeRowBatchTime: 36.566us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 13.36 KB (13680) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F18: Instance f04aed6e613865a1:acb29fb10000000a (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 581.144us (581.144us) - Open Finished: 1s335ms (1s335ms) - First Batch Produced: 1s335ms (4.171us) - First Batch Sent: 1s335ms (23.886us) - ExecInternal Finished: 1s335ms (160.771us) - MemoryUsage (500.000ms): 100.86 KB, 104.86 KB, 104.86 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 188.86 KB (193392) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 29 (29) - TotalNetworkReceiveTime: 633.570ms - TotalNetworkSendTime: 148.512us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 41 (41) - TotalThreadsTotalWallClockTime: 1s335ms - TotalThreadsSysTime: 3.998ms - TotalThreadsUserTime: 624.445ms - TotalThreadsVoluntaryContextSwitches: 40 (40) - TotalTime: 1s335ms Fragment Instance Lifecycle Timings: - ExecTime: 186.575us - ExecTreeExecTime: 3.745us - OpenTime: 1s335ms - ExecTreeOpenTime: 633.903ms - PrepareTime: 128.434us - ExecTreePrepareTime: 86.336us KrpcDataStreamSender (dst_id=56): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 15.12 MB/sec ; Min: 15.12 MB/sec ; Max: 15.12 MB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 63.758us ; Min: 31.338us ; Max: 96.178us ; Number of samples: 2) - RpcRecvrTime: (Avg: 14.496us ; Min: 9.341us ; Max: 19.652us ; Number of samples: 2) - EosSent: 1 (1) - InactiveTotalTime: 148.512us - PeakMemoryUsage: 7.09 KB (7256) - RowsSent: 29 (29) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 13.560us - TotalBytesSent: 1.49 KB (1525) - TotalTime: 189.614us - UncompressedRowBatchSize: 2.45 KB (2511) SORT_NODE (id=31): SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s335ms - Open Started: 701.748ms (701.748ms) - Open Finished: 1s335ms (633.902ms) - First Batch Requested: 1s335ms (6.773us) - First Batch Returned: 1s335ms (3.172us) - Last Batch Returned: 1s335ms (69.000ns) - Closed: 1s335ms (26.031us) - InactiveTotalTime: 0.000ns - InsertBatchTime: 6.231us - PeakMemoryUsage: 36.00 KB (36864) - RowsReturned: 29 (29) - RowsReturnedRate: 45.00 /sec - TotalTime: 633.992ms - TuplePoolReclamations: 0 (0) HASH_JOIN_NODE (id=30): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s335ms - Open Started: 701.750ms (701.750ms) - Waiting for initial build: 1s335ms (633.646ms) - Initial build available: 1s335ms (294.000ns) - Open Finished: 1s335ms (18.730us) - First Batch Requested: 1s335ms (9.653us) - First Batch Returned: 1s335ms (31.999us) - Last Batch Returned: 1s335ms (154.175us) - Closed: 1s335ms (38.206us) - InactiveTotalTime: 59.292us - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 63 (63) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 30.909us - RowsReturned: 29 (29) - RowsReturnedRate: 45.00 /sec - TotalTime: 633.994ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=29): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s335ms - Open Started: 701.768ms (701.768ms) - Waiting for initial build: 1s333ms (631.421ms) - Initial build available: 1s333ms (589.000ns) - Open Finished: 1s335ms (2.194ms) - First Batch Requested: 1s335ms (13.634us) - First Batch Returned: 1s335ms (17.428us) - Last Batch Returned: 1s335ms (132.330us) - Closed: 1s335ms (91.895us) - InactiveTotalTime: 76.653us - PeakMemoryUsage: 41.12 KB (42112) - ProbeRows: 177 (177) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 15.862us - RowsReturned: 63 (63) - RowsReturnedRate: 99.00 /sec - TotalTime: 633.835ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=48): Node Lifecycle Event Timeline: 1s335ms - Open Started: 701.770ms (701.770ms) - Open Finished: 1s333ms (631.401ms) - First Batch Requested: 1s333ms (22.137us) - First Batch Returned: 1s335ms (2.190ms) - Last Batch Returned: 1s335ms (102.000ns) - Closed: 1s335ms (254.866us) - ConvertRowBatchTime: 16.379us - InactiveTotalTime: 633.566ms - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 177 (177) - RowsReturnedRate: 279.00 /sec - TotalTime: 633.593ms Buffer pool: - AllocTime: 4.527us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 64.00 KB (65536) - 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: 920.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 631.398ms - TotalBytesDequeued: 26.77 KB (27412) - TotalGetBatchTime: 633.569ms - DataWaitTime: 633.566ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 25.522us ; Min: 20.648us ; Max: 33.616us ; Number of samples: 3) - DeserializeRowBatchTime: 39.679us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 13.68 KB (14011) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000000b (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 16.238ms (16.238ms) - Open Finished: 1s335ms (1s319ms) - First Batch Produced: 1s335ms (3.121us) - First Batch Sent: 1s335ms (18.817us) - ExecInternal Finished: 1s335ms (183.082us) - MemoryUsage (500.000ms): 100.86 KB, 100.86 KB, 104.86 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 172.86 KB (177008) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 27 (27) - TotalNetworkReceiveTime: 521.721ms - TotalNetworkSendTime: 172.009us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 60 (60) - TotalThreadsTotalWallClockTime: 1s319ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 618.392ms - TotalThreadsVoluntaryContextSwitches: 88 (88) - TotalTime: 1s325ms Fragment Instance Lifecycle Timings: - ExecTime: 202.162us - ExecTreeExecTime: 2.797us - OpenTime: 1s319ms - ExecTreeOpenTime: 522.212ms - PrepareTime: 142.350us - ExecTreePrepareTime: 82.686us KrpcDataStreamSender (dst_id=56): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 18.15 MB/sec ; Min: 18.15 MB/sec ; Max: 18.15 MB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 62.503us ; Min: 51.355us ; Max: 73.651us ; Number of samples: 2) - RpcRecvrTime: (Avg: 24.488us ; Min: 14.598us ; Max: 34.378us ; Number of samples: 2) - EosSent: 1 (1) - InactiveTotalTime: 172.009us - PeakMemoryUsage: 6.74 KB (6898) - RowsSent: 27 (27) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 9.907us - TotalBytesSent: 1.37 KB (1402) - TotalTime: 217.199us - UncompressedRowBatchSize: 2.26 KB (2316) SORT_NODE (id=31): SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s335ms - Open Started: 813.309ms (813.309ms) - Open Finished: 1s335ms (522.211ms) - First Batch Requested: 1s335ms (5.795us) - First Batch Returned: 1s335ms (2.310us) - Last Batch Returned: 1s335ms (87.000ns) - Closed: 1s335ms (20.417us) - InactiveTotalTime: 0.000ns - InsertBatchTime: 8.520us - PeakMemoryUsage: 36.00 KB (36864) - RowsReturned: 27 (27) - RowsReturnedRate: 51.00 /sec - TotalTime: 522.296ms - TuplePoolReclamations: 0 (0) HASH_JOIN_NODE (id=30): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s335ms - Open Started: 813.312ms (813.312ms) - Waiting for initial build: 1s335ms (521.826ms) - Initial build available: 1s335ms (648.000ns) - Open Finished: 1s335ms (30.964us) - First Batch Requested: 1s335ms (6.951us) - First Batch Returned: 1s335ms (42.023us) - Last Batch Returned: 1s335ms (268.981us) - Closed: 1s335ms (32.432us) - InactiveTotalTime: 120.632us - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 51 (51) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 40.021us - RowsReturned: 27 (27) - RowsReturnedRate: 51.00 /sec - TotalTime: 522.297ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=29): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s335ms - Open Started: 813.328ms (813.328ms) - Waiting for initial build: 1s332ms (519.595ms) - Initial build available: 1s332ms (800.000ns) - Open Finished: 1s335ms (2.196ms) - First Batch Requested: 1s335ms (20.392us) - First Batch Returned: 1s335ms (28.541us) - Last Batch Returned: 1s335ms (190.156us) - Closed: 1s335ms (151.692us) - InactiveTotalTime: 121.388us - PeakMemoryUsage: 41.12 KB (42112) - ProbeRows: 161 (161) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 25.289us - RowsReturned: 51 (51) - RowsReturnedRate: 97.00 /sec - TotalTime: 522.041ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=48): Node Lifecycle Event Timeline: 1s335ms - Open Started: 813.330ms (813.330ms) - Open Finished: 1s332ms (519.560ms) - First Batch Requested: 1s332ms (38.603us) - First Batch Returned: 1s335ms (2.190ms) - Last Batch Returned: 1s335ms (144.000ns) - Closed: 1s335ms (390.367us) - ConvertRowBatchTime: 21.759us - InactiveTotalTime: 521.714ms - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 161 (161) - RowsReturnedRate: 308.00 /sec - TotalTime: 521.752ms Buffer pool: - AllocTime: 3.475us - 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 - FirstBatchWaitTime: 519.557ms - TotalBytesDequeued: 24.35 KB (24930) - TotalGetBatchTime: 521.720ms - DataWaitTime: 521.714ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 23.664us ; Min: 9.480us ; Max: 33.455us ; Number of samples: 3) - DeserializeRowBatchTime: 36.720us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 12.42 KB (12721) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000000c (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s334ms - Prepare Finished: 114.741ms (114.741ms) - Open Finished: 1s334ms (1s219ms) - First Batch Produced: 1s334ms (3.494us) - First Batch Sent: 1s334ms (17.625us) - ExecInternal Finished: 1s334ms (196.595us) - MemoryUsage (500.000ms): 100.86 KB, 100.86 KB, 104.86 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 188.86 KB (193392) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 31 (31) - TotalNetworkReceiveTime: 369.683ms - TotalNetworkSendTime: 184.211us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 31 (31) - TotalThreadsTotalWallClockTime: 1s220ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 602.411ms - TotalThreadsVoluntaryContextSwitches: 98 (98) - TotalTime: 1s223ms Fragment Instance Lifecycle Timings: - ExecTime: 213.846us - ExecTreeExecTime: 3.087us - OpenTime: 1s219ms - ExecTreeOpenTime: 370.165ms - PrepareTime: 190.249us - ExecTreePrepareTime: 104.685us KrpcDataStreamSender (dst_id=56): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 14.88 MB/sec ; Min: 14.88 MB/sec ; Max: 14.88 MB/sec ; Number of samples: 1) - RpcNetworkTime: (Avg: 78.148us ; Min: 53.520us ; Max: 102.776us ; Number of samples: 2) - RpcRecvrTime: (Avg: 15.778us ; Min: 10.466us ; Max: 21.090us ; Number of samples: 2) - EosSent: 1 (1) - InactiveTotalTime: 184.211us - PeakMemoryUsage: 7.36 KB (7537) - RowsSent: 31 (31) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.704us - TotalBytesSent: 1.57 KB (1604) - TotalTime: 226.308us - UncompressedRowBatchSize: 2.60 KB (2667) SORT_NODE (id=31): SortType: TopN ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 964.541ms (964.541ms) - Open Finished: 1s334ms (370.164ms) - First Batch Requested: 1s334ms (6.076us) - First Batch Returned: 1s334ms (2.560us) - Last Batch Returned: 1s334ms (92.000ns) - Closed: 1s334ms (20.035us) - InactiveTotalTime: 0.000ns - InsertBatchTime: 8.378us - PeakMemoryUsage: 36.00 KB (36864) - RowsReturned: 31 (31) - RowsReturnedRate: 83.00 /sec - TotalTime: 370.271ms - TuplePoolReclamations: 0 (0) HASH_JOIN_NODE (id=30): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 964.543ms (964.543ms) - Waiting for initial build: 1s334ms (369.776ms) - Initial build available: 1s334ms (245.000ns) - Open Finished: 1s334ms (20.070us) - First Batch Requested: 1s334ms (15.873us) - First Batch Returned: 1s334ms (45.019us) - Last Batch Returned: 1s334ms (270.711us) - Closed: 1s334ms (33.702us) - InactiveTotalTime: 104.957us - PeakMemoryUsage: 53.12 KB (54400) - ProbeRows: 66 (66) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 43.857us - RowsReturned: 31 (31) - RowsReturnedRate: 83.00 /sec - TotalTime: 370.276ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=29): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 964.559ms (964.559ms) - Waiting for initial build: 1s332ms (367.530ms) - Initial build available: 1s332ms (532.000ns) - Open Finished: 1s334ms (2.221ms) - First Batch Requested: 1s334ms (9.392us) - First Batch Returned: 1s334ms (18.392us) - Last Batch Returned: 1s334ms (220.809us) - Closed: 1s334ms (138.204us) - InactiveTotalTime: 142.094us - PeakMemoryUsage: 41.12 KB (42112) - ProbeRows: 184 (184) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 16.847us - RowsReturned: 66 (66) - RowsReturnedRate: 178.00 /sec - TotalTime: 370.028ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=48): Node Lifecycle Event Timeline: 1s334ms - Open Started: 964.561ms (964.561ms) - Open Finished: 1s332ms (367.510ms) - First Batch Requested: 1s332ms (22.543us) - First Batch Returned: 1s334ms (2.217ms) - Last Batch Returned: 1s334ms (83.000ns) - Closed: 1s334ms (385.535us) - ConvertRowBatchTime: 35.294us - InactiveTotalTime: 369.675ms - PeakMemoryUsage: 48.00 KB (49152) - RowsReturned: 184 (184) - RowsReturnedRate: 497.00 /sec - TotalTime: 369.728ms Buffer pool: - AllocTime: 3.074us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 64.00 KB (65536) - 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 (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 367.506ms - TotalBytesDequeued: 27.72 KB (28384) - TotalGetBatchTime: 369.681ms - DataWaitTime: 369.675ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 22.844us ; Min: 21.943us ; Max: 23.769us ; Number of samples: 3) - DeserializeRowBatchTime: 33.301us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 13.97 KB (14308) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F05 [3 instances]:(Total: 1s294ms, non-child: 423.420ms, % non-child: 32.72%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.593ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.55 MB (36228512) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 174 (174) - TotalNetworkReceiveTime: 864.047ms - TotalNetworkSendTime: 185.342us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 64 (64) - TotalThreadsTotalWallClockTime: 1s293ms - TotalThreadsSysTime: 10.525ms - TotalThreadsUserTime: 266.529ms - TotalThreadsVoluntaryContextSwitches: 57 (57) - TotalTime: 1s294ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 671.796us - ExecTreeExecTime: 282.970us - OpenTime: 1s292ms - ExecTreeOpenTime: 869.382ms - PrepareTime: 504.591us - ExecTreePrepareTime: 344.481us KrpcDataStreamSender (dst_id=48) [3 instances]:(Total: 425.333us, non-child: 239.991us, % non-child: 56.42%) - NetworkThroughput: (Avg: 55.44 MB/sec ; Min: 31.61 MB/sec ; Max: 107.83 MB/sec ; Number of samples: 9) - RpcNetworkTime: (Avg: 65.458us ; Min: 20.186us ; Max: 133.646us ; Number of samples: 18) - RpcRecvrTime: (Avg: 25.197us ; Min: 5.064us ; Max: 66.996us ; Number of samples: 18) - EosSent: 3 (3) - InactiveTotalTime: 185.342us - PeakMemoryUsage: 67.42 KB (69036) - RowsSent: 174 (174) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 47.549us - TotalBytesSent: 13.36 KB (13680) - TotalTime: 425.333us - UncompressedRowBatchSize: 26.28 KB (26908) HASH_JOIN_NODE (id=28) [3 instances]:(Total: 870.319ms, non-child: 458.017us, % non-child: 0.05%) - InactiveTotalTime: 69.578us - PeakMemoryUsage: 228.12 KB (233600) - ProbeRows: 1.43K (1432) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 55.753us - RowsReturned: 174 (174) - RowsReturnedRate: 200.00 /sec - TotalTime: 870.319ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns UNION_NODE (id=7) [3 instances]:(Total: 869.791ms, non-child: 145.394us, % non-child: 0.02%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.43K (1432) - RowsReturnedRate: 1.68 K/sec - TotalTime: 869.791ms AGGREGATION_NODE (id=36) [3 instances]:(Total: 869.646ms, non-child: 5.437ms, % non-child: 0.63%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.43K (1432) - RowsReturnedRate: 1.68 K/sec - TotalTime: 869.646ms GroupingAggregator 0 [3 instances]: - BuildTime: 4.422ms - GetResultsTime: 137.128us - HTResizeTime: 48.029us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.43K (1432) - SpilledPartitions: 0 (0) Buffer pool [3 instances]: - AllocTime: 84.442us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 77.843us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.43K (1432) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=35) [3 instances]:(Total: 864.208ms, non-child: 182.560us, % non-child: 0.02%) - ConvertRowBatchTime: 144.721us - InactiveTotalTime: 864.025ms - PeakMemoryUsage: 344.00 KB (352256) - RowsReturned: 1.43K (1432) - RowsReturnedRate: 1.69 K/sec - TotalTime: 864.208ms Buffer pool [3 instances]: - AllocTime: 13.126us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 392.00 KB (401408) - CumulativeAllocations: 22 (22) - EncryptionTime: 0.000ns - PeakReservation: 344.00 KB (352256) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 344.00 KB (352256) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.938us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 863.363ms - TotalBytesDequeued: 247.98 KB (253932) - TotalGetBatchTime: 864.045ms - DataWaitTime: 864.025ms Enqueue [3 instances]: - DispatchTime: (Avg: 12.992us ; Min: 6.101us ; Max: 35.706us ; Number of samples: 33) - DeserializeRowBatchTime: 210.677us - TotalBatchesEnqueued: 11 (11) - TotalBatchesReceived: 11 (11) - TotalBytesReceived: 138.88 KB (142213) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F05: Instance f04aed6e613865a1:acb29fb100000007 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 2.161ms (2.161ms) - Open Finished: 1s334ms (1s332ms) - First Batch Produced: 1s334ms (218.778us) - First Batch Sent: 1s334ms (104.372us) - ExecInternal Finished: 1s335ms (344.816us) - MemoryUsage (500.000ms): 161.41 KB, 161.41 KB, 161.41 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.55 MB (36228512) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 195 (195) - TotalNetworkReceiveTime: 1s009ms - TotalNetworkSendTime: 190.193us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 39 (39) - TotalThreadsTotalWallClockTime: 1s333ms - TotalThreadsSysTime: 19.848ms - TotalThreadsUserTime: 242.006ms - TotalThreadsVoluntaryContextSwitches: 37 (37) - TotalTime: 1s333ms Fragment Instance Lifecycle Timings: - ExecTime: 662.426us - ExecTreeExecTime: 281.387us - OpenTime: 1s332ms - ExecTreeOpenTime: 1s014ms - PrepareTime: 677.539us - ExecTreePrepareTime: 486.954us KrpcDataStreamSender (dst_id=48): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 51.41 MB/sec ; Min: 34.28 MB/sec ; Max: 72.13 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 64.334us ; Min: 20.186us ; Max: 122.702us ; Number of samples: 6) - RpcRecvrTime: (Avg: 22.089us ; Min: 5.064us ; Max: 42.479us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 190.193us - PeakMemoryUsage: 73.14 KB (74898) - RowsSent: 195 (195) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 50.964us - TotalBytesSent: 14.96 KB (15318) - TotalTime: 446.598us - UncompressedRowBatchSize: 29.46 KB (30170) HASH_JOIN_NODE (id=28): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 319.505ms (319.505ms) - Waiting for initial build: 1s334ms (1s014ms) - Initial build available: 1s334ms (510.000ns) - Open Finished: 1s334ms (238.238us) - First Batch Requested: 1s334ms (6.978us) - First Batch Returned: 1s334ms (217.687us) - Last Batch Returned: 1s334ms (170.999us) - Closed: 1s334ms (6.708us) - InactiveTotalTime: 60.632us - PeakMemoryUsage: 228.12 KB (233600) - ProbeRows: 1.43K (1431) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 57.091us - RowsReturned: 195 (195) - RowsReturnedRate: 191.00 /sec - TotalTime: 1s016ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns UNION_NODE (id=7): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 319.514ms (319.514ms) - Open Finished: 1s334ms (1s014ms) - First Batch Requested: 1s334ms (11.821us) - First Batch Returned: 1s334ms (236.053us) - Last Batch Returned: 1s334ms (207.157us) - Closed: 1s334ms (194.698us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.43K (1431) - RowsReturnedRate: 1.41 K/sec - TotalTime: 1s015ms AGGREGATION_NODE (id=36): Node Lifecycle Event Timeline: 1s334ms - Open Started: 319.516ms (319.516ms) - Open Finished: 1s334ms (1s014ms) - First Batch Requested: 1s334ms (18.695us) - First Batch Returned: 1s334ms (13.062us) - Last Batch Returned: 1s334ms (361.310us) - Closed: 1s334ms (62.565us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.43K (1431) - RowsReturnedRate: 1.41 K/sec - TotalTime: 1s015ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.057ms - GetResultsTime: 116.866us - HTResizeTime: 71.569us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.43K (1431) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 81.800us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 76.970us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.43K (1431) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=35): Node Lifecycle Event Timeline: 1s334ms - Open Started: 319.517ms (319.517ms) - Open Finished: 1s327ms (1s008ms) - First Batch Requested: 1s328ms (271.236us) - First Batch Returned: 1s329ms (887.472us) - Last Batch Returned: 1s334ms (5.043ms) - Closed: 1s334ms (85.188us) - ConvertRowBatchTime: 164.770us - InactiveTotalTime: 1s009ms - PeakMemoryUsage: 344.00 KB (352256) - RowsReturned: 1.43K (1431) - RowsReturnedRate: 1.42 K/sec - TotalTime: 1s009ms Buffer pool: - AllocTime: 10.873us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 392.00 KB (401408) - CumulativeAllocations: 22 (22) - EncryptionTime: 0.000ns - PeakReservation: 344.00 KB (352256) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 344.00 KB (352256) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.331us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 1s008ms - TotalBytesDequeued: 247.90 KB (253846) - TotalGetBatchTime: 1s009ms - DataWaitTime: 1s009ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 12.461us ; Min: 6.199us ; Max: 35.706us ; Number of samples: 11) - DeserializeRowBatchTime: 185.926us - TotalBatchesEnqueued: 11 (11) - TotalBatchesReceived: 11 (11) - TotalBytesReceived: 138.72 KB (142052) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000008 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s333ms - Prepare Finished: 17.737ms (17.737ms) - Open Finished: 1s332ms (1s314ms) - First Batch Produced: 1s332ms (216.726us) - First Batch Sent: 1s332ms (88.976us) - ExecInternal Finished: 1s333ms (482.667us) - MemoryUsage (500.000ms): 161.41 KB, 161.41 KB, 161.41 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.55 MB (36228512) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 171 (171) - TotalNetworkReceiveTime: 874.349ms - TotalNetworkSendTime: 232.537us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 102 (102) - TotalThreadsTotalWallClockTime: 1s315ms - TotalThreadsSysTime: 7.563ms - TotalThreadsUserTime: 287.205ms - TotalThreadsVoluntaryContextSwitches: 33 (33) - TotalTime: 1s315ms Fragment Instance Lifecycle Timings: - ExecTime: 782.340us - ExecTreeExecTime: 301.065us - OpenTime: 1s314ms - ExecTreeOpenTime: 878.223ms - PrepareTime: 534.780us - ExecTreePrepareTime: 326.761us KrpcDataStreamSender (dst_id=48): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 35.06 MB/sec ; Min: 31.61 MB/sec ; Max: 37.77 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 86.140us ; Min: 34.279us ; Max: 133.646us ; Number of samples: 6) - RpcRecvrTime: (Avg: 32.408us ; Min: 7.680us ; Max: 66.996us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 232.537us - PeakMemoryUsage: 66.57 KB (68172) - RowsSent: 171 (171) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 51.002us - TotalBytesSent: 13.14 KB (13457) - TotalTime: 502.781us - UncompressedRowBatchSize: 25.81 KB (26429) HASH_JOIN_NODE (id=28): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s332ms - Open Started: 454.011ms (454.011ms) - Waiting for initial build: 1s331ms (877.939ms) - Initial build available: 1s331ms (1.026us) - Open Finished: 1s332ms (281.161us) - First Batch Requested: 1s332ms (10.319us) - First Batch Returned: 1s332ms (215.640us) - Last Batch Returned: 1s332ms (237.311us) - Closed: 1s332ms (8.373us) - InactiveTotalTime: 81.955us - PeakMemoryUsage: 228.12 KB (233600) - ProbeRows: 1.48K (1482) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 57.715us - RowsReturned: 171 (171) - RowsReturnedRate: 194.00 /sec - TotalTime: 879.127ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns UNION_NODE (id=7): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s332ms - Open Started: 454.020ms (454.020ms) - Open Finished: 1s331ms (877.914ms) - First Batch Requested: 1s331ms (20.397us) - First Batch Returned: 1s332ms (277.847us) - Last Batch Returned: 1s332ms (207.266us) - Closed: 1s332ms (264.037us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.48K (1482) - RowsReturnedRate: 1.69 K/sec - TotalTime: 878.586ms AGGREGATION_NODE (id=36): Node Lifecycle Event Timeline: 1s332ms - Open Started: 454.022ms (454.022ms) - Open Finished: 1s331ms (877.911ms) - First Batch Requested: 1s331ms (27.749us) - First Batch Returned: 1s331ms (18.614us) - Last Batch Returned: 1s332ms (434.987us) - Closed: 1s332ms (24.723us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.48K (1482) - RowsReturnedRate: 1.69 K/sec - TotalTime: 878.449ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 3.048ms - GetResultsTime: 126.495us - HTResizeTime: 39.050us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.48K (1482) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 75.530us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 67.806us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.48K (1482) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=35): Node Lifecycle Event Timeline: 1s331ms - Open Started: 454.022ms (454.022ms) - Open Finished: 1s327ms (873.753ms) - First Batch Requested: 1s328ms (300.690us) - First Batch Returned: 1s328ms (701.759us) - Last Batch Returned: 1s331ms (3.026ms) - Closed: 1s331ms (109.902us) - ConvertRowBatchTime: 142.009us - InactiveTotalTime: 874.329ms - PeakMemoryUsage: 360.00 KB (368640) - RowsReturned: 1.48K (1482) - RowsReturnedRate: 1.69 K/sec - TotalTime: 874.509ms Buffer pool: - AllocTime: 11.499us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 408.00 KB (417792) - CumulativeAllocations: 24 (24) - EncryptionTime: 0.000ns - PeakReservation: 360.00 KB (368640) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 360.00 KB (368640) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.928us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 873.750ms - TotalBytesDequeued: 256.88 KB (263050) - TotalGetBatchTime: 874.347ms - DataWaitTime: 874.329ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 12.041us ; Min: 6.674us ; Max: 29.381us ; Number of samples: 12) - DeserializeRowBatchTime: 217.599us - TotalBatchesEnqueued: 12 (12) - TotalBatchesReceived: 12 (12) - TotalBytesReceived: 144.08 KB (147543) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000009 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s334ms - Prepare Finished: 101.871ms (101.871ms) - Open Finished: 1s333ms (1s231ms) - First Batch Produced: 1s333ms (198.455us) - First Batch Sent: 1s334ms (83.033us) - ExecInternal Finished: 1s334ms (377.713us) - MemoryUsage (500.000ms): 161.41 KB, 161.41 KB, 161.41 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.55 MB (36228512) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 156 (156) - TotalNetworkReceiveTime: 708.609ms - TotalNetworkSendTime: 133.297us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 52 (52) - TotalThreadsTotalWallClockTime: 1s232ms - TotalThreadsSysTime: 4.164ms - TotalThreadsUserTime: 270.377ms - TotalThreadsVoluntaryContextSwitches: 103 (103) - TotalTime: 1s232ms Fragment Instance Lifecycle Timings: - ExecTime: 570.622us - ExecTreeExecTime: 266.459us - OpenTime: 1s231ms - ExecTreeOpenTime: 714.927ms - PrepareTime: 301.454us - ExecTreePrepareTime: 219.728us KrpcDataStreamSender (dst_id=48): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 79.84 MB/sec ; Min: 39.38 MB/sec ; Max: 107.83 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 45.898us ; Min: 31.272us ; Max: 82.426us ; Number of samples: 6) - RpcRecvrTime: (Avg: 21.093us ; Min: 10.186us ; Max: 41.653us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 133.297us - PeakMemoryUsage: 62.54 KB (64040) - RowsSent: 156 (156) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 40.683us - TotalBytesSent: 11.98 KB (12265) - TotalTime: 326.621us - UncompressedRowBatchSize: 23.56 KB (24127) HASH_JOIN_NODE (id=28): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 618.831ms (618.831ms) - Waiting for initial build: 1s333ms (714.641ms) - Initial build available: 1s333ms (546.000ns) - Open Finished: 1s333ms (284.952us) - First Batch Requested: 1s333ms (7.411us) - First Batch Returned: 1s333ms (197.691us) - Last Batch Returned: 1s334ms (154.695us) - Closed: 1s334ms (6.361us) - InactiveTotalTime: 66.149us - PeakMemoryUsage: 228.12 KB (233600) - ProbeRows: 1.38K (1383) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 52.453us - RowsReturned: 156 (156) - RowsReturnedRate: 217.00 /sec - TotalTime: 715.621ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns UNION_NODE (id=7): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s334ms - Open Started: 618.836ms (618.836ms) - Open Finished: 1s333ms (714.624ms) - First Batch Requested: 1s333ms (13.874us) - First Batch Returned: 1s333ms (282.709us) - Last Batch Returned: 1s333ms (190.088us) - Closed: 1s334ms (175.614us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.38K (1383) - RowsReturnedRate: 1.93 K/sec - TotalTime: 715.241ms AGGREGATION_NODE (id=36): Node Lifecycle Event Timeline: 1s333ms - Open Started: 618.837ms (618.837ms) - Open Finished: 1s333ms (714.622ms) - First Batch Requested: 1s333ms (20.768us) - First Batch Returned: 1s333ms (12.617us) - Last Batch Returned: 1s333ms (427.003us) - Closed: 1s333ms (26.918us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.38K (1383) - RowsReturnedRate: 1.93 K/sec - TotalTime: 715.118ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.161ms - GetResultsTime: 168.023us - HTResizeTime: 33.469us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.38K (1383) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 95.996us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 88.755us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.38K (1383) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=35): Node Lifecycle Event Timeline: 1s333ms - Open Started: 618.838ms (618.838ms) - Open Finished: 1s326ms (707.916ms) - First Batch Requested: 1s327ms (669.804us) - First Batch Returned: 1s328ms (791.938us) - Last Batch Returned: 1s333ms (5.154ms) - Closed: 1s333ms (76.931us) - ConvertRowBatchTime: 127.384us - InactiveTotalTime: 708.588ms - PeakMemoryUsage: 328.00 KB (335872) - RowsReturned: 1.38K (1383) - RowsReturnedRate: 1.95 K/sec - TotalTime: 708.750ms Buffer pool: - AllocTime: 17.006us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 376.00 KB (385024) - CumulativeAllocations: 20 (20) - EncryptionTime: 0.000ns - PeakReservation: 328.00 KB (335872) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 328.00 KB (335872) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 3.557us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 0 - FirstBatchWaitTime: 707.913ms - TotalBytesDequeued: 239.16 KB (244900) - TotalGetBatchTime: 708.607ms - DataWaitTime: 708.588ms Enqueue: - BytesReceived (500.000ms): 0, 0, 0 - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 14.716us ; Min: 6.101us ; Max: 33.436us ; Number of samples: 10) - DeserializeRowBatchTime: 228.508us - TotalBatchesEnqueued: 10 (10) - TotalBatchesReceived: 10 (10) - TotalBytesReceived: 133.83 KB (137046) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F03 [3 instances]:(Total: 1s292ms, non-child: 439.539ms, % non-child: 34.02%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.709ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.76 MB (36451184) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 1.43K (1432) - TotalNetworkReceiveTime: 781.090ms - TotalNetworkSendTime: 141.399us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1s285ms - TotalThreadsSysTime: 15.795ms - TotalThreadsUserTime: 307.588ms - TotalThreadsVoluntaryContextSwitches: 88 (88) - TotalTime: 1s292ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 282.419ms - ExecTreeExecTime: 280.257ms - OpenTime: 1s003ms - ExecTreeOpenTime: 563.715ms - PrepareTime: 6.557ms - ExecTreePrepareTime: 6.486ms KrpcDataStreamSender (dst_id=35) [3 instances]:(Total: 2.171ms, non-child: 2.030ms, % non-child: 93.49%) - NetworkThroughput: (Avg: 242.14 MB/sec ; Min: 21.26 MB/sec ; Max: 559.74 MB/sec ; Number of samples: 33) - RpcNetworkTime: (Avg: 52.638us ; Min: 23.814us ; Max: 114.577us ; Number of samples: 42) - RpcRecvrTime: (Avg: 29.109us ; Min: 6.039us ; Max: 72.663us ; Number of samples: 42) - EosSent: 3 (3) - InactiveTotalTime: 141.399us - PeakMemoryUsage: 498.21 KB (510172) - RowsSent: 1.43K (1432) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 606.399us - TotalBytesSent: 138.88 KB (142213) - TotalTime: 2.171ms - UncompressedRowBatchSize: 247.98 KB (253932) AGGREGATION_NODE (id=13) [3 instances]:(Total: 850.455ms, non-child: 4.538ms, % non-child: 0.53%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.43K (1432) - RowsReturnedRate: 1.70 K/sec - TotalTime: 850.455ms GroupingAggregator 0 [3 instances]: - BuildTime: 0.000ns - GetResultsTime: 187.895us - HTResizeTime: 69.235us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.43K (1432) - StreamingTime: 9.568ms Buffer pool [3 instances]: - AllocTime: 230.664us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 218.274us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 20.36K (20356) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=12) [3 instances]:(Total: 845.916ms, non-child: 14.474ms, % non-child: 1.71%) - InactiveTotalTime: 46.187ms - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 32.60K (32598) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.466ms - RowsReturned: 20.36K (20356) - RowsReturnedRate: 24.23 K/sec - TotalTime: 845.916ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=33) [3 instances]:(Total: 785.254ms, non-child: 4.338ms, % non-child: 0.55%) - ConvertRowBatchTime: 3.991ms - InactiveTotalTime: 780.916ms - PeakMemoryUsage: 608.00 KB (622592) - RowsReturned: 32.60K (32598) - RowsReturnedRate: 41.98 K/sec - TotalTime: 785.254ms Buffer pool [3 instances]: - AllocTime: 317.372us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.63 MB (1712128) - CumulativeAllocations: 107 (107) - EncryptionTime: 0.000ns - PeakReservation: 608.00 KB (622592) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 608.00 KB (622592) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 238.723us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 516.389ms - TotalBytesDequeued: 1.31 MB (1369116) - TotalGetBatchTime: 781.072ms - DataWaitTime: 780.916ms Enqueue [3 instances]: - DispatchTime: (Avg: 32.448us ; Min: 4.615us ; Max: 123.727us ; Number of samples: 161) - DeserializeRowBatchTime: 1.324ms - TotalBatchesEnqueued: 53 (53) - TotalBatchesReceived: 53 (53) - TotalBytesReceived: 531.68 KB (544438) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F03: Instance f04aed6e613865a1:acb29fb100000006 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s329ms - Prepare Finished: 1.759ms (1.759ms) - Open Finished: 1s048ms (1s046ms) - First Batch Produced: 1s327ms (279.005ms) - First Batch Sent: 1s327ms (769.000ns) - ExecInternal Finished: 1s329ms (2.582ms) - MemoryUsage (500.000ms): 148.86 KB, 148.86 KB, 34.83 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.83 MB (36516720) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 1.41K (1408) - TotalNetworkReceiveTime: 843.620ms - TotalNetworkSendTime: 169.650us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 40 (40) - TotalThreadsTotalWallClockTime: 1s328ms - TotalThreadsSysTime: 22.979ms - TotalThreadsUserTime: 325.547ms - TotalThreadsVoluntaryContextSwitches: 64 (64) - TotalTime: 1s328ms Fragment Instance Lifecycle Timings: - ExecTime: 281.580ms - ExecTreeExecTime: 279.278ms - OpenTime: 1s046ms - ExecTreeOpenTime: 629.884ms - PrepareTime: 209.269us - ExecTreePrepareTime: 155.381us KrpcDataStreamSender (dst_id=35): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 220.51 MB/sec ; Min: 21.26 MB/sec ; Max: 383.71 MB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 56.193us ; Min: 23.814us ; Max: 98.864us ; Number of samples: 14) - RpcRecvrTime: (Avg: 27.440us ; Min: 7.410us ; Max: 60.020us ; Number of samples: 14) - EosSent: 3 (3) - InactiveTotalTime: 169.650us - PeakMemoryUsage: 506.92 KB (519086) - RowsSent: 1.41K (1408) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 628.471us - TotalBytesSent: 135.81 KB (139068) - TotalTime: 2.275ms - UncompressedRowBatchSize: 242.90 KB (248732) AGGREGATION_NODE (id=13): Node Lifecycle Event Timeline: 1s329ms - Open Started: 418.452ms (418.452ms) - Open Finished: 1s048ms (629.881ms) - First Batch Requested: 1s048ms (31.470us) - First Batch Returned: 1s327ms (279.000ms) - Last Batch Returned: 1s329ms (2.273ms) - Closed: 1s329ms (27.289us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.41K (1408) - RowsReturnedRate: 1.55 K/sec - TotalTime: 909.312ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 212.878us - HTResizeTime: 110.694us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.41K (1408) - StreamingTime: 12.092ms Buffer pool: - AllocTime: 281.880us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 263.344us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 19.63K (19628) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=12): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s327ms - Open Started: 418.454ms (418.454ms) - Waiting for initial build: 1s003ms (585.104ms) - Initial build available: 1s046ms (42.676ms) - Open Finished: 1s046ms (463.504us) - First Batch Requested: 1s048ms (1.688ms) - First Batch Returned: 1s053ms (4.634ms) - Last Batch Returned: 1s327ms (274.291ms) - Closed: 1s327ms (35.660us) - InactiveTotalTime: 42.740ms - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 32.80K (32796) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.036ms - RowsReturned: 19.63K (19628) - RowsReturnedRate: 21.93 K/sec - TotalTime: 895.131ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=33): Node Lifecycle Event Timeline: 1s327ms - Open Started: 418.460ms (418.460ms) - Open Finished: 1s003ms (585.030ms) - First Batch Requested: 1s046ms (42.753ms) - First Batch Returned: 1s046ms (453.165us) - Last Batch Returned: 1s327ms (280.511ms) - Closed: 1s327ms (132.343us) - ConvertRowBatchTime: 6.162ms - InactiveTotalTime: 843.437ms - PeakMemoryUsage: 672.00 KB (688128) - RowsReturned: 32.80K (32796) - RowsReturnedRate: 38.58 K/sec - TotalTime: 849.987ms Buffer pool: - AllocTime: 357.120us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.65 MB (1728512) - CumulativeAllocations: 108 (108) - EncryptionTime: 0.000ns - PeakReservation: 672.00 KB (688128) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 672.00 KB (688128) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 283.515us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 1.21 MB - FirstBatchWaitTime: 585.022ms - TotalBytesDequeued: 1.31 MB (1377432) - TotalGetBatchTime: 843.600ms - DataWaitTime: 843.437ms Enqueue: - BytesReceived (500.000ms): 0, 0, 495.40 KB - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 30.618us ; Min: 8.831us ; Max: 67.943us ; Number of samples: 54) - DeserializeRowBatchTime: 1.383ms - TotalBatchesEnqueued: 54 (54) - TotalBatchesReceived: 54 (54) - TotalBytesReceived: 537.60 KB (550505) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000005 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s329ms - Prepare Finished: 28.863ms (28.863ms) - Open Finished: 1s046ms (1s017ms) - First Batch Produced: 1s327ms (280.675ms) - First Batch Sent: 1s327ms (820.000ns) - ExecInternal Finished: 1s329ms (2.617ms) - MemoryUsage (500.000ms): 148.86 KB, 148.86 KB, 34.73 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.73 MB (36418416) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 1.46K (1457) - TotalNetworkReceiveTime: 835.797ms - TotalNetworkSendTime: 131.092us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 24 (24) - TotalThreadsTotalWallClockTime: 1s300ms - TotalThreadsSysTime: 12.072ms - TotalThreadsUserTime: 309.653ms - TotalThreadsVoluntaryContextSwitches: 76 (76) - TotalTime: 1s301ms Fragment Instance Lifecycle Timings: - ExecTime: 283.208ms - ExecTreeExecTime: 280.907ms - OpenTime: 1s017ms - ExecTreeOpenTime: 617.560ms - PrepareTime: 188.011us - ExecTreePrepareTime: 121.807us KrpcDataStreamSender (dst_id=35): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 223.33 MB/sec ; Min: 69.61 MB/sec ; Max: 342.68 MB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 55.008us ; Min: 29.039us ; Max: 96.792us ; Number of samples: 14) - RpcRecvrTime: (Avg: 28.654us ; Min: 6.039us ; Max: 72.663us ; Number of samples: 14) - EosSent: 3 (3) - InactiveTotalTime: 131.092us - PeakMemoryUsage: 477.44 KB (488898) - RowsSent: 1.46K (1457) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 630.036us - TotalBytesSent: 141.73 KB (145128) - TotalTime: 2.365ms - UncompressedRowBatchSize: 252.56 KB (258620) AGGREGATION_NODE (id=13): Node Lifecycle Event Timeline: 1s329ms - Open Started: 428.919ms (428.919ms) - Open Finished: 1s046ms (617.558ms) - First Batch Requested: 1s046ms (14.233us) - First Batch Returned: 1s327ms (280.673ms) - Last Batch Returned: 1s329ms (2.253ms) - Closed: 1s329ms (29.352us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.46K (1457) - RowsReturnedRate: 1.62 K/sec - TotalTime: 898.584ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 175.355us - HTResizeTime: 54.112us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.46K (1457) - StreamingTime: 9.003ms Buffer pool: - AllocTime: 297.114us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 289.212us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 20.88K (20883) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=12): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s327ms - Open Started: 428.921ms (428.921ms) - Waiting for initial build: 998.191ms (569.270ms) - Initial build available: 1s045ms (47.656ms) - Open Finished: 1s045ms (93.062us) - First Batch Requested: 1s046ms (556.367us) - First Batch Returned: 1s047ms (956.391us) - Last Batch Returned: 1s327ms (279.661ms) - Closed: 1s327ms (27.181us) - InactiveTotalTime: 47.750ms - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 32.87K (32865) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.347ms - RowsReturned: 20.88K (20883) - RowsReturnedRate: 23.50 K/sec - TotalTime: 888.634ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=33): Node Lifecycle Event Timeline: 1s327ms - Open Started: 428.928ms (428.928ms) - Open Finished: 998.100ms (569.172ms) - First Batch Requested: 1s045ms (47.751ms) - First Batch Returned: 1s045ms (88.487us) - Last Batch Returned: 1s326ms (280.986ms) - Closed: 1s327ms (213.075us) - ConvertRowBatchTime: 3.277ms - InactiveTotalTime: 835.632ms - PeakMemoryUsage: 576.00 KB (589824) - RowsReturned: 32.87K (32865) - RowsReturnedRate: 39.16 K/sec - TotalTime: 839.242ms Buffer pool: - AllocTime: 294.856us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.64 MB (1720320) - CumulativeAllocations: 108 (108) - EncryptionTime: 0.000ns - PeakReservation: 576.00 KB (589824) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 215.729us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 1.26 MB - FirstBatchWaitTime: 569.164ms - TotalBytesDequeued: 1.32 MB (1380330) - TotalGetBatchTime: 835.781ms - DataWaitTime: 835.632ms Enqueue: - BytesReceived (500.000ms): 0, 0, 512.21 KB - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 31.902us ; Min: 8.469us ; Max: 64.980us ; Number of samples: 54) - DeserializeRowBatchTime: 1.311ms - TotalBatchesEnqueued: 54 (54) - TotalBatchesReceived: 54 (54) - TotalBytesReceived: 534.85 KB (547685) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000004 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s328ms - Prepare Finished: 101.036ms (101.036ms) - Open Finished: 1s045ms (944.791ms) - First Batch Produced: 1s326ms (280.353ms) - First Batch Sent: 1s326ms (1.042us) - ExecInternal Finished: 1s328ms (2.128ms) - MemoryUsage (500.000ms): 148.86 KB, 148.86 KB, 34.73 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.73 MB (36418416) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 1.43K (1431) - TotalNetworkReceiveTime: 663.853ms - TotalNetworkSendTime: 123.457us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 39 (39) - TotalThreadsTotalWallClockTime: 1s227ms - TotalThreadsSysTime: 12.336ms - TotalThreadsUserTime: 287.565ms - TotalThreadsVoluntaryContextSwitches: 125 (125) - TotalTime: 1s246ms Fragment Instance Lifecycle Timings: - ExecTime: 282.468ms - ExecTreeExecTime: 280.586ms - OpenTime: 944.790ms - ExecTreeOpenTime: 443.702ms - PrepareTime: 19.276ms - ExecTreePrepareTime: 19.183ms KrpcDataStreamSender (dst_id=35): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 0 - NetworkThroughput: (Avg: 282.58 MB/sec ; Min: 57.60 MB/sec ; Max: 559.74 MB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 46.714us ; Min: 25.969us ; Max: 114.577us ; Number of samples: 14) - RpcRecvrTime: (Avg: 31.233us ; Min: 8.623us ; Max: 69.558us ; Number of samples: 14) - EosSent: 3 (3) - InactiveTotalTime: 123.457us - PeakMemoryUsage: 510.29 KB (522533) - RowsSent: 1.43K (1431) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 560.692us - TotalBytesSent: 139.11 KB (142445) - TotalTime: 1.875ms - UncompressedRowBatchSize: 248.48 KB (254444) AGGREGATION_NODE (id=13): Node Lifecycle Event Timeline: 1s328ms - Open Started: 602.118ms (602.118ms) - Open Finished: 1s045ms (443.701ms) - First Batch Requested: 1s045ms (10.476us) - First Batch Returned: 1s326ms (280.350ms) - Last Batch Returned: 1s328ms (1.871ms) - Closed: 1s328ms (27.966us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.43K (1431) - RowsReturnedRate: 1.92 K/sec - TotalTime: 743.468ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 175.454us - HTResizeTime: 42.900us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.43K (1431) - StreamingTime: 7.608ms Buffer pool: - AllocTime: 113.000us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 102.268us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 20.56K (20558) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=12): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s326ms - Open Started: 602.119ms (602.119ms) - Waiting for initial build: 997.170ms (395.051ms) - Initial build available: 1s045ms (48.001ms) - Open Finished: 1s045ms (95.050us) - First Batch Requested: 1s045ms (568.258us) - First Batch Returned: 1s046ms (878.802us) - Last Batch Returned: 1s326ms (279.427ms) - Closed: 1s326ms (26.762us) - InactiveTotalTime: 48.071ms - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 32.13K (32133) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.015ms - RowsReturned: 20.56K (20558) - RowsReturnedRate: 27.27 K/sec - TotalTime: 753.983ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=33): Node Lifecycle Event Timeline: 1s326ms - Open Started: 602.125ms (602.125ms) - Open Finished: 997.116ms (394.991ms) - First Batch Requested: 1s045ms (48.058ms) - First Batch Returned: 1s045ms (90.857us) - Last Batch Returned: 1s325ms (280.673ms) - Closed: 1s326ms (226.417us) - ConvertRowBatchTime: 2.533ms - InactiveTotalTime: 663.678ms - PeakMemoryUsage: 576.00 KB (589824) - RowsReturned: 32.13K (32133) - RowsReturnedRate: 48.21 K/sec - TotalTime: 666.534ms Buffer pool: - AllocTime: 300.141us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.61 MB (1687552) - CumulativeAllocations: 106 (106) - EncryptionTime: 0.000ns - PeakReservation: 576.00 KB (589824) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 576.00 KB (589824) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 216.926us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0, 1.21 MB - FirstBatchWaitTime: 394.982ms - TotalBytesDequeued: 1.29 MB (1349586) - TotalGetBatchTime: 663.837ms - DataWaitTime: 663.678ms Enqueue: - BytesReceived (500.000ms): 0, 0, 491.33 KB - DeferredQueueSize (500.000ms): 0, 0, 0 - DispatchTime: (Avg: 34.868us ; Min: 4.615us ; Max: 123.727us ; Number of samples: 53) - DeserializeRowBatchTime: 1.279ms - TotalBatchesEnqueued: 53 (53) - TotalBatchesReceived: 53 (53) - TotalBytesReceived: 522.58 KB (535125) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F00 [3 instances]:(Total: 1s291ms, non-child: 320.574ms, % non-child: 24.82%) split sizes: min: 64.55 MB, max: 70.05 MB, avg: 66.48 MB, stddev: 2.53 MB completion times: min:1s351ms max:1s397ms mean: 1s366ms stddev:21.617ms execution rates: min:47.75 MB/sec max:50.13 MB/sec mean:48.62 MB/sec stddev:1.07 MB/sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 66.48 MB (69709641) - CompletionTime: 1s366ms - ExchangeScanRatio: 0.00 - ExecutionRate: 48.62 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.75 MB (2884036) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 32.60K (32598) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 393.842us - TotalStorageWaitTime: 229.575ms - TotalThreadsInvoluntaryContextSwitches: 46 (46) - TotalThreadsTotalWallClockTime: 1s287ms - TotalThreadsSysTime: 16.541ms - TotalThreadsUserTime: 241.705ms - TotalThreadsVoluntaryContextSwitches: 830 (830) - TotalTime: 1s291ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 322.538ms - ExecTreeExecTime: 306.278ms - OpenTime: 965.194ms - ExecTreeOpenTime: 647.934ms - PrepareTime: 810.219us - ExecTreePrepareTime: 206.469us KrpcDataStreamSender (dst_id=33) [3 instances]:(Total: 16.247ms, non-child: 15.853ms, % non-child: 97.58%) - NetworkThroughput: (Avg: 82.40 MB/sec ; Min: 3.68 MB/sec ; Max: 207.58 MB/sec ; Number of samples: 161) - RpcNetworkTime: (Avg: 156.562us ; Min: 34.419us ; Max: 1.225ms ; Number of samples: 170) - RpcRecvrTime: (Avg: 59.298us ; Min: 7.464us ; Max: 177.516us ; Number of samples: 170) - EosSent: 3 (3) - InactiveTotalTime: 393.842us - PeakMemoryUsage: 407.27 KB (417048) - RowsSent: 32.60K (32598) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.434ms - TotalBytesSent: 531.68 KB (544438) - TotalTime: 16.247ms - UncompressedRowBatchSize: 1.31 MB (1369116) HASH_JOIN_NODE (id=11) [3 instances]:(Total: 954.581ms, non-child: 2.509ms, % non-child: 0.26%) - InactiveTotalTime: 104.253us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 32.60K (32598) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.721ms - RowsReturned: 32.60K (32598) - RowsReturnedRate: 34.40 K/sec - TotalTime: 954.581ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=9) [3 instances]:(Total: 951.968ms, non-child: 951.968ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 364) - ColumnarScannerIdealReservation: (Avg: 28.81 KB (29504) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 364) - FooterProcessingTime: (Avg: 1.154ms ; Min: 358.318us ; Max: 9.806ms ; Number of samples: 364) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 364) - InitialRangeIdealReservation: (Avg: 111.82 KB (114507) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 364) - PageIndexProcessingTime: (Avg: 207.488us ; Min: 37.767us ; Max: 9.618ms ; Number of samples: 364) - ParquetCompressedBytesReadPerColumn: (Avg: 178.99 KB (183290) ; Min: 137.97 KB (141278) ; Max: 260.24 KB (266486) ; Number of samples: 9) - ParquetCompressedPageSize: (Avg: 1.47 KB (1510) ; Min: 250.00 B (250) ; Max: 5.68 KB (5815) ; Number of samples: 1092) - ParquetUncompressedBytesReadPerColumn: (Avg: 198.27 KB (203027) ; Min: 153.81 KB (157506) ; Max: 260.68 KB (266935) ; Number of samples: 9) - ParquetUncompressedPageSize: (Avg: 1.63 KB (1673) ; Min: 248.00 B (248) ; Max: 5.70 KB (5839) ; Number of samples: 1092) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.98 MB (11518173) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 10.98 MB (11518173) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.98 MB (11518173) - CachedFileHandlesHitCount: 376 (376) - CachedFileHandlesMissCount: 230 (230) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.068ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.41 MB (1480974) - IoReadAsyncRequest: 1.46K (1456) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 95.69 KB (97985) - IoReadSyncRequest: 121 (121) - IoReadTotalBytes: 1.51 MB (1578960) - IoReadTotalRequest: 1.58K (1577) - MaterializeTupleTime: 12.929ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 364 (364) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 121 (121) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 121 (121) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2162329) - PerReadThreadRawHdfsThroughput: 110.14 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 183.11K (183110) - RowsReturned: 32.60K (32598) - RowsReturnedRate: 34.50 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 229.575ms - TotalRawHdfsOpenFileTime: 140.108ms - TotalRawHdfsReadTime: 100.217ms - TotalReadThroughput: 4.52 MB/sec - TotalTime: 951.968ms Buffer pool [3 instances]: - AllocTime: 510.945us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.66 MB (17473536) - CumulativeAllocations: 485 (485) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 82.576us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 9 (0) [3 instances]: - Files processed: 608 (608) - Files rejected: 486 (486) - Files total: 608 (608) - RowGroups processed: 131 (131) - RowGroups rejected: 0 (0) - RowGroups total: 131 (131) - Rows processed: 183.11K (183110) - Rows rejected: 0 (0) - Rows total: 183.11K (183110) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 8 (1.00 MB) [3 instances]: - Files processed: 121 (121) - Files rejected: 0 (0) - Files total: 121 (121) - RowGroups processed: 131 (131) - RowGroups rejected: 0 (0) - RowGroups total: 131 (131) - Rows processed: 183.11K (183110) - Rows rejected: 0 (0) - Rows total: 183.11K (183110) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 6 (1.00 MB) [3 instances]: - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 169.38K (169382) - Rows rejected: 150.51K (150512) - Rows total: 183.11K (183110) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F00: Instance f04aed6e613865a1:acb29fb100000003 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:608/70.05 MB Fragment Instance Lifecycle Event Timeline: 1s324ms - Prepare Finished: 11.254ms (11.254ms) - Open Finished: 1s001ms (990.373ms) - First Batch Produced: 1s001ms (117.403us) - First Batch Sent: 1s002ms (668.329us) - ExecInternal Finished: 1s324ms (322.009ms) - MemoryUsage (500.000ms): 2.07 MB, 2.07 MB, 2.57 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 70.05 MB (73456448) - CompletionTime: 1s397ms - ExchangeScanRatio: 0.05 - ExecutionRate: 50.13 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.76 MB (2895716) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 34.50K (34504) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 192.199us - TotalStorageWaitTime: 222.602ms - TotalThreadsInvoluntaryContextSwitches: 48 (48) - TotalThreadsTotalWallClockTime: 1s313ms - TotalThreadsSysTime: 28.470ms - TotalThreadsUserTime: 255.783ms - TotalThreadsVoluntaryContextSwitches: 834 (834) - TotalTime: 1s313ms Fragment Instance Lifecycle Timings: - ExecTime: 322.765ms - ExecTreeExecTime: 305.300ms - OpenTime: 990.359ms - ExecTreeOpenTime: 712.193ms - PrepareTime: 594.576us - ExecTreePrepareTime: 328.555us KrpcDataStreamSender (dst_id=33): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 522.96 KB - NetworkThroughput: (Avg: 90.23 MB/sec ; Min: 3.68 MB/sec ; Max: 207.58 MB/sec ; Number of samples: 57) - RpcNetworkTime: (Avg: 127.811us ; Min: 34.419us ; Max: 495.001us ; Number of samples: 60) - RpcRecvrTime: (Avg: 55.260us ; Min: 10.490us ; Max: 149.471us ; Number of samples: 60) - EosSent: 3 (3) - InactiveTotalTime: 192.199us - PeakMemoryUsage: 417.94 KB (427969) - RowsSent: 34.50K (34504) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.841ms - TotalBytesSent: 562.22 KB (575716) - TotalTime: 17.429ms - UncompressedRowBatchSize: 1.38 MB (1449168) HASH_JOIN_NODE (id=11): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s324ms - Open Started: 289.408ms (289.408ms) - Waiting for initial build: 989.567ms (700.158ms) - Initial build available: 989.569ms (1.761us) - Open Finished: 1s001ms (12.031ms) - First Batch Requested: 1s001ms (30.304us) - First Batch Returned: 1s001ms (114.249us) - Last Batch Returned: 1s324ms (322.344ms) - Closed: 1s324ms (42.592us) - InactiveTotalTime: 107.986us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 34.50K (34504) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.812ms - RowsReturned: 34.50K (34504) - RowsReturnedRate: 33.89 K/sec - TotalTime: 1s018ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=9): Table Name: tpcds_parquet.store_sales Runtime filters: Not all filters arrived (arrived: [9, 8], missing [6]), waited for 700ms. Arrival delay: 1s000ms. Hdfs Read Thread Concurrency Bucket: 0:66.67% 1:33.33% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% File Formats: PARQUET/SNAPPY:122 PARQUET/Unknown(Skipped):486 ExecOption: Codegen enabled: 122 out of 122, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s324ms - Open Started: 289.417ms (289.417ms) - Open Finished: 989.521ms (700.103ms) - First Batch Requested: 989.573ms (52.313us) - First Batch Returned: 1s001ms (12.024ms) - Last Batch Returned: 1s323ms (322.056ms) - Closed: 1s324ms (475.146us) - BytesReadSeries (500.000ms): 0, 0, 10.08 MB - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 122) - ColumnarScannerIdealReservation: (Avg: 28.72 KB (29410) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 122) - FooterProcessingTime: (Avg: 1.113ms ; Min: 446.007us ; Max: 7.217ms ; Number of samples: 122) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 122) - InitialRangeIdealReservation: (Avg: 112.79 KB (115493) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 122) - PageIndexProcessingTime: (Avg: 280.503us ; Min: 37.767us ; Max: 9.618ms ; Number of samples: 122) - ParquetCompressedBytesReadPerColumn: (Avg: 181.25 KB (185597) ; Min: 141.66 KB (145055) ; Max: 260.24 KB (266486) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.49 KB (1521) ; Min: 250.00 B (250) ; Max: 5.23 KB (5354) ; Number of samples: 366) - ParquetUncompressedBytesReadPerColumn: (Avg: 200.78 KB (205603) ; Min: 158.87 KB (162684) ; Max: 260.68 KB (266935) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.65 KB (1685) ; Min: 248.00 B (248) ; Max: 5.23 KB (5357) ; Number of samples: 366) - AverageHdfsReadThreadConcurrency: 0.33 - BytesRead: 11.07 MB (11603323) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 11.07 MB (11603323) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 11.07 MB (11603323) - CachedFileHandlesHitCount: 382 (382) - CachedFileHandlesMissCount: 228 (228) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.054ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.43 MB (1499542) - IoReadAsyncRequest: 1.46K (1464) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 96.23 KB (98541) - IoReadSyncRequest: 122 (122) - IoReadTotalBytes: 1.52 MB (1598083) - IoReadTotalRequest: 1.59K (1586) - MaterializeTupleTime: 13.172ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 366 (366) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 122 (122) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 122 (122) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2161709) - PerReadThreadRawHdfsThroughput: 100.88 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 185.59K (185585) - RowsReturned: 34.50K (34504) - RowsReturnedRate: 33.98 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 222.602ms - TotalRawHdfsOpenFileTime: 130.185ms - TotalRawHdfsReadTime: 109.697ms - TotalReadThroughput: 6.72 MB/sec - TotalTime: 1s015ms Buffer pool: - AllocTime: 567.762us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.86 MB (17678336) - CumulativeAllocations: 488 (488) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 156.067us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 9 (0): - Files processed: 608 (608) - Files rejected: 485 (485) - Files total: 608 (608) - RowGroups processed: 132 (132) - RowGroups rejected: 0 (0) - RowGroups total: 132 (132) - Rows processed: 185.59K (185585) - Rows rejected: 0 (0) - Rows total: 185.59K (185585) - Splits processed: 122 (122) - Splits rejected: 0 (0) - Splits total: 122 (122) Filter 8 (1.00 MB): - Files processed: 123 (123) - Files rejected: 1 (1) - Files total: 123 (123) - RowGroups processed: 132 (132) - RowGroups rejected: 0 (0) - RowGroups total: 132 (132) - Rows processed: 185.59K (185585) - Rows rejected: 0 (0) - Rows total: 185.59K (185585) - Splits processed: 122 (122) - Splits rejected: 0 (0) - Splits total: 122 (122) Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 122 (122) - RowGroups rejected: 0 (0) - RowGroups total: 122 (122) - Rows processed: 170.69K (170692) - Rows rejected: 151.08K (151081) - Rows total: 185.59K (185585) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance f04aed6e613865a1:acb29fb100000002 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:608/64.83 MB Fragment Instance Lifecycle Event Timeline: 1s326ms - Prepare Finished: 36.912ms (36.912ms) - Open Finished: 996.001ms (959.089ms) - First Batch Produced: 996.122ms (121.344us) - First Batch Sent: 996.809ms (686.533us) - ExecInternal Finished: 1s326ms (330.023ms) - MemoryUsage (500.000ms): 2.07 MB, 2.07 MB, 2.59 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 64.83 MB (67983812) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.05 - ExecutionRate: 47.97 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.73 MB (2862752) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 32.38K (32376) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 168.262us - TotalStorageWaitTime: 240.770ms - TotalThreadsInvoluntaryContextSwitches: 36 (36) - TotalThreadsTotalWallClockTime: 1s289ms - TotalThreadsSysTime: 4.349ms - TotalThreadsUserTime: 234.722ms - TotalThreadsVoluntaryContextSwitches: 801 (801) - TotalTime: 1s298ms Fragment Instance Lifecycle Timings: - ExecTime: 330.793ms - ExecTreeExecTime: 314.949ms - OpenTime: 959.072ms - ExecTreeOpenTime: 714.153ms - PrepareTime: 192.361us - ExecTreePrepareTime: 74.041us KrpcDataStreamSender (dst_id=33): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 482.45 KB - NetworkThroughput: (Avg: 77.38 MB/sec ; Min: 8.22 MB/sec ; Max: 152.41 MB/sec ; Number of samples: 53) - RpcNetworkTime: (Avg: 161.335us ; Min: 41.183us ; Max: 1.225ms ; Number of samples: 56) - RpcRecvrTime: (Avg: 62.848us ; Min: 7.464us ; Max: 177.516us ; Number of samples: 56) - EosSent: 3 (3) - InactiveTotalTime: 168.262us - PeakMemoryUsage: 401.94 KB (411588) - RowsSent: 32.38K (32376) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.386ms - TotalBytesSent: 528.13 KB (540809) - TotalTime: 15.789ms - UncompressedRowBatchSize: 1.30 MB (1359792) HASH_JOIN_NODE (id=11): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s326ms - Open Started: 281.818ms (281.818ms) - Waiting for initial build: 988.686ms (706.868ms) - Initial build available: 988.688ms (1.252us) - Open Finished: 995.969ms (7.281ms) - First Batch Requested: 996.004ms (34.582us) - First Batch Returned: 996.121ms (117.298us) - Last Batch Returned: 1s326ms (330.362ms) - Closed: 1s326ms (37.348us) - InactiveTotalTime: 85.529us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 32.38K (32376) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.688ms - RowsReturned: 32.38K (32376) - RowsReturnedRate: 31.46 K/sec - TotalTime: 1s029ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=9): Table Name: tpcds_parquet.store_sales Runtime filters: Not all filters arrived (arrived: [9, 8], missing [6]), waited for 706ms. Arrival delay: 1s000ms. Hdfs Read Thread Concurrency Bucket: 0:66.67% 1:33.33% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0% 8:0% 9:0% 10:0% 11:0% 12:0% 13:0% 14:0% 15:0% 16:0% 17:0% 18:0% 19:0% 20:0% 21:0% 22:0% 23:0% 24:0% File Formats: PARQUET/SNAPPY:121 PARQUET/Unknown(Skipped):487 ExecOption: Codegen enabled: 121 out of 121, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s326ms - Open Started: 281.826ms (281.826ms) - Open Finished: 988.670ms (706.844ms) - First Batch Requested: 988.691ms (20.249us) - First Batch Returned: 995.966ms (7.275ms) - Last Batch Returned: 1s326ms (330.198ms) - Closed: 1s326ms (354.453us) - BytesReadSeries (500.000ms): 0, 0, 10.28 MB - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - ColumnarScannerIdealReservation: (Avg: 28.50 KB (29179) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 121) - FooterProcessingTime: (Avg: 1.197ms ; Min: 387.461us ; Max: 9.806ms ; Number of samples: 121) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - InitialRangeIdealReservation: (Avg: 110.54 KB (113198) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 121) - PageIndexProcessingTime: (Avg: 170.126us ; Min: 41.110us ; Max: 3.411ms ; Number of samples: 121) - ParquetCompressedBytesReadPerColumn: (Avg: 176.31 KB (180542) ; Min: 137.97 KB (141278) ; Max: 252.88 KB (258953) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.46 KB (1492) ; Min: 302.00 B (302) ; Max: 5.07 KB (5193) ; Number of samples: 363) - ParquetUncompressedBytesReadPerColumn: (Avg: 195.09 KB (199771) ; Min: 153.81 KB (157506) ; Max: 253.21 KB (259290) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.61 KB (1651) ; Min: 302.00 B (302) ; Max: 5.11 KB (5236) ; Number of samples: 363) - AverageHdfsReadThreadConcurrency: 0.33 - BytesRead: 10.90 MB (11430117) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 10.90 MB (11430117) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.90 MB (11430117) - CachedFileHandlesHitCount: 374 (374) - CachedFileHandlesMissCount: 231 (231) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.121ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.39 MB (1460558) - IoReadAsyncRequest: 1.45K (1452) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 95.41 KB (97695) - IoReadSyncRequest: 121 (121) - IoReadTotalBytes: 1.49 MB (1558253) - IoReadTotalRequest: 1.57K (1573) - MaterializeTupleTime: 13.136ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 363 (363) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 121 (121) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 121 (121) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2161244) - PerReadThreadRawHdfsThroughput: 110.35 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 180.53K (180529) - RowsReturned: 32.38K (32376) - RowsReturnedRate: 31.53 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 240.770ms - TotalRawHdfsOpenFileTime: 151.003ms - TotalRawHdfsReadTime: 98.784ms - TotalReadThroughput: 6.85 MB/sec - TotalTime: 1s026ms Buffer pool: - AllocTime: 511.284us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.43 MB (17227776) - CumulativeAllocations: 484 (484) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 73.834us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 9 (0): - Files processed: 608 (608) - Files rejected: 487 (487) - Files total: 608 (608) - RowGroups processed: 133 (133) - RowGroups rejected: 0 (0) - RowGroups total: 133 (133) - Rows processed: 180.53K (180529) - Rows rejected: 0 (0) - Rows total: 180.53K (180529) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 8 (1.00 MB): - Files processed: 121 (121) - Files rejected: 0 (0) - Files total: 121 (121) - RowGroups processed: 133 (133) - RowGroups rejected: 0 (0) - RowGroups total: 133 (133) - Rows processed: 180.53K (180529) - Rows rejected: 0 (0) - Rows total: 180.53K (180529) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 166.46K (166463) - Rows rejected: 148.15K (148153) - Rows total: 180.53K (180529) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance f04aed6e613865a1:acb29fb100000001 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:608/64.55 MB Fragment Instance Lifecycle Event Timeline: 1s314ms - Prepare Finished: 54.265ms (54.265ms) - Open Finished: 1s000ms (946.164ms) - First Batch Produced: 1s000ms (117.781us) - First Batch Sent: 1s001ms (648.200us) - ExecInternal Finished: 1s314ms (313.402ms) - MemoryUsage (500.000ms): 70.66 KB, 2.07 MB, 333.94 KB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 64.55 MB (67688665) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.04 - ExecutionRate: 47.75 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.76 MB (2893640) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 30.91K (30914) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 821.065us - TotalStorageWaitTime: 225.353ms - TotalThreadsInvoluntaryContextSwitches: 54 (54) - TotalThreadsTotalWallClockTime: 1s260ms - TotalThreadsSysTime: 16.806ms - TotalThreadsUserTime: 234.610ms - TotalThreadsVoluntaryContextSwitches: 856 (856) - TotalTime: 1s261ms Fragment Instance Lifecycle Timings: - ExecTime: 314.055ms - ExecTreeExecTime: 298.583ms - OpenTime: 946.152ms - ExecTreeOpenTime: 517.456ms - PrepareTime: 1.643ms - ExecTreePrepareTime: 216.811us KrpcDataStreamSender (dst_id=33): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0, 493.51 KB - NetworkThroughput: (Avg: 78.86 MB/sec ; Min: 8.79 MB/sec ; Max: 168.93 MB/sec ; Number of samples: 51) - RpcNetworkTime: (Avg: 183.557us ; Min: 49.594us ; Max: 1.128ms ; Number of samples: 54) - RpcRecvrTime: (Avg: 60.103us ; Min: 8.186us ; Max: 176.638us ; Number of samples: 54) - EosSent: 3 (3) - InactiveTotalTime: 821.065us - PeakMemoryUsage: 401.94 KB (411589) - RowsSent: 30.91K (30914) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.076ms - TotalBytesSent: 504.68 KB (516790) - TotalTime: 15.522ms - UncompressedRowBatchSize: 1.24 MB (1298388) HASH_JOIN_NODE (id=11): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s314ms - Open Started: 482.949ms (482.949ms) - Waiting for initial build: 990.098ms (507.149ms) - Initial build available: 990.100ms (1.305us) - Open Finished: 1s000ms (10.303ms) - First Batch Requested: 1s000ms (28.241us) - First Batch Returned: 1s000ms (114.410us) - Last Batch Returned: 1s314ms (313.566ms) - Closed: 1s314ms (39.741us) - InactiveTotalTime: 119.245us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 30.91K (30914) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.663ms - RowsReturned: 30.91K (30914) - RowsReturnedRate: 37.87 K/sec - TotalTime: 816.420ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=9): Table Name: tpcds_parquet.store_sales Runtime filters: Not all filters arrived (arrived: [9, 8], missing [6]), waited for 507ms. Arrival delay: 1s001ms. 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% 24:0% File Formats: PARQUET/SNAPPY:121 PARQUET/Unknown(Skipped):487 ExecOption: Codegen enabled: 121 out of 121, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s314ms - Open Started: 482.959ms (482.959ms) - Open Finished: 990.060ms (507.101ms) - First Batch Requested: 990.102ms (42.430us) - First Batch Returned: 1s000ms (10.298ms) - Last Batch Returned: 1s313ms (313.529ms) - Closed: 1s314ms (219.243us) - BytesReadSeries (500.000ms): 0, 0 - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - ColumnarScannerIdealReservation: (Avg: 29.22 KB (29924) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 121) - FooterProcessingTime: (Avg: 1.152ms ; Min: 358.318us ; Max: 9.432ms ; Number of samples: 121) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - InitialRangeIdealReservation: (Avg: 112.13 KB (114823) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 121) - PageIndexProcessingTime: (Avg: 171.231us ; Min: 42.303us ; Max: 1.903ms ; Number of samples: 121) - ParquetCompressedBytesReadPerColumn: (Avg: 179.42 KB (183731) ; Min: 139.74 KB (143089) ; Max: 256.67 KB (262827) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.48 KB (1518) ; Min: 318.00 B (318) ; Max: 5.68 KB (5815) ; Number of samples: 363) - ParquetUncompressedBytesReadPerColumn: (Avg: 198.93 KB (203706) ; Min: 159.20 KB (163016) ; Max: 257.11 KB (263281) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.64 KB (1683) ; Min: 313.00 B (313) ; Max: 5.70 KB (5839) ; Number of samples: 363) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 10.99 MB (11521081) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 10.99 MB (11521081) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.99 MB (11521081) - CachedFileHandlesHitCount: 373 (373) - CachedFileHandlesMissCount: 232 (232) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.031ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.41 MB (1482823) - IoReadAsyncRequest: 1.45K (1452) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 95.43 KB (97721) - IoReadSyncRequest: 121 (121) - IoReadTotalBytes: 1.51 MB (1580544) - IoReadTotalRequest: 1.57K (1573) - MaterializeTupleTime: 12.478ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 363 (363) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 121 (121) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 121 (121) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2164034) - PerReadThreadRawHdfsThroughput: 119.21 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 183.22K (183216) - RowsReturned: 30.91K (30914) - RowsReturnedRate: 37.98 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 225.353ms - TotalRawHdfsOpenFileTime: 139.135ms - TotalRawHdfsReadTime: 92.169ms - TotalReadThroughput: 0.00 /sec - TotalTime: 813.856ms Buffer pool: - AllocTime: 453.789us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.70 MB (17514496) - CumulativeAllocations: 484 (484) - 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.827us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 9 (0): - Files processed: 608 (608) - Files rejected: 487 (487) - Files total: 608 (608) - RowGroups processed: 130 (130) - RowGroups rejected: 0 (0) - RowGroups total: 130 (130) - Rows processed: 183.22K (183216) - Rows rejected: 0 (0) - Rows total: 183.22K (183216) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 8 (1.00 MB): - Files processed: 121 (121) - Files rejected: 0 (0) - Files total: 121 (121) - RowGroups processed: 130 (130) - RowGroups rejected: 0 (0) - RowGroups total: 130 (130) - Rows processed: 183.22K (183216) - Rows rejected: 0 (0) - Rows total: 183.22K (183216) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 170.99K (170992) - Rows rejected: 152.30K (152302) - Rows total: 183.22K (183216) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F26 [3 instances]:(Total: 1s303ms, non-child: 285.615ms, % non-child: 21.92%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s366ms stddev:21.496ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s366ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 4.98 MB (5222186) - PeakReservation: 4.75 MB (4980736) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 3.75K (3750) - TotalNetworkReceiveTime: 395.441ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 1s302ms - TotalThreadsSysTime: 6.371ms - TotalThreadsUserTime: 121.484ms - TotalThreadsVoluntaryContextSwitches: 65 (65) - TotalTime: 1s303ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 621.611ms - ExecTreeExecTime: 1.434ms - OpenTime: 681.210ms - ExecTreeOpenTime: 394.945ms - PrepareTime: 174.750us - ExecTreePrepareTime: 79.502us Hash Join Builder (join_node_id=30) [3 instances]:(Total: 621.055ms, non-child: 2.503ms, % non-child: 0.40%) - BuildRows: 3.75K (3750) - BuildRowsPartitionTime: 857.923us - HashTablesBuildTime: 573.451us - InactiveTotalTime: 618.552ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.77 MB (5006464) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 621.055ms Buffer pool [3 instances]: - AllocTime: 112.125us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 103.883us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 3.81K (3810) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=55) [3 instances]:(Total: 396.377ms, non-child: 956.783us, % non-child: 0.24%) - ConvertRowBatchTime: 912.572us - InactiveTotalTime: 395.420ms - PeakMemoryUsage: 210.67 KB (215722) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 10.58 K/sec - TotalTime: 396.377ms Buffer pool [3 instances]: - AllocTime: 43.241us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 280.00 KB (286720) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 210.67 KB (215722) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 210.67 KB (215722) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 32.226us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 394.938ms - TotalBytesDequeued: 194.13 KB (198785) - TotalGetBatchTime: 395.439ms - DataWaitTime: 395.420ms Enqueue [3 instances]: - DispatchTime: (Avg: 37.002us ; Min: 3.490us ; Max: 117.574us ; Number of samples: 24) - DeserializeRowBatchTime: 292.136us - TotalBatchesEnqueued: 8 (8) - TotalBatchesReceived: 8 (8) - TotalBytesReceived: 78.38 KB (80264) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F26: Instance f04aed6e613865a1:acb29fb100000013 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 10.939ms (10.939ms) - Open Finished: 714.596ms (703.657ms) - First Batch Produced: 714.945ms (348.865us) - First Batch Sent: 715.323ms (377.750us) - ExecInternal Finished: 1s335ms (620.330ms) - MemoryUsage (500.000ms): 25.12 KB, 4.77 MB, 4.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 5.03 MB (5276800) - PeakReservation: 4.75 MB (4980736) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 3.69K (3685) - TotalNetworkReceiveTime: 499.243ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 69 (69) - TotalThreadsTotalWallClockTime: 1s324ms - TotalThreadsSysTime: 15.149ms - TotalThreadsUserTime: 105.899ms - TotalThreadsVoluntaryContextSwitches: 33 (33) - TotalTime: 1s324ms Fragment Instance Lifecycle Timings: - ExecTime: 621.035ms - ExecTreeExecTime: 1.264ms - OpenTime: 703.647ms - ExecTreeOpenTime: 499.229ms - PrepareTime: 136.101us - ExecTreePrepareTime: 85.312us Hash Join Builder (join_node_id=30): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.69K (3685) - BuildRowsPartitionTime: 982.852us - HashTablesBuildTime: 738.330us - InactiveTotalTime: 617.809ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.77 MB (5006464) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 620.961ms Buffer pool: - AllocTime: 129.368us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 119.791us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 3.75K (3748) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=55): Node Lifecycle Event Timeline: 716.925ms - Open Started: 214.134ms (214.134ms) - Open Finished: 713.362ms (499.227ms) - First Batch Requested: 714.600ms (1.237ms) - First Batch Returned: 714.944ms (344.505us) - Last Batch Returned: 716.731ms (1.786ms) - Closed: 716.925ms (193.638us) - ConvertRowBatchTime: 1.218ms - InactiveTotalTime: 499.221ms - PeakMemoryUsage: 264.00 KB (270336) - RowsReturned: 3.69K (3685) - RowsReturnedRate: 7.36 K/sec - TotalTime: 500.490ms Buffer pool: - AllocTime: 22.490us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 272.00 KB (278528) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 264.00 KB (270336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 264.00 KB (270336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 16.865us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 499.221ms - TotalBytesDequeued: 190.73 KB (195305) - TotalGetBatchTime: 499.240ms - DataWaitTime: 499.221ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 11.006us ; Min: 3.490us ; Max: 34.696us ; Number of samples: 8) - DeserializeRowBatchTime: 139.775us - TotalBatchesEnqueued: 8 (8) - TotalBatchesReceived: 8 (8) - TotalBytesReceived: 77.04 KB (78892) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000014 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 41.736ms (41.736ms) - Open Finished: 713.361ms (671.625ms) - First Batch Produced: 713.448ms (86.845us) - First Batch Sent: 713.627ms (179.325us) - ExecInternal Finished: 1s335ms (621.903ms) - MemoryUsage (500.000ms): 25.12 KB, 4.77 MB, 4.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 4.92 MB (5153920) - PeakReservation: 4.75 MB (4980736) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 3.82K (3819) - TotalNetworkReceiveTime: 453.589ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 30 (30) - TotalThreadsTotalWallClockTime: 1s293ms - TotalThreadsSysTime: 3.966ms - TotalThreadsUserTime: 114.847ms - TotalThreadsVoluntaryContextSwitches: 59 (59) - TotalTime: 1s293ms Fragment Instance Lifecycle Timings: - ExecTime: 622.155ms - ExecTreeExecTime: 1.775ms - OpenTime: 671.622ms - ExecTreeOpenTime: 452.135ms - PrepareTime: 89.105us - ExecTreePrepareTime: 34.725us Hash Join Builder (join_node_id=30): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.82K (3819) - BuildRowsPartitionTime: 544.972us - HashTablesBuildTime: 261.168us - InactiveTotalTime: 619.452ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.77 MB (5006464) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 620.943ms Buffer pool: - AllocTime: 51.169us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 48.030us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 3.87K (3870) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=55): Node Lifecycle Event Timeline: 715.708ms - Open Started: 260.742ms (260.742ms) - Open Finished: 712.877ms (452.134ms) - First Batch Requested: 713.362ms (485.444us) - First Batch Returned: 713.448ms (85.230us) - Last Batch Returned: 715.594ms (2.146ms) - Closed: 715.708ms (113.593us) - ConvertRowBatchTime: 307.684us - InactiveTotalTime: 453.578ms - PeakMemoryUsage: 144.00 KB (147456) - RowsReturned: 3.82K (3819) - RowsReturnedRate: 8.41 K/sec - TotalTime: 453.909ms Buffer pool: - AllocTime: 42.172us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 288.00 KB (294912) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 144.00 KB (147456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 144.00 KB (147456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 29.802us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 452.131ms - TotalBytesDequeued: 197.66 KB (202407) - TotalGetBatchTime: 453.588ms - DataWaitTime: 453.578ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 32.537us ; Min: 3.998us ; Max: 85.021us ; Number of samples: 8) - DeserializeRowBatchTime: 277.085us - TotalBatchesEnqueued: 8 (8) - TotalBatchesReceived: 8 (8) - TotalBytesReceived: 79.80 KB (81714) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000015 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s334ms - Prepare Finished: 44.682ms (44.682ms) - Open Finished: 713.049ms (668.367ms) - First Batch Produced: 713.391ms (342.298us) - First Batch Sent: 713.811ms (419.420us) - ExecInternal Finished: 1s334ms (620.893ms) - MemoryUsage (500.000ms): 25.12 KB, 4.77 MB, 4.77 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 4.99 MB (5235840) - PeakReservation: 4.75 MB (4980736) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 3.75K (3748) - TotalNetworkReceiveTime: 233.492ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 35 (35) - TotalThreadsTotalWallClockTime: 1s289ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 143.706ms - TotalThreadsVoluntaryContextSwitches: 105 (105) - TotalTime: 1s290ms Fragment Instance Lifecycle Timings: - ExecTime: 621.642ms - ExecTreeExecTime: 1.265ms - OpenTime: 668.359ms - ExecTreeOpenTime: 233.469ms - PrepareTime: 299.046us - ExecTreePrepareTime: 118.470us Hash Join Builder (join_node_id=30): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.75K (3748) - BuildRowsPartitionTime: 1.045ms - HashTablesBuildTime: 720.854us - InactiveTotalTime: 618.395ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.77 MB (5006464) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 621.261ms Buffer pool: - AllocTime: 155.838us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 143.829us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 3.81K (3814) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=55): Node Lifecycle Event Timeline: 715.423ms - Open Started: 478.717ms (478.717ms) - Open Finished: 712.185ms (233.467ms) - First Batch Requested: 713.053ms (867.506us) - First Batch Returned: 713.390ms (337.820us) - Last Batch Returned: 715.230ms (1.839ms) - Closed: 715.423ms (192.731us) - ConvertRowBatchTime: 1.211ms - InactiveTotalTime: 233.461ms - PeakMemoryUsage: 224.00 KB (229376) - RowsReturned: 3.75K (3748) - RowsReturnedRate: 15.97 K/sec - TotalTime: 234.731ms Buffer pool: - AllocTime: 65.063us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 280.00 KB (286720) - CumulativeAllocations: 16 (16) - EncryptionTime: 0.000ns - PeakReservation: 224.00 KB (229376) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 224.00 KB (229376) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 50.013us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 233.461ms - TotalBytesDequeued: 193.99 KB (198644) - TotalGetBatchTime: 233.489ms - DataWaitTime: 233.461ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 67.464us ; Min: 31.724us ; Max: 117.574us ; Number of samples: 8) - DeserializeRowBatchTime: 459.550us - TotalBatchesEnqueued: 8 (8) - TotalBatchesReceived: 8 (8) - TotalBytesReceived: 78.31 KB (80186) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F24 [2 instances]:(Total: 676.804ms, non-child: 366.089ms, % non-child: 54.09%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s352ms mean: 1s351ms stddev:413.401us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.64 MB (18498363) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 5.63K (5626) - TotalNetworkReceiveTime: 296.631ms - TotalNetworkSendTime: 867.867us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 46 (46) - TotalThreadsTotalWallClockTime: 666.573ms - TotalThreadsSysTime: 4.262ms - TotalThreadsUserTime: 182.250ms - TotalThreadsVoluntaryContextSwitches: 107 (107) - TotalTime: 676.804ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 3.022ms - ExecTreeExecTime: 629.946us - OpenTime: 663.554ms - ExecTreeOpenTime: 299.300ms - PrepareTime: 8.458ms - ExecTreePrepareTime: 7.938ms KrpcDataStreamSender (dst_id=55) [2 instances]:(Total: 2.848ms, non-child: 1.980ms, % non-child: 69.53%) - NetworkThroughput: (Avg: 84.65 MB/sec ; Min: 13.93 MB/sec ; Max: 369.38 MB/sec ; Number of samples: 24) - RpcNetworkTime: (Avg: 161.954us ; Min: 31.121us ; Max: 402.098us ; Number of samples: 30) - RpcRecvrTime: (Avg: 77.079us ; Min: 7.690us ; Max: 212.413us ; Number of samples: 30) - EosSent: 3 (3) - InactiveTotalTime: 867.867us - PeakMemoryUsage: 446.47 KB (457183) - RowsSent: 5.63K (5626) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 404.909us - TotalBytesSent: 117.57 KB (120396) - TotalTime: 2.848ms - UncompressedRowBatchSize: 291.19 KB (298178) UNION_NODE (id=21) [2 instances]:(Total: 307.866ms, non-child: 235.527us, % non-child: 0.08%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 5.63K (5626) - RowsReturnedRate: 20.21 K/sec - TotalTime: 307.866ms AGGREGATION_NODE (id=54) [2 instances]:(Total: 307.631ms, non-child: 10.468ms, % non-child: 3.40%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 5.63K (5626) - RowsReturnedRate: 20.23 K/sec - TotalTime: 307.631ms GroupingAggregator 0 [2 instances]: - BuildTime: 1.759ms - GetResultsTime: 238.978us - HTResizeTime: 105.403us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5.63K (5626) - SpilledPartitions: 0 (0) Buffer pool [2 instances]: - AllocTime: 46.546us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.747us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 5.63K (5626) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=53) [2 instances]:(Total: 297.162ms, non-child: 598.404us, % non-child: 0.20%) - ConvertRowBatchTime: 473.611us - InactiveTotalTime: 296.563ms - PeakMemoryUsage: 304.00 KB (311296) - RowsReturned: 5.63K (5626) - RowsReturnedRate: 20.73 K/sec - TotalTime: 297.162ms Buffer pool [2 instances]: - AllocTime: 93.642us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.45 MB (1515520) - CumulativeAllocations: 76 (76) - EncryptionTime: 0.000ns - PeakReservation: 304.00 KB (311296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 304.00 KB (311296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 38.656us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 203.722ms - TotalBytesDequeued: 975.00 KB (998399) - TotalGetBatchTime: 296.625ms - DataWaitTime: 296.563ms Enqueue [2 instances]: - DispatchTime: (Avg: 52.914us ; Min: 7.478us ; Max: 142.802us ; Number of samples: 76) - DeserializeRowBatchTime: 1.492ms - TotalBatchesEnqueued: 38 (38) - TotalBatchesReceived: 38 (38) - TotalBytesReceived: 545.96 KB (559063) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F24: Instance f04aed6e613865a1:acb29fb100000012 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 713.916ms - Prepare Finished: 32.118ms (32.118ms) - Open Finished: 711.454ms (679.336ms) - First Batch Produced: 711.568ms (113.309us) - First Batch Sent: 711.727ms (159.452us) - ExecInternal Finished: 713.916ms (2.188ms) - MemoryUsage (500.000ms): 125.34 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.64 MB (18498363) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 5.64K (5637) - TotalNetworkReceiveTime: 209.491ms - TotalNetworkSendTime: 623.300us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 59 (59) - TotalThreadsTotalWallClockTime: 681.750ms - TotalThreadsSysTime: 4.642ms - TotalThreadsUserTime: 194.740ms - TotalThreadsVoluntaryContextSwitches: 133 (133) - TotalTime: 682.368ms Fragment Instance Lifecycle Timings: - ExecTime: 2.418ms - ExecTreeExecTime: 514.889us - OpenTime: 679.335ms - ExecTreeOpenTime: 211.951ms - PrepareTime: 542.369us - ExecTreePrepareTime: 347.076us KrpcDataStreamSender (dst_id=55): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 119.41 MB/sec ; Min: 31.87 MB/sec ; Max: 369.38 MB/sec ; Number of samples: 12) - RpcNetworkTime: (Avg: 102.476us ; Min: 31.121us ; Max: 220.928us ; Number of samples: 15) - RpcRecvrTime: (Avg: 83.419us ; Min: 7.690us ; Max: 191.198us ; Number of samples: 15) - EosSent: 3 (3) - InactiveTotalTime: 623.300us - PeakMemoryUsage: 446.47 KB (457183) - RowsSent: 5.64K (5637) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 349.012us - TotalBytesSent: 117.86 KB (120689) - TotalTime: 2.014ms - UncompressedRowBatchSize: 291.76 KB (298761) UNION_NODE (id=21): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 713.200ms - Open Started: 499.497ms (499.497ms) - Open Finished: 711.446ms (211.949ms) - First Batch Requested: 711.455ms (8.858us) - First Batch Returned: 711.567ms (112.275us) - Last Batch Returned: 713.089ms (1.521ms) - Closed: 713.200ms (111.043us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 5.64K (5637) - RowsReturnedRate: 26.49 K/sec - TotalTime: 212.809ms AGGREGATION_NODE (id=54): Node Lifecycle Event Timeline: 713.088ms - Open Started: 499.499ms (499.499ms) - Open Finished: 711.445ms (211.946ms) - First Batch Requested: 711.458ms (13.068us) - First Batch Returned: 711.485ms (26.351us) - Last Batch Returned: 713.055ms (1.570ms) - Closed: 713.088ms (33.345us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 5.64K (5637) - RowsReturnedRate: 26.51 K/sec - TotalTime: 212.613ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 1.563ms - GetResultsTime: 208.856us - HTResizeTime: 100.333us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5.64K (5637) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 44.937us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 41.207us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 5.64K (5637) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=53): Node Lifecycle Event Timeline: 711.433ms - Open Started: 499.500ms (499.500ms) - Open Finished: 615.897ms (116.397ms) - First Batch Requested: 616.208ms (310.595us) - First Batch Returned: 617.823ms (1.614ms) - Last Batch Returned: 711.305ms (93.481ms) - Closed: 711.433ms (127.931us) - ConvertRowBatchTime: 480.967us - InactiveTotalTime: 209.425ms - PeakMemoryUsage: 304.00 KB (311296) - RowsReturned: 5.64K (5637) - RowsReturnedRate: 26.84 K/sec - TotalTime: 210.027ms Buffer pool: - AllocTime: 128.317us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.45 MB (1515520) - CumulativeAllocations: 76 (76) - EncryptionTime: 0.000ns - PeakReservation: 304.00 KB (311296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 304.00 KB (311296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 71.545us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 116.393ms - TotalBytesDequeued: 976.13 KB (999562) - TotalGetBatchTime: 209.485ms - DataWaitTime: 209.425ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 58.209us ; Min: 8.850us ; Max: 142.802us ; Number of samples: 38) - DeserializeRowBatchTime: 1.620ms - TotalBatchesEnqueued: 38 (38) - TotalBatchesReceived: 38 (38) - TotalBytesReceived: 547.14 KB (560273) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000011 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 716.022ms - Prepare Finished: 64.510ms (64.510ms) - Open Finished: 712.285ms (647.775ms) - First Batch Produced: 712.436ms (150.844us) - First Batch Sent: 712.651ms (214.981us) - ExecInternal Finished: 716.022ms (3.370ms) - MemoryUsage (500.000ms): 125.34 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.64 MB (18498363) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 5.62K (5615) - TotalNetworkReceiveTime: 383.771ms - TotalNetworkSendTime: 1.112ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 33 (33) - TotalThreadsTotalWallClockTime: 651.396ms - TotalThreadsSysTime: 3.883ms - TotalThreadsUserTime: 169.761ms - TotalThreadsVoluntaryContextSwitches: 82 (82) - TotalTime: 671.241ms Fragment Instance Lifecycle Timings: - ExecTime: 3.627ms - ExecTreeExecTime: 745.003us - OpenTime: 647.773ms - ExecTreeOpenTime: 386.650ms - PrepareTime: 16.374ms - ExecTreePrepareTime: 15.530ms KrpcDataStreamSender (dst_id=55): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 49.89 MB/sec ; Min: 13.93 MB/sec ; Max: 94.37 MB/sec ; Number of samples: 12) - RpcNetworkTime: (Avg: 221.433us ; Min: 90.627us ; Max: 402.098us ; Number of samples: 15) - RpcRecvrTime: (Avg: 70.739us ; Min: 9.605us ; Max: 212.413us ; Number of samples: 15) - EosSent: 3 (3) - InactiveTotalTime: 1.112ms - PeakMemoryUsage: 446.47 KB (457183) - RowsSent: 5.62K (5615) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 460.807us - TotalBytesSent: 117.29 KB (120103) - TotalTime: 3.682ms - UncompressedRowBatchSize: 290.62 KB (297595) UNION_NODE (id=21): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 714.721ms - Open Started: 325.627ms (325.627ms) - Open Finished: 712.277ms (386.649ms) - First Batch Requested: 712.286ms (9.787us) - First Batch Returned: 712.436ms (149.424us) - Last Batch Returned: 714.513ms (2.076ms) - Closed: 714.721ms (208.396us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 5.62K (5615) - RowsReturnedRate: 13.94 K/sec - TotalTime: 402.923ms AGGREGATION_NODE (id=54): Node Lifecycle Event Timeline: 714.512ms - Open Started: 325.630ms (325.630ms) - Open Finished: 712.276ms (386.646ms) - First Batch Requested: 712.291ms (15.245us) - First Batch Returned: 712.318ms (26.854us) - Last Batch Returned: 714.479ms (2.161ms) - Closed: 714.512ms (32.809us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 5.62K (5615) - RowsReturnedRate: 13.95 K/sec - TotalTime: 402.649ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 1.956ms - GetResultsTime: 269.100us - HTResizeTime: 110.474us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 5.62K (5615) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 48.155us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 44.288us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 5.62K (5615) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=53): Node Lifecycle Event Timeline: 712.260ms - Open Started: 325.630ms (325.630ms) - Open Finished: 616.685ms (291.054ms) - First Batch Requested: 617.022ms (337.150us) - First Batch Returned: 618.701ms (1.678ms) - Last Batch Returned: 712.072ms (93.371ms) - Closed: 712.260ms (188.151us) - ConvertRowBatchTime: 466.255us - InactiveTotalTime: 383.701ms - PeakMemoryUsage: 304.00 KB (311296) - RowsReturned: 5.62K (5615) - RowsReturnedRate: 14.61 K/sec - TotalTime: 384.296ms Buffer pool: - AllocTime: 58.968us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.45 MB (1515520) - CumulativeAllocations: 76 (76) - EncryptionTime: 0.000ns - PeakReservation: 304.00 KB (311296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 304.00 KB (311296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.768us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 291.051ms - TotalBytesDequeued: 973.86 KB (997237) - TotalGetBatchTime: 383.765ms - DataWaitTime: 383.701ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 47.618us ; Min: 7.478us ; Max: 111.085us ; Number of samples: 38) - DeserializeRowBatchTime: 1.363ms - TotalBatchesEnqueued: 38 (38) - TotalBatchesReceived: 38 (38) - TotalBytesReceived: 544.78 KB (557854) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F21 [2 instances]:(Total: 604.318ms, non-child: 550.868ms, % non-child: 91.16%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s352ms mean: 1s351ms stddev:527.270us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.94 MB (19862304) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 5.63K (5626) - TotalNetworkReceiveTime: 115.314us - TotalNetworkSendTime: 951.237us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 599.478ms - TotalThreadsSysTime: 12.062ms - TotalThreadsUserTime: 351.859ms - TotalThreadsVoluntaryContextSwitches: 75 (75) - TotalTime: 604.318ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 22.992ms - ExecTreeExecTime: 16.852ms - OpenTime: 576.494ms - ExecTreeOpenTime: 26.815ms - PrepareTime: 4.799ms - ExecTreePrepareTime: 3.637ms KrpcDataStreamSender (dst_id=53) [2 instances]:(Total: 6.148ms, non-child: 5.196ms, % non-child: 84.53%) - NetworkThroughput: (Avg: 250.53 MB/sec ; Min: 34.08 MB/sec ; Max: 673.95 MB/sec ; Number of samples: 76) - RpcNetworkTime: (Avg: 96.631us ; Min: 19.144us ; Max: 351.034us ; Number of samples: 80) - RpcRecvrTime: (Avg: 94.283us ; Min: 8.601us ; Max: 219.999us ; Number of samples: 80) - EosSent: 2 (2) - InactiveTotalTime: 951.237us - PeakMemoryUsage: 506.43 KB (518588) - RowsSent: 5.63K (5626) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.669ms - TotalBytesSent: 545.96 KB (559063) - TotalTime: 6.148ms - UncompressedRowBatchSize: 975.00 KB (998399) AGGREGATION_NODE (id=27) [2 instances]:(Total: 47.301ms, non-child: 4.970ms, % non-child: 10.51%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.13 MB (17956992) - RowsReturned: 5.63K (5626) - RowsReturnedRate: 221.54 K/sec - TotalTime: 47.301ms GroupingAggregator 0 [2 instances]: - BuildTime: 0.000ns - GetResultsTime: 221.712us - HTResizeTime: 78.941us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.10 MB (17932416) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5.63K (5626) - StreamingTime: 7.623ms Buffer pool [2 instances]: - AllocTime: 46.740us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.582us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 71.24K (71243) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=26) [2 instances]:(Total: 42.331ms, non-child: 1.601ms, % non-child: 3.78%) - InactiveTotalTime: 71.906us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 71.24K (71243) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.441ms - RowsReturned: 71.24K (71243) - RowsReturnedRate: 4.81 M/sec - TotalTime: 42.331ms Buffer pool [2 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=25) [2 instances]:(Total: 40.658ms, non-child: 8.940ms, % non-child: 21.99%) - InactiveTotalTime: 26.475ms - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 71.25K (71249) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.949ms - RowsReturned: 71.24K (71243) - RowsReturnedRate: 5.75 M/sec - TotalTime: 40.658ms Buffer pool [2 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=50) [2 instances]:(Total: 5.242ms, non-child: 5.242ms, % non-child: 100.00%) - ConvertRowBatchTime: 5.046ms - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.75 MB (1835008) - RowsReturned: 71.25K (71249) - RowsReturnedRate: 13.79 M/sec - TotalTime: 5.242ms Buffer pool [2 instances]: - AllocTime: 260.094us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.75 MB (1835008) - CumulativeAllocations: 150 (150) - EncryptionTime: 0.000ns - PeakReservation: 1.75 MB (1835008) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.75 MB (1835008) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 217.067us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 1.70 MB (1781225) - TotalGetBatchTime: 110.217us - DataWaitTime: 0.000ns Enqueue [2 instances]: - DispatchTime: (Avg: 9.868us ; Min: 3.068us ; Max: 41.203us ; Number of samples: 150) - DeserializeRowBatchTime: 1.037ms - TotalBatchesEnqueued: 75 (75) - TotalBatchesReceived: 75 (75) - TotalBytesReceived: 975.07 KB (998470) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F21: Instance f04aed6e613865a1:acb29fb10000000f (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 711.381ms - Prepare Finished: 32.068ms (32.068ms) - Open Finished: 690.166ms (658.098ms) - First Batch Produced: 704.353ms (14.186ms) - First Batch Sent: 704.354ms (1.004us) - ExecInternal Finished: 711.381ms (7.027ms) - MemoryUsage (500.000ms): 172.78 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.97 MB (19886880) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 5.68K (5681) - TotalNetworkReceiveTime: 124.583us - TotalNetworkSendTime: 1.387ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 679.272ms - TotalThreadsSysTime: 12.682ms - TotalThreadsUserTime: 337.887ms - TotalThreadsVoluntaryContextSwitches: 119 (119) - TotalTime: 682.029ms Fragment Instance Lifecycle Timings: - ExecTime: 21.176ms - ExecTreeExecTime: 14.476ms - OpenTime: 658.098ms - ExecTreeOpenTime: 316.968us - PrepareTime: 2.707ms - ExecTreePrepareTime: 446.456us KrpcDataStreamSender (dst_id=53): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 238.60 MB/sec ; Min: 41.66 MB/sec ; Max: 673.95 MB/sec ; Number of samples: 38) - RpcNetworkTime: (Avg: 112.484us ; Min: 19.144us ; Max: 351.034us ; Number of samples: 40) - RpcRecvrTime: (Avg: 124.559us ; Min: 8.601us ; Max: 219.999us ; Number of samples: 40) - EosSent: 2 (2) - InactiveTotalTime: 1.387ms - PeakMemoryUsage: 507.57 KB (519755) - RowsSent: 5.68K (5681) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.690ms - TotalBytesSent: 551.69 KB (564934) - TotalTime: 6.742ms - UncompressedRowBatchSize: 984.94 KB (1008580) AGGREGATION_NODE (id=27): Node Lifecycle Event Timeline: 711.026ms - Open Started: 689.844ms (689.844ms) - Open Finished: 690.159ms (315.754us) - First Batch Requested: 690.167ms (7.162us) - First Batch Returned: 704.352ms (14.185ms) - Last Batch Returned: 710.989ms (6.637ms) - Closed: 711.026ms (36.663us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.13 MB (17956992) - RowsReturned: 5.68K (5681) - RowsReturnedRate: 372.90 K/sec - TotalTime: 15.234ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 241.516us - HTResizeTime: 55.322us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.10 MB (17932416) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5.68K (5681) - StreamingTime: 6.284ms Buffer pool: - AllocTime: 42.579us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 39.262us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 72.12K (72124) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=26): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 704.333ms - Open Started: 689.845ms (689.845ms) - Waiting for initial build: 689.949ms (103.868us) - Initial build available: 689.949ms (292.000ns) - Open Finished: 689.985ms (36.135us) - First Batch Requested: 690.169ms (183.875us) - First Batch Returned: 690.195ms (25.802us) - Last Batch Returned: 704.294ms (14.099ms) - Closed: 704.333ms (39.310us) - InactiveTotalTime: 68.777us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 72.12K (72124) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.236ms - RowsReturned: 72.12K (72124) - RowsReturnedRate: 8.69 M/sec - TotalTime: 8.296ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=25): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 704.332ms - Open Started: 689.851ms (689.851ms) - Waiting for initial build: 689.870ms (19.111us) - Initial build available: 689.871ms (1.675us) - Open Finished: 689.944ms (72.998us) - First Batch Requested: 689.950ms (5.379us) - First Batch Returned: 689.985ms (35.095us) - Last Batch Returned: 704.220ms (14.235ms) - Closed: 704.332ms (112.097us) - InactiveTotalTime: 72.387us - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 72.14K (72136) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.768ms - RowsReturned: 72.12K (72124) - RowsReturnedRate: 10.56 M/sec - TotalTime: 6.829ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=50): Node Lifecycle Event Timeline: 704.328ms - Open Started: 689.852ms (689.852ms) - Open Finished: 689.854ms (1.600us) - First Batch Requested: 689.874ms (20.384us) - First Batch Returned: 689.944ms (69.726us) - Last Batch Returned: 703.969ms (14.025ms) - Closed: 704.328ms (358.744us) - ConvertRowBatchTime: 4.447ms - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.77 MB (1859584) - RowsReturned: 72.14K (72136) - RowsReturnedRate: 15.55 M/sec - TotalTime: 4.638ms Buffer pool: - AllocTime: 274.585us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.77 MB (1859584) - CumulativeAllocations: 152 (152) - EncryptionTime: 0.000ns - PeakReservation: 1.77 MB (1859584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.77 MB (1859584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 230.646us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 1.72 MB (1803400) - TotalGetBatchTime: 120.467us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 9.581us ; Min: 3.068us ; Max: 41.203us ; Number of samples: 76) - DeserializeRowBatchTime: 1.067ms - TotalBatchesEnqueued: 76 (76) - TotalBatchesReceived: 76 (76) - TotalBytesReceived: 987.17 KB (1010858) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000010 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 621.896ms - Prepare Finished: 102.180ms (102.180ms) - Open Finished: 597.082ms (494.901ms) - First Batch Produced: 616.066ms (18.984ms) - First Batch Sent: 616.068ms (1.329us) - ExecInternal Finished: 621.896ms (5.828ms) - MemoryUsage (500.000ms): 172.78 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.92 MB (19837728) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 5.57K (5571) - TotalNetworkReceiveTime: 106.045us - TotalNetworkSendTime: 514.749us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 519.684ms - TotalThreadsSysTime: 11.442ms - TotalThreadsUserTime: 365.832ms - TotalThreadsVoluntaryContextSwitches: 31 (31) - TotalTime: 526.608ms Fragment Instance Lifecycle Timings: - ExecTime: 24.807ms - ExecTreeExecTime: 19.229ms - OpenTime: 494.889ms - ExecTreeOpenTime: 53.314ms - PrepareTime: 6.891ms - ExecTreePrepareTime: 6.828ms KrpcDataStreamSender (dst_id=53): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 262.45 MB/sec ; Min: 34.08 MB/sec ; Max: 453.44 MB/sec ; Number of samples: 38) - RpcNetworkTime: (Avg: 80.779us ; Min: 32.642us ; Max: 302.708us ; Number of samples: 40) - RpcRecvrTime: (Avg: 64.006us ; Min: 10.206us ; Max: 125.847us ; Number of samples: 40) - EosSent: 2 (2) - InactiveTotalTime: 514.749us - PeakMemoryUsage: 505.29 KB (517421) - RowsSent: 5.57K (5571) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.647ms - TotalBytesSent: 540.23 KB (553193) - TotalTime: 5.553ms - UncompressedRowBatchSize: 965.06 KB (988219) AGGREGATION_NODE (id=27): Node Lifecycle Event Timeline: 621.641ms - Open Started: 543.750ms (543.750ms) - Open Finished: 597.062ms (53.312ms) - First Batch Requested: 597.083ms (20.549us) - First Batch Returned: 616.066ms (18.982ms) - Last Batch Returned: 621.615ms (5.549ms) - Closed: 621.641ms (26.110us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.13 MB (17956992) - RowsReturned: 5.57K (5571) - RowsReturnedRate: 70.19 K/sec - TotalTime: 79.368ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 201.908us - HTResizeTime: 102.560us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.10 MB (17932416) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 5.57K (5571) - StreamingTime: 8.962ms Buffer pool: - AllocTime: 50.902us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 45.903us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 70.36K (70362) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=26): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 616.052ms - Open Started: 543.751ms (543.751ms) - Waiting for initial build: 596.692ms (52.941ms) - Initial build available: 596.693ms (921.000ns) - Open Finished: 596.750ms (57.123us) - First Batch Requested: 597.087ms (336.420us) - First Batch Returned: 597.133ms (46.275us) - Last Batch Returned: 615.943ms (18.810ms) - Closed: 616.052ms (108.565us) - InactiveTotalTime: 75.036us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 70.36K (70362) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.647ms - RowsReturned: 70.36K (70362) - RowsReturnedRate: 921.37 K/sec - TotalTime: 76.366ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=25): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 616.051ms - Open Started: 543.756ms (543.756ms) - Waiting for initial build: 543.778ms (21.661us) - Initial build available: 596.536ms (52.757ms) - Open Finished: 596.667ms (130.997us) - First Batch Requested: 596.695ms (28.645us) - First Batch Returned: 596.750ms (54.746us) - Last Batch Returned: 615.860ms (19.109ms) - Closed: 616.051ms (191.464us) - InactiveTotalTime: 52.877ms - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 70.36K (70362) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.130ms - RowsReturned: 70.36K (70362) - RowsReturnedRate: 944.62 K/sec - TotalTime: 74.486ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=50): Node Lifecycle Event Timeline: 616.047ms - Open Started: 543.757ms (543.757ms) - Open Finished: 543.759ms (1.312us) - First Batch Requested: 596.540ms (52.781ms) - First Batch Returned: 596.666ms (125.464us) - Last Batch Returned: 615.638ms (18.972ms) - Closed: 616.047ms (409.132us) - ConvertRowBatchTime: 5.645ms - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.73 MB (1810432) - RowsReturned: 70.36K (70362) - RowsReturnedRate: 12.03 M/sec - TotalTime: 5.846ms Buffer pool: - AllocTime: 245.604us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.73 MB (1810432) - CumulativeAllocations: 148 (148) - EncryptionTime: 0.000ns - PeakReservation: 1.73 MB (1810432) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.73 MB (1810432) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 203.489us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 0.000ns - TotalBytesDequeued: 1.68 MB (1759050) - TotalGetBatchTime: 99.968us - DataWaitTime: 0.000ns Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 10.163us ; Min: 3.355us ; Max: 24.109us ; Number of samples: 74) - DeserializeRowBatchTime: 1.006ms - TotalBatchesEnqueued: 74 (74) - TotalBatchesReceived: 74 (74) - TotalBytesReceived: 962.97 KB (986083) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F19 [2 instances]:(Total: 507.109ms, non-child: 181.882ms, % non-child: 35.87%) split sizes: min: 4.68 MB, max: 40.42 MB, avg: 22.55 MB, stddev: 17.87 MB completion times: min:1s350ms max:1s352ms mean: 1s351ms stddev:639.258us execution rates: min:3.46 MB/sec max:29.89 MB/sec mean:16.68 MB/sec stddev:13.21 MB/sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 22.55 MB (23642721) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 16.68 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 9.34 MB (9790780) - PeakReservation: 8.38 MB (8781824) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 71.25K (71249) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 286.198us - TotalStorageWaitTime: 44.916ms - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 504.364ms - TotalThreadsSysTime: 4.229ms - TotalThreadsUserTime: 77.998ms - TotalThreadsVoluntaryContextSwitches: 62 (62) - TotalTime: 507.109ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 72.160ms - ExecTreeExecTime: 61.066ms - OpenTime: 432.208ms - ExecTreeOpenTime: 250.421ms - PrepareTime: 2.715ms - ExecTreePrepareTime: 433.574us KrpcDataStreamSender (dst_id=50) [2 instances]:(Total: 12.894ms, non-child: 12.608ms, % non-child: 97.78%) - NetworkThroughput: (Avg: 336.89 MB/sec ; Min: 13.36 MB/sec ; Max: 626.35 MB/sec ; Number of samples: 150) - RpcNetworkTime: (Avg: 59.269us ; Min: 20.584us ; Max: 960.463us ; Number of samples: 154) - RpcRecvrTime: (Avg: 24.393us ; Min: 8.643us ; Max: 62.207us ; Number of samples: 154) - EosSent: 2 (2) - InactiveTotalTime: 286.198us - PeakMemoryUsage: 271.21 KB (277718) - RowsSent: 71.25K (71249) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 2.761ms - TotalBytesSent: 975.07 KB (998470) - TotalTime: 12.894ms - UncompressedRowBatchSize: 1.70 MB (1781225) HDFS_SCAN_NODE (id=23) [2 instances]:(Total: 312.332ms, non-child: 312.332ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 8.38 MB (8781824) ; Min: 8.00 MB (8388608) ; Max: 8.75 MB (9175040) ; Number of samples: 2) - ColumnarScannerIdealReservation: (Avg: 4.92 MB (5160960) ; Min: 1.09 MB (1146880) ; Max: 8.75 MB (9175040) ; Number of samples: 2) - FooterProcessingTime: (Avg: 41.922ms ; Min: 3.550ms ; Max: 80.293ms ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; 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: 704.32 KB (721225) ; Min: 15.23 KB (15596) ; Max: 2.43 MB (2545823) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 44.72 KB (45792) ; Min: 1.73 KB (1771) ; Max: 67.32 KB (68934) ; Number of samples: 126) - ParquetUncompressedBytesReadPerColumn: (Avg: 723.52 KB (740883) ; Min: 15.22 KB (15588) ; Max: 2.43 MB (2545556) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 45.94 KB (47040) ; Min: 1.74 KB (1783) ; Max: 67.31 KB (68929) ; Number of samples: 126) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.25 MB (3405773) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.25 MB (3405773) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.25 MB (3405773) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 525.988us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.15 MB (3303373) - IoReadAsyncRequest: 134 (134) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.15 MB (3303373) - IoReadTotalRequest: 134 (134) - MaterializeTupleTime: 13.437ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 63 (63) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.98 MB (9411370) - PerReadThreadRawHdfsThroughput: 367.44 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 359.69K (359692) - RowsReturned: 71.25K (71249) - RowsReturnedRate: 241.28 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 44.916ms - TotalRawHdfsOpenFileTime: 13.718ms - TotalRawHdfsReadTime: 35.165ms - TotalReadThroughput: 0.00 /sec - TotalTime: 312.332ms Buffer pool [2 instances]: - AllocTime: 38.063us - 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.073us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 18 (1.00 MB) [2 instances]: - 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: 288.44K (288443) - Rows total: 359.69K (359692) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F19: Instance f04aed6e613865a1:acb29fb10000000d (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB Fragment Instance Lifecycle Event Timeline: 559.282ms - Prepare Finished: 15.397ms (15.397ms) - Open Finished: 504.894ms (489.496ms) - First Batch Produced: 515.091ms (10.197ms) - First Batch Sent: 515.220ms (128.467us) - ExecInternal Finished: 559.282ms (44.061ms) - MemoryUsage (500.000ms): 8.02 MB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 40.42 MB (42380935) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.30 - ExecutionRate: 29.89 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 9.82 MB (10299372) - PeakReservation: 8.75 MB (9175040) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 130.56K (130563) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 448.505us - TotalStorageWaitTime: 6.637ms - TotalThreadsInvoluntaryContextSwitches: 14 (14) - TotalThreadsTotalWallClockTime: 543.831ms - TotalThreadsSysTime: 8.459ms - TotalThreadsUserTime: 93.038ms - TotalThreadsVoluntaryContextSwitches: 68 (68) - TotalTime: 543.952ms Fragment Instance Lifecycle Timings: - ExecTime: 54.345ms - ExecTreeExecTime: 34.625ms - OpenTime: 489.490ms - ExecTreeOpenTime: 257.662ms - PrepareTime: 99.989us - ExecTreePrepareTime: 23.640us KrpcDataStreamSender (dst_id=50): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 351.48 MB/sec ; Min: 13.36 MB/sec ; Max: 626.35 MB/sec ; Number of samples: 136) - RpcNetworkTime: (Avg: 52.739us ; Min: 20.584us ; Max: 960.463us ; Number of samples: 138) - RpcRecvrTime: (Avg: 24.769us ; Min: 11.780us ; Max: 62.207us ; Number of samples: 138) - EosSent: 2 (2) - InactiveTotalTime: 448.505us - PeakMemoryUsage: 279.20 KB (285904) - RowsSent: 130.56K (130563) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.925ms - TotalBytesSent: 1.74 MB (1829614) - TotalTime: 19.639ms - UncompressedRowBatchSize: 3.11 MB (3264075) HDFS_SCAN_NODE (id=23): Table Name: tpcds_parquet.web_sales Runtime filters: All filters arrived. Waited 258ms. Maximum arrival delay: 516ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 559.056ms - Open Started: 247.220ms (247.220ms) - Open Finished: 504.881ms (257.661ms) - First Batch Requested: 504.895ms (14.295us) - First Batch Returned: 515.090ms (10.194ms) - Last Batch Returned: 559.017ms (43.926ms) - Closed: 559.056ms (39.037us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - FooterProcessingTime: (Avg: 3.550ms ; Min: 3.550ms ; Max: 3.550ms ; 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.29 MB (1356319) ; Min: 161.78 KB (165666) ; Max: 2.43 MB (2545823) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 46.07 KB (47176) ; Min: 1.73 KB (1771) ; Max: 67.31 KB (68923) ; Number of samples: 115) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.33 MB (1395649) ; Min: 161.74 KB (165624) ; Max: 2.43 MB (2545556) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 47.41 KB (48544) ; Min: 1.74 KB (1783) ; Max: 67.30 KB (68914) ; Number of samples: 115) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.74 MB (6017712) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 5.74 MB (6017712) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.74 MB (6017712) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 2 (2) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 940.858us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 5.64 MB (5915312) - IoReadAsyncRequest: 238 (238) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 5.64 MB (5915312) - IoReadTotalRequest: 238 (238) - MaterializeTupleTime: 23.793ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 115 (115) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.44 MB (9900571) - PerReadThreadRawHdfsThroughput: 722.74 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 657.44K (657444) - RowsReturned: 130.56K (130563) - RowsReturnedRate: 446.66 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 6.637ms - TotalRawHdfsOpenFileTime: 3.317ms - TotalRawHdfsReadTime: 7.940ms - TotalReadThroughput: 0.00 /sec - TotalTime: 292.309ms Buffer pool: - AllocTime: 56.387us - 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: 50.690us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns 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: 657.44K (657444) - Rows rejected: 526.88K (526881) - Rows total: 657.44K (657444) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance f04aed6e613865a1:acb29fb10000000e (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB Fragment Instance Lifecycle Event Timeline: 590.198ms - Prepare Finished: 125.276ms (125.276ms) - Open Finished: 500.208ms (374.931ms) - First Batch Produced: 584.816ms (84.608ms) - First Batch Sent: 584.944ms (127.633us) - ExecInternal Finished: 590.198ms (5.254ms) - MemoryUsage (500.000ms): 8.02 MB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 4.68 MB (4904507) - CompletionTime: 1s350ms - ExchangeScanRatio: 0.21 - ExecutionRate: 3.46 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.85 MB (9282189) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 11.94K (11935) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 123.891us - TotalStorageWaitTime: 83.196ms - TotalThreadsInvoluntaryContextSwitches: 19 (19) - TotalThreadsTotalWallClockTime: 464.896ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 62.958ms - TotalThreadsVoluntaryContextSwitches: 57 (57) - TotalTime: 470.266ms Fragment Instance Lifecycle Timings: - ExecTime: 89.974ms - ExecTreeExecTime: 87.506ms - OpenTime: 374.926ms - ExecTreeOpenTime: 243.180ms - PrepareTime: 5.331ms - ExecTreePrepareTime: 843.509us KrpcDataStreamSender (dst_id=50): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 195.15 MB/sec ; Min: 18.23 MB/sec ; Max: 383.93 MB/sec ; Number of samples: 14) - RpcNetworkTime: (Avg: 115.596us ; Min: 33.611us ; Max: 704.456us ; Number of samples: 16) - RpcRecvrTime: (Avg: 21.149us ; Min: 8.643us ; Max: 54.221us ; Number of samples: 16) - EosSent: 2 (2) - InactiveTotalTime: 123.891us - PeakMemoryUsage: 263.22 KB (269533) - RowsSent: 11.94K (11935) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 598.382us - TotalBytesSent: 163.41 KB (167327) - TotalTime: 6.150ms - UncompressedRowBatchSize: 291.38 KB (298375) HDFS_SCAN_NODE (id=23): Table Name: tpcds_parquet.web_sales Runtime filters: All filters arrived. Waited 243ms. Maximum arrival delay: 512ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 590.004ms - Open Started: 257.016ms (257.016ms) - Open Finished: 500.195ms (243.178ms) - First Batch Requested: 500.210ms (14.827us) - First Batch Returned: 584.815ms (84.604ms) - Last Batch Returned: 589.961ms (5.145ms) - Closed: 590.004ms (43.545us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 1.09 MB (1146880) ; Min: 1.09 MB (1146880) ; Max: 1.09 MB (1146880) ; Number of samples: 1) - FooterProcessingTime: (Avg: 80.293ms ; Min: 80.293ms ; Max: 80.293ms ; 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: 84.11 KB (86132) ; Min: 15.23 KB (15596) ; Max: 159.36 KB (163181) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 30.59 KB (31320) ; Min: 3.65 KB (3737) ; Max: 67.32 KB (68934) ; Number of samples: 11) - ParquetUncompressedBytesReadPerColumn: (Avg: 84.10 KB (86118) ; Min: 15.22 KB (15588) ; Max: 159.33 KB (163159) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 30.58 KB (31315) ; Min: 3.65 KB (3733) ; Max: 67.31 KB (68929) ; Number of samples: 11) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 775.23 KB (793834) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 775.23 KB (793834) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 775.23 KB (793834) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 3 (3) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 111.119us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 675.23 KB (691434) - IoReadAsyncRequest: 30 (30) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 675.23 KB (691434) - IoReadTotalRequest: 30 (30) - MaterializeTupleTime: 3.082ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 11 (11) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.51 MB (8922169) - PerReadThreadRawHdfsThroughput: 12.13 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 61.94K (61940) - RowsReturned: 11.94K (11935) - RowsReturnedRate: 35.91 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 83.196ms - TotalRawHdfsOpenFileTime: 24.120ms - TotalRawHdfsReadTime: 62.390ms - TotalReadThroughput: 0.00 /sec - TotalTime: 332.355ms Buffer pool: - AllocTime: 19.740us - 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: 15.457us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns 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: 61.94K (61940) - Rows rejected: 50.01K (50005) - Rows total: 61.94K (61940) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F27 [2 instances]:(Total: 582.957ms, non-child: 231.989ms, % non-child: 39.80%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s352ms mean: 1s351ms stddev:467.348us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 182.851ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 582.311ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 91.544ms - TotalThreadsVoluntaryContextSwitches: 50 (50) - TotalTime: 582.957ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 167.151ms - ExecTreeExecTime: 105.195us - OpenTime: 415.165ms - ExecTreeOpenTime: 182.787ms - PrepareTime: 624.057us - ExecTreePrepareTime: 31.390us Hash Join Builder (join_node_id=26) [2 instances]:(Total: 168.077ms, non-child: 1.303ms, % non-child: 0.78%) - BuildRows: 365 (365) - BuildRowsPartitionTime: 87.089us - HashTablesBuildTime: 88.214us - InactiveTotalTime: 166.773ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 168.077ms Buffer pool [2 instances]: - AllocTime: 39.721us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 36.328us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 71.61K (71608) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=52) [2 instances]:(Total: 182.890ms, non-child: 44.515us, % non-child: 0.02%) - ConvertRowBatchTime: 33.745us - InactiveTotalTime: 182.846ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 2.14 K/sec - TotalTime: 182.890ms Buffer pool [2 instances]: - AllocTime: 2.094us - 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: 816.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 182.781ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 182.850ms - DataWaitTime: 182.846ms Enqueue [2 instances]: - DispatchTime: (Avg: 232.928us ; Min: 7.366us ; Max: 458.490us ; Number of samples: 2) - DeserializeRowBatchTime: 10.894us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F27: Instance f04aed6e613865a1:acb29fb100000017 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 704.345ms - Prepare Finished: 16.325ms (16.325ms) - Open Finished: 493.046ms (476.721ms) - First Batch Produced: 493.082ms (36.080us) - First Batch Sent: 493.165ms (82.658us) - ExecInternal Finished: 704.345ms (211.180ms) - MemoryUsage (500.000ms): 17.12 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 135.558ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 32 (32) - TotalThreadsTotalWallClockTime: 687.975ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 97.485ms - TotalThreadsVoluntaryContextSwitches: 56 (56) - TotalTime: 689.142ms Fragment Instance Lifecycle Timings: - ExecTime: 211.265ms - ExecTreeExecTime: 35.137us - OpenTime: 476.715ms - ExecTreeOpenTime: 135.559ms - PrepareTime: 1.149ms - ExecTreePrepareTime: 23.158us Hash Join Builder (join_node_id=26): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 81.592us - HashTablesBuildTime: 85.436us - InactiveTotalTime: 210.957ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 212.493ms Buffer pool: - AllocTime: 29.210us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.756us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 72.49K (72489) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=52): Node Lifecycle Event Timeline: 493.185ms - Open Started: 356.257ms (356.257ms) - Open Finished: 491.815ms (135.558ms) - First Batch Requested: 493.048ms (1.232ms) - First Batch Returned: 493.082ms (33.841us) - Last Batch Returned: 493.082ms (148.000ns) - Closed: 493.185ms (102.848us) - ConvertRowBatchTime: 28.844us - InactiveTotalTime: 135.553ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 2.69 K/sec - TotalTime: 135.593ms Buffer pool: - AllocTime: 2.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: 1.051us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 135.553ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 135.557ms - DataWaitTime: 135.553ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 458.490us ; Min: 458.490us ; Max: 458.490us ; Number of samples: 1) - DeserializeRowBatchTime: 12.004us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000018 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 615.985ms - Prepare Finished: 139.304ms (139.304ms) - Open Finished: 492.924ms (353.619ms) - First Batch Produced: 493.101ms (177.253us) - First Batch Sent: 493.195ms (93.653us) - ExecInternal Finished: 615.985ms (122.790ms) - MemoryUsage (500.000ms): 17.12 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 230.144ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 5 (5) - TotalThreadsTotalWallClockTime: 476.647ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 85.603ms - TotalThreadsVoluntaryContextSwitches: 44 (44) - TotalTime: 476.772ms Fragment Instance Lifecycle Timings: - ExecTime: 123.037ms - ExecTreeExecTime: 175.254us - OpenTime: 353.614ms - ExecTreeOpenTime: 230.014ms - PrepareTime: 98.855us - ExecTreePrepareTime: 39.622us Hash Join Builder (join_node_id=26): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 92.586us - HashTablesBuildTime: 90.992us - InactiveTotalTime: 122.589ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 123.661ms Buffer pool: - AllocTime: 50.232us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 46.901us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 70.73K (70727) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=52): Node Lifecycle Event Timeline: 493.218ms - Open Started: 262.145ms (262.145ms) - Open Finished: 492.158ms (230.013ms) - First Batch Requested: 492.926ms (768.069us) - First Batch Returned: 493.100ms (173.712us) - Last Batch Returned: 493.100ms (143.000ns) - Closed: 493.218ms (117.576us) - ConvertRowBatchTime: 38.646us - InactiveTotalTime: 230.139ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 1.58 K/sec - TotalTime: 230.188ms Buffer pool: - AllocTime: 1.788us - 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: 581.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 230.009ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 230.143ms - DataWaitTime: 230.139ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 7.366us ; Min: 7.366us ; Max: 7.366us ; Number of samples: 1) - DeserializeRowBatchTime: 9.785us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F22:(Total: 477.426ms, non-child: 99.667ms, % non-child: 20.88%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s352ms max:1s352ms mean: 1s352ms stddev:0.000ns execution rates: min:1.59 MB/sec max:1.59 MB/sec mean:1.59 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 881.72 KB (902884) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 899.447us - TotalStorageWaitTime: 347.235ms - TotalThreadsInvoluntaryContextSwitches: 9 (9) - TotalThreadsTotalWallClockTime: 477.269ms - TotalThreadsSysTime: 4.262ms - TotalThreadsUserTime: 39.814ms - TotalThreadsVoluntaryContextSwitches: 28 (28) - TotalTime: 477.426ms Fragment Instance Lifecycle Timings: - ExecTime: 377.646ms - ExecTreeExecTime: 376.662ms - OpenTime: 99.626ms - ExecTreeOpenTime: 50.745us - PrepareTime: 144.297us - ExecTreePrepareTime: 25.486us KrpcDataStreamSender (dst_id=52):(Total: 1.006ms, non-child: 106.889us, % non-child: 10.62%) - NetworkThroughput: (Avg: 14.24 MB/sec ; Min: 6.57 MB/sec ; Max: 21.91 MB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 192.450us ; Min: 97.710us ; Max: 425.352us ; Number of samples: 4) - RpcRecvrTime: (Avg: 138.116us ; Min: 22.198us ; Max: 478.000us ; Number of samples: 4) - EosSent: 2 (2) - InactiveTotalTime: 899.447us - PeakMemoryUsage: 34.88 KB (35720) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.576us - TotalBytesSent: 5.72 KB (5862) - TotalTime: 1.006ms - UncompressedRowBatchSize: 12.12 KB (12410) HDFS_SCAN_NODE (id=24):(Total: 376.752ms, non-child: 376.752ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 342.217ms ; Min: 342.217ms ; Max: 342.217ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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: 24.409ms ; Min: 24.409ms ; Max: 24.409ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 55.034us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 422.458us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 1.86 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 968.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 347.235ms - TotalRawHdfsOpenFileTime: 105.732ms - TotalRawHdfsReadTime: 244.840ms - TotalReadThroughput: 0.00 /sec - TotalTime: 376.752ms Buffer pool: - AllocTime: 126.379us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 122.035us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F22: Instance f04aed6e613865a1:acb29fb100000016 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 492.363ms - Prepare Finished: 15.073ms (15.073ms) - Open Finished: 114.701ms (99.628ms) - First Batch Produced: 491.258ms (376.557ms) - First Batch Sent: 491.286ms (27.771us) - ExecInternal Finished: 492.363ms (1.077ms) - MemoryUsage (500.000ms): 560.44 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.01 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 881.72 KB (902884) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 899.447us - TotalStorageWaitTime: 347.235ms - TotalThreadsInvoluntaryContextSwitches: 9 (9) - TotalThreadsTotalWallClockTime: 477.269ms - TotalThreadsSysTime: 4.262ms - TotalThreadsUserTime: 39.814ms - TotalThreadsVoluntaryContextSwitches: 28 (28) - TotalTime: 477.426ms Fragment Instance Lifecycle Timings: - ExecTime: 377.646ms - ExecTreeExecTime: 376.662ms - OpenTime: 99.626ms - ExecTreeOpenTime: 50.745us - PrepareTime: 144.297us - ExecTreePrepareTime: 25.486us KrpcDataStreamSender (dst_id=52): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 14.24 MB/sec ; Min: 6.57 MB/sec ; Max: 21.91 MB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 192.450us ; Min: 97.710us ; Max: 425.352us ; Number of samples: 4) - RpcRecvrTime: (Avg: 138.116us ; Min: 22.198us ; Max: 478.000us ; Number of samples: 4) - EosSent: 2 (2) - InactiveTotalTime: 899.447us - PeakMemoryUsage: 34.88 KB (35720) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.576us - TotalBytesSent: 5.72 KB (5862) - TotalTime: 1.006ms - UncompressedRowBatchSize: 12.12 KB (12410) HDFS_SCAN_NODE (id=24): Table Name: tpcds_parquet.date_dim 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 491.429ms - Open Started: 114.647ms (114.647ms) - Open Finished: 114.697ms (49.778us) - First Batch Requested: 114.702ms (5.379us) - First Batch Returned: 491.258ms (376.555ms) - Last Batch Returned: 491.393ms (135.855us) - Closed: 491.429ms (35.362us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 342.217ms ; Min: 342.217ms ; Max: 342.217ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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: 24.409ms ; Min: 24.409ms ; Max: 24.409ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 55.034us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 422.458us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 1.86 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 968.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 347.235ms - TotalRawHdfsOpenFileTime: 105.732ms - TotalRawHdfsReadTime: 244.840ms - TotalReadThroughput: 0.00 /sec - TotalTime: 376.752ms Buffer pool: - AllocTime: 126.379us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 122.035us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F28 [2 instances]:(Total: 582.515ms, non-child: 268.931ms, % non-child: 46.17%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s352ms mean: 1s351ms stddev:460.950us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.02 MB (18900096) - PeakReservation: 18.00 MB (18874368) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 50.00K (50000) - TotalNetworkReceiveTime: 237.132ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 20 (20) - TotalThreadsTotalWallClockTime: 578.118ms - TotalThreadsSysTime: 7.521ms - TotalThreadsUserTime: 90.474ms - TotalThreadsVoluntaryContextSwitches: 314 (314) - TotalTime: 582.515ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 152.759ms - ExecTreeExecTime: 81.030ms - OpenTime: 425.363ms - ExecTreeOpenTime: 160.709ms - PrepareTime: 4.374ms - ExecTreePrepareTime: 71.094us Hash Join Builder (join_node_id=25) [2 instances]:(Total: 71.857ms, non-child: 8.107ms, % non-child: 11.28%) - BuildRows: 50.00K (50000) - BuildRowsPartitionTime: 5.522ms - HashTablesBuildTime: 2.247ms - InactiveTotalTime: 63.750ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 18.02 MB (18891904) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 71.857ms Buffer pool [2 instances]: - AllocTime: 54.763us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 18.00 MB (18874368) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 18.00 MB (18874368) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 18.00 MB (18874368) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 49.520us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - Probes: 121.24K (121243) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=51) [2 instances]:(Total: 241.726ms, non-child: 4.990ms, % non-child: 2.06%) - ConvertRowBatchTime: 4.297ms - InactiveTotalTime: 236.736ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 50.00K (50000) - RowsReturnedRate: 215.71 K/sec - TotalTime: 241.726ms Buffer pool [2 instances]: - AllocTime: 423.387us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 10.62 MB (11141120) - CumulativeAllocations: 544 (544) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 253.524us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 160.703ms - TotalBytesDequeued: 7.65 MB (8019889) - TotalGetBatchTime: 237.091ms - DataWaitTime: 236.736ms Enqueue [2 instances]: - DispatchTime: (Avg: 11.953us ; Min: 3.117us ; Max: 201.605us ; Number of samples: 544) - DeserializeRowBatchTime: 5.550ms - TotalBatchesEnqueued: 272 (272) - TotalBatchesReceived: 272 (272) - TotalBytesReceived: 4.47 MB (4692183) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F28: Instance f04aed6e613865a1:acb29fb10000001a (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 704.341ms - Prepare Finished: 15.111ms (15.111ms) - Open Finished: 506.525ms (491.414ms) - First Batch Produced: 509.532ms (3.006ms) - First Batch Sent: 509.775ms (243.421us) - ExecInternal Finished: 704.341ms (194.566ms) - MemoryUsage (500.000ms): 17.12 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.02 MB (18900096) - PeakReservation: 18.00 MB (18874368) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 49.65K (49649) - TotalNetworkReceiveTime: 187.056ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 21 (21) - TotalThreadsTotalWallClockTime: 689.198ms - TotalThreadsSysTime: 11.230ms - TotalThreadsUserTime: 85.846ms - TotalThreadsVoluntaryContextSwitches: 338 (338) - TotalTime: 689.589ms Fragment Instance Lifecycle Timings: - ExecTime: 197.793ms - ExecTreeExecTime: 81.451ms - OpenTime: 491.410ms - ExecTreeOpenTime: 110.459ms - PrepareTime: 362.168us - ExecTreePrepareTime: 119.439us Hash Join Builder (join_node_id=25): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRows: 49.65K (49649) - BuildRowsPartitionTime: 5.618ms - HashTablesBuildTime: 2.552ms - InactiveTotalTime: 107.943ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 18.02 MB (18891904) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 116.455ms Buffer pool: - AllocTime: 51.948us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 18.00 MB (18874368) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 18.00 MB (18874368) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 18.00 MB (18874368) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 45.632us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - Probes: 121.77K (121773) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=51): Node Lifecycle Event Timeline: 593.754ms - Open Started: 395.857ms (395.857ms) - Open Finished: 506.315ms (110.457ms) - First Batch Requested: 506.527ms (211.985us) - First Batch Returned: 509.531ms (3.003ms) - Last Batch Returned: 593.665ms (84.134ms) - Closed: 593.754ms (89.583us) - ConvertRowBatchTime: 4.495ms - InactiveTotalTime: 186.616ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 49.65K (49649) - RowsReturnedRate: 258.73 K/sec - TotalTime: 191.895ms Buffer pool: - AllocTime: 402.112us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 10.55 MB (11059200) - CumulativeAllocations: 540 (540) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 235.718us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 110.453ms - TotalBytesDequeued: 7.59 MB (7960901) - TotalGetBatchTime: 187.013ms - DataWaitTime: 186.616ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 11.657us ; Min: 3.117us ; Max: 177.341us ; Number of samples: 270) - DeserializeRowBatchTime: 5.426ms - TotalBatchesEnqueued: 270 (270) - TotalBatchesReceived: 270 (270) - TotalBytesReceived: 4.44 MB (4657740) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000001b (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 616.119ms - Prepare Finished: 149.046ms (149.046ms) - Open Finished: 508.365ms (359.319ms) - First Batch Produced: 510.508ms (2.143ms) - First Batch Sent: 510.687ms (178.602us) - ExecInternal Finished: 616.119ms (105.432ms) - MemoryUsage (500.000ms): 17.12 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.02 MB (18900096) - PeakReservation: 18.00 MB (18874368) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 50.35K (50351) - TotalNetworkReceiveTime: 287.208ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 19 (19) - TotalThreadsTotalWallClockTime: 467.037ms - TotalThreadsSysTime: 3.812ms - TotalThreadsUserTime: 95.103ms - TotalThreadsVoluntaryContextSwitches: 290 (290) - TotalTime: 475.442ms Fragment Instance Lifecycle Timings: - ExecTime: 107.724ms - ExecTreeExecTime: 80.609ms - OpenTime: 359.316ms - ExecTreeOpenTime: 210.959ms - PrepareTime: 8.387ms - ExecTreePrepareTime: 22.750us Hash Join Builder (join_node_id=25): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRows: 50.35K (50351) - BuildRowsPartitionTime: 5.426ms - HashTablesBuildTime: 1.943ms - InactiveTotalTime: 19.556ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 18.02 MB (18891904) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 27.259ms Buffer pool: - AllocTime: 57.579us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 18.00 MB (18874368) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 18.00 MB (18874368) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 18.00 MB (18874368) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 53.408us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - Probes: 120.71K (120713) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=51): Node Lifecycle Event Timeline: 594.522ms - Open Started: 297.255ms (297.255ms) - Open Finished: 508.213ms (210.957ms) - First Batch Requested: 508.366ms (153.551us) - First Batch Returned: 510.507ms (2.141ms) - Last Batch Returned: 594.477ms (83.969ms) - Closed: 594.522ms (44.805us) - ConvertRowBatchTime: 4.100ms - InactiveTotalTime: 286.856ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 50.35K (50351) - RowsReturnedRate: 172.70 K/sec - TotalTime: 291.557ms Buffer pool: - AllocTime: 444.662us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 10.70 MB (11223040) - CumulativeAllocations: 548 (548) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 271.331us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 210.952ms - TotalBytesDequeued: 7.70 MB (8078877) - TotalGetBatchTime: 287.168ms - DataWaitTime: 286.856ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 12.244us ; Min: 3.726us ; Max: 201.605us ; Number of samples: 274) - DeserializeRowBatchTime: 5.674ms - TotalBatchesEnqueued: 274 (274) - TotalBatchesReceived: 274 (274) - TotalBytesReceived: 4.51 MB (4726627) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F20:(Total: 579.152ms, non-child: 90.852ms, % non-child: 15.69%) split sizes: min: 5.49 MB, max: 5.49 MB, avg: 5.49 MB, stddev: 0 completion times: min:1s352ms max:1s352ms mean: 1s352ms stddev:0.000ns execution rates: min:4.06 MB/sec max:4.06 MB/sec mean:4.06 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s352ms - ExchangeScanRatio: 2.00 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 12.85 MB (13476867) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 100.00K (100000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.855ms - TotalStorageWaitTime: 389.835ms - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 578.969ms - TotalThreadsSysTime: 11.354ms - TotalThreadsUserTime: 117.127ms - TotalThreadsVoluntaryContextSwitches: 106 (106) - TotalTime: 579.152ms Fragment Instance Lifecycle Timings: - ExecTime: 488.385ms - ExecTreeExecTime: 406.874ms - OpenTime: 90.588ms - ExecTreeOpenTime: 66.046us - PrepareTime: 102.553us - ExecTreePrepareTime: 16.442us KrpcDataStreamSender (dst_id=51):(Total: 81.353ms, non-child: 77.498ms, % non-child: 95.26%) - NetworkThroughput: (Avg: 415.93 MB/sec ; Min: 6.51 MB/sec ; Max: 910.14 MB/sec ; Number of samples: 544) - RpcNetworkTime: (Avg: 57.914us ; Min: 18.026us ; Max: 2.561ms ; Number of samples: 546) - RpcRecvrTime: (Avg: 34.587us ; Min: 9.286us ; Max: 224.953us ; Number of samples: 546) - EosSent: 2 (2) - InactiveTotalTime: 3.855ms - PeakMemoryUsage: 563.48 KB (577006) - RowsSent: 100.00K (100000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.170ms - TotalBytesSent: 8.95 MB (9384367) - TotalTime: 81.353ms - UncompressedRowBatchSize: 15.30 MB (16039778) HDFS_SCAN_NODE (id=22):(Total: 406.947ms, non-child: 406.947ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 353.758ms ; Min: 353.758ms ; Max: 353.758ms ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 1 (1) - CachedFileHandlesMissCount: 8 (8) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.973ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 4.330ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 11.71 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 100.00K (100000) - RowsReturnedRate: 245.73 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 389.835ms - TotalRawHdfsOpenFileTime: 272.210ms - TotalRawHdfsReadTime: 332.057ms - TotalReadThroughput: 0.00 /sec - TotalTime: 406.947ms Buffer pool: - AllocTime: 246.112us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 236.899us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F20: Instance f04aed6e613865a1:acb29fb100000019 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.49 MB Fragment Instance Lifecycle Event Timeline: 593.735ms - Prepare Finished: 14.710ms (14.710ms) - Open Finished: 105.300ms (90.590ms) - First Batch Produced: 505.826ms (400.526ms) - First Batch Sent: 507.730ms (1.903ms) - ExecInternal Finished: 593.735ms (86.004ms) - MemoryUsage (500.000ms): 8.01 MB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s352ms - ExchangeScanRatio: 2.30 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 12.85 MB (13476867) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 100.00K (100000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.855ms - TotalStorageWaitTime: 389.835ms - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 578.969ms - TotalThreadsSysTime: 11.354ms - TotalThreadsUserTime: 117.127ms - TotalThreadsVoluntaryContextSwitches: 106 (106) - TotalTime: 579.152ms Fragment Instance Lifecycle Timings: - ExecTime: 488.385ms - ExecTreeExecTime: 406.874ms - OpenTime: 90.588ms - ExecTreeOpenTime: 66.046us - PrepareTime: 102.553us - ExecTreePrepareTime: 16.442us KrpcDataStreamSender (dst_id=51): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 415.93 MB/sec ; Min: 6.51 MB/sec ; Max: 910.14 MB/sec ; Number of samples: 544) - RpcNetworkTime: (Avg: 57.914us ; Min: 18.026us ; Max: 2.561ms ; Number of samples: 546) - RpcRecvrTime: (Avg: 34.587us ; Min: 9.286us ; Max: 224.953us ; Number of samples: 546) - EosSent: 2 (2) - InactiveTotalTime: 3.855ms - PeakMemoryUsage: 563.48 KB (577006) - RowsSent: 100.00K (100000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 26.170ms - TotalBytesSent: 8.95 MB (9384367) - TotalTime: 81.353ms - UncompressedRowBatchSize: 15.30 MB (16039778) HDFS_SCAN_NODE (id=22): Table Name: tpcds_parquet.customer 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 593.497ms - Open Started: 105.227ms (105.227ms) - Open Finished: 105.292ms (64.543us) - First Batch Requested: 105.302ms (10.266us) - First Batch Returned: 505.825ms (400.523ms) - Last Batch Returned: 593.462ms (87.637ms) - Closed: 593.497ms (35.011us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 353.758ms ; Min: 353.758ms ; Max: 353.758ms ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 1 (1) - CachedFileHandlesMissCount: 8 (8) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.973ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 4.330ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 11.71 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 100.00K (100000) - RowsReturnedRate: 245.73 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 389.835ms - TotalRawHdfsOpenFileTime: 272.210ms - TotalRawHdfsReadTime: 332.057ms - TotalReadThroughput: 0.00 /sec - TotalTime: 406.947ms Buffer pool: - AllocTime: 246.112us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 236.899us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F29 [3 instances]:(Total: 1s291ms, non-child: 232.771ms, % non-child: 18.02%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.409ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 3.00 MB (3146880) - PeakReservation: 2.88 MB (3014656) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 1.39K (1392) - TotalNetworkReceiveTime: 1s012ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 24 (24) - TotalThreadsTotalWallClockTime: 1s291ms - TotalThreadsSysTime: 5.465ms - TotalThreadsUserTime: 121.091ms - TotalThreadsVoluntaryContextSwitches: 51 (51) - TotalTime: 1s291ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 47.523ms - ExecTreeExecTime: 2.193ms - OpenTime: 1s243ms - ExecTreeOpenTime: 1s010ms - PrepareTime: 98.085us - ExecTreePrepareTime: 40.885us Hash Join Builder (join_node_id=29) [3 instances]:(Total: 46.038ms, non-child: 1.384ms, % non-child: 3.01%) - BuildRows: 1.39K (1392) - BuildRowsPartitionTime: 351.684us - HashTablesBuildTime: 180.621us - InactiveTotalTime: 44.653ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.90 MB (3040384) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 46.038ms Buffer pool [3 instances]: - AllocTime: 70.860us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.12 MB (2228224) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 2.88 MB (3014656) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.12 MB (2228224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 65.577us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 3.07K (3072) - HashCollisions: 0 (0) - Probes: 1.57K (1566) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=49) [3 instances]:(Total: 1s012ms, non-child: 194.197us, % non-child: 0.02%) - ConvertRowBatchTime: 169.756us - InactiveTotalTime: 1s012ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 1.39K (1392) - RowsReturnedRate: 1.38 K/sec - TotalTime: 1s012ms Buffer pool [3 instances]: - AllocTime: 5.278us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 371.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 1s010ms - TotalBytesDequeued: 72.05 KB (73776) - TotalGetBatchTime: 1s012ms - DataWaitTime: 1s012ms Enqueue [3 instances]: - DispatchTime: (Avg: 33.560us ; Min: 13.481us ; Max: 60.685us ; Number of samples: 9) - DeserializeRowBatchTime: 67.802us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 29.52 KB (30229) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F29: Instance f04aed6e613865a1:acb29fb100000025 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 473.415us (473.415us) - Open Finished: 1s288ms (1s287ms) - First Batch Produced: 1s290ms (2.218ms) - First Batch Sent: 1s290ms (269.841us) - ExecInternal Finished: 1s335ms (45.122ms) - MemoryUsage (500.000ms): 25.12 KB, 25.12 KB, 2.90 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 3.00 MB (3146880) - PeakReservation: 2.88 MB (3014656) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 1.36K (1364) - TotalNetworkReceiveTime: 1s104ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 14 (14) - TotalThreadsTotalWallClockTime: 1s335ms - TotalThreadsSysTime: 4.085ms - TotalThreadsUserTime: 106.229ms - TotalThreadsVoluntaryContextSwitches: 64 (64) - TotalTime: 1s335ms Fragment Instance Lifecycle Timings: - ExecTime: 47.552ms - ExecTreeExecTime: 2.254ms - OpenTime: 1s287ms - ExecTreeOpenTime: 1s102ms - PrepareTime: 57.812us - ExecTreePrepareTime: 21.574us Hash Join Builder (join_node_id=29): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 1.36K (1364) - BuildRowsPartitionTime: 314.465us - HashTablesBuildTime: 154.024us - InactiveTotalTime: 44.711ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.90 MB (3040384) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 45.911ms Buffer pool: - AllocTime: 46.652us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.12 MB (2228224) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 2.88 MB (3014656) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.12 MB (2228224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 41.553us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.69K (2688) - HashCollisions: 0 (0) - Probes: 1.54K (1541) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=49): Node Lifecycle Event Timeline: 1s290ms - Open Started: 184.702ms (184.702ms) - Open Finished: 1s287ms (1s102ms) - First Batch Requested: 1s288ms (583.010us) - First Batch Returned: 1s290ms (2.215ms) - Last Batch Returned: 1s290ms (309.790us) - Closed: 1s290ms (71.845us) - ConvertRowBatchTime: 157.083us - InactiveTotalTime: 1s104ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 1.36K (1364) - RowsReturnedRate: 1.23 K/sec - TotalTime: 1s105ms Buffer pool: - AllocTime: 6.230us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.114us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 1s102ms - TotalBytesDequeued: 70.60 KB (72292) - TotalGetBatchTime: 1s104ms - DataWaitTime: 1s104ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 40.145us ; Min: 18.898us ; Max: 60.685us ; Number of samples: 3) - DeserializeRowBatchTime: 67.740us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 28.94 KB (29631) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000027 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s334ms - Prepare Finished: 599.521us (599.521us) - Open Finished: 1s287ms (1s286ms) - First Batch Produced: 1s289ms (2.214ms) - First Batch Sent: 1s289ms (342.029us) - ExecInternal Finished: 1s334ms (45.066ms) - MemoryUsage (500.000ms): 25.12 KB, 25.12 KB, 2.90 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 3.00 MB (3146880) - PeakReservation: 2.88 MB (3014656) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 1.43K (1429) - TotalNetworkReceiveTime: 957.433ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 25 (25) - TotalThreadsTotalWallClockTime: 1s334ms - TotalThreadsSysTime: 4.017ms - TotalThreadsUserTime: 128.559ms - TotalThreadsVoluntaryContextSwitches: 73 (73) - TotalTime: 1s334ms Fragment Instance Lifecycle Timings: - ExecTime: 47.591ms - ExecTreeExecTime: 2.268ms - OpenTime: 1s286ms - ExecTreeOpenTime: 955.351ms - PrepareTime: 98.515us - ExecTreePrepareTime: 42.761us Hash Join Builder (join_node_id=29): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 1.43K (1429) - BuildRowsPartitionTime: 422.370us - HashTablesBuildTime: 199.661us - InactiveTotalTime: 44.571ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.90 MB (3040384) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 46.001ms Buffer pool: - AllocTime: 105.587us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.12 MB (2228224) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 2.88 MB (3014656) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.12 MB (2228224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 99.889us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.20K (3200) - HashCollisions: 0 (0) - Probes: 1.61K (1613) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=49): Node Lifecycle Event Timeline: 1s289ms - Open Started: 331.166ms (331.166ms) - Open Finished: 1s286ms (955.349ms) - First Batch Requested: 1s287ms (587.183us) - First Batch Returned: 1s289ms (2.212ms) - Last Batch Returned: 1s289ms (399.385us) - Closed: 1s289ms (112.935us) - ConvertRowBatchTime: 170.994us - InactiveTotalTime: 957.423ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 1.43K (1429) - RowsReturnedRate: 1.49 K/sec - TotalTime: 957.617ms Buffer pool: - AllocTime: 5.137us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - 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: 955.342ms - TotalBytesDequeued: 73.96 KB (75737) - TotalGetBatchTime: 957.431ms - DataWaitTime: 957.423ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 29.739us ; Min: 16.941us ; Max: 43.505us ; Number of samples: 3) - DeserializeRowBatchTime: 70.696us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 30.31 KB (31035) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000026 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s335ms - Prepare Finished: 130.464ms (130.464ms) - Open Finished: 1s288ms (1s157ms) - First Batch Produced: 1s290ms (2.008ms) - First Batch Sent: 1s290ms (247.603us) - ExecInternal Finished: 1s335ms (45.187ms) - MemoryUsage (500.000ms): 25.12 KB, 25.12 KB, 2.90 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 3.00 MB (3146880) - PeakReservation: 2.88 MB (3014656) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 1.38K (1383) - TotalNetworkReceiveTime: 975.342ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1s205ms - TotalThreadsSysTime: 8.293ms - TotalThreadsUserTime: 128.487ms - TotalThreadsVoluntaryContextSwitches: 16 (16) - TotalTime: 1s205ms Fragment Instance Lifecycle Timings: - ExecTime: 47.427ms - ExecTreeExecTime: 2.058ms - OpenTime: 1s157ms - ExecTreeOpenTime: 973.482ms - PrepareTime: 137.928us - ExecTreePrepareTime: 58.322us Hash Join Builder (join_node_id=29): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 1.38K (1383) - BuildRowsPartitionTime: 318.219us - HashTablesBuildTime: 188.178us - InactiveTotalTime: 44.678ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.90 MB (3040384) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 46.203ms Buffer pool: - AllocTime: 60.343us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 2.12 MB (2228224) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 2.88 MB (3014656) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.12 MB (2228224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 55.291us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 3.33K (3328) - HashCollisions: 0 (0) - Probes: 1.54K (1544) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=49): Node Lifecycle Event Timeline: 1s290ms - Open Started: 313.825ms (313.825ms) - Open Finished: 1s287ms (973.480ms) - First Batch Requested: 1s288ms (776.746us) - First Batch Returned: 1s290ms (2.005ms) - Last Batch Returned: 1s290ms (302.058us) - Closed: 1s290ms (110.901us) - ConvertRowBatchTime: 181.191us - InactiveTotalTime: 975.330ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 1.38K (1383) - RowsReturnedRate: 1.42 K/sec - TotalTime: 975.538ms Buffer pool: - AllocTime: 4.467us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - 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: 973.475ms - TotalBytesDequeued: 71.58 KB (73299) - TotalGetBatchTime: 975.340ms - DataWaitTime: 975.330ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 30.797us ; Min: 13.481us ; Max: 49.173us ; Number of samples: 3) - DeserializeRowBatchTime: 64.970us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 29.32 KB (30021) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F17 [3 instances]:(Total: 1s233ms, non-child: 559.585ms, % non-child: 45.35%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.462ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.46 MB (36134922) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 1.39K (1392) - TotalNetworkReceiveTime: 663.833ms - TotalNetworkSendTime: 243.196us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 77 (77) - TotalThreadsTotalWallClockTime: 1s230ms - TotalThreadsSysTime: 15.812ms - TotalThreadsUserTime: 421.995ms - TotalThreadsVoluntaryContextSwitches: 59 (59) - TotalTime: 1s233ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 1.628ms - ExecTreeExecTime: 734.049us - OpenTime: 1s228ms - ExecTreeOpenTime: 672.171ms - PrepareTime: 3.642ms - ExecTreePrepareTime: 312.827us KrpcDataStreamSender (dst_id=49) [3 instances]:(Total: 1.038ms, non-child: 795.534us, % non-child: 76.59%) - NetworkThroughput: (Avg: 91.37 MB/sec ; Min: 52.66 MB/sec ; Max: 140.84 MB/sec ; Number of samples: 9) - RpcNetworkTime: (Avg: 91.856us ; Min: 56.643us ; Max: 189.515us ; Number of samples: 18) - RpcRecvrTime: (Avg: 41.645us ; Min: 12.725us ; Max: 93.129us ; Number of samples: 18) - EosSent: 3 (3) - InactiveTotalTime: 243.196us - PeakMemoryUsage: 163.85 KB (167786) - RowsSent: 1.39K (1392) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 176.844us - TotalBytesSent: 29.52 KB (30229) - TotalTime: 1.038ms - UncompressedRowBatchSize: 72.05 KB (73776) UNION_NODE (id=0) [3 instances]:(Total: 673.215ms, non-child: 121.545us, % non-child: 0.02%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.39K (1392) - RowsReturnedRate: 2.10 K/sec - TotalTime: 673.215ms AGGREGATION_NODE (id=47) [3 instances]:(Total: 673.093ms, non-child: 9.037ms, % non-child: 1.34%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.39K (1392) - RowsReturnedRate: 2.10 K/sec - TotalTime: 673.093ms GroupingAggregator 0 [3 instances]: - BuildTime: 7.241ms - GetResultsTime: 366.866us - HTResizeTime: 88.489us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.39K (1392) - SpilledPartitions: 0 (0) Buffer pool [3 instances]: - AllocTime: 152.618us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 140.074us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.39K (1392) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=46) [3 instances]:(Total: 664.055ms, non-child: 241.201us, % non-child: 0.04%) - ConvertRowBatchTime: 200.710us - InactiveTotalTime: 663.814ms - PeakMemoryUsage: 338.67 KB (346794) - RowsReturned: 1.39K (1392) - RowsReturnedRate: 2.13 K/sec - TotalTime: 664.055ms Buffer pool [3 instances]: - AllocTime: 16.265us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 386.67 KB (395946) - CumulativeAllocations: 21 (21) - EncryptionTime: 0.000ns - PeakReservation: 338.67 KB (346794) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 338.67 KB (346794) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.857us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 663.371ms - TotalBytesDequeued: 241.15 KB (246939) - TotalGetBatchTime: 663.830ms - DataWaitTime: 663.814ms Enqueue [3 instances]: - DispatchTime: (Avg: 19.881us ; Min: 7.510us ; Max: 33.457us ; Number of samples: 32) - DeserializeRowBatchTime: 278.028us - TotalBatchesEnqueued: 10 (10) - TotalBatchesReceived: 10 (10) - TotalBytesReceived: 134.79 KB (138030) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F17: Instance f04aed6e613865a1:acb29fb100000022 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s287ms - Prepare Finished: 1.532ms (1.532ms) - Open Finished: 1s285ms (1s284ms) - First Batch Produced: 1s286ms (544.313us) - First Batch Sent: 1s286ms (266.891us) - ExecInternal Finished: 1s287ms (982.270us) - MemoryUsage (500.000ms): 125.34 KB, 125.34 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.47 MB (36140384) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 1.42K (1424) - TotalNetworkReceiveTime: 768.284ms - TotalNetworkSendTime: 275.670us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 71 (71) - TotalThreadsTotalWallClockTime: 1s286ms - TotalThreadsSysTime: 19.771ms - TotalThreadsUserTime: 412.959ms - TotalThreadsVoluntaryContextSwitches: 30 (30) - TotalTime: 1s287ms Fragment Instance Lifecycle Timings: - ExecTime: 1.777ms - ExecTreeExecTime: 831.059us - OpenTime: 1s284ms - ExecTreeOpenTime: 774.663ms - PrepareTime: 806.500us - ExecTreePrepareTime: 368.113us KrpcDataStreamSender (dst_id=49): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 71.39 MB/sec ; Min: 52.66 MB/sec ; Max: 104.57 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 108.233us ; Min: 61.200us ; Max: 189.515us ; Number of samples: 6) - RpcRecvrTime: (Avg: 56.411us ; Min: 20.288us ; Max: 93.129us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 275.670us - PeakMemoryUsage: 166.67 KB (170672) - RowsSent: 1.42K (1424) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 192.473us - TotalBytesSent: 30.15 KB (30878) - TotalTime: 1.292ms - UncompressedRowBatchSize: 73.70 KB (75472) UNION_NODE (id=0): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s287ms - Open Started: 511.314ms (511.314ms) - Open Finished: 1s285ms (774.662ms) - First Batch Requested: 1s285ms (20.234us) - First Batch Returned: 1s286ms (541.609us) - Last Batch Returned: 1s287ms (557.565us) - Closed: 1s287ms (132.369us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.42K (1424) - RowsReturnedRate: 1.83 K/sec - TotalTime: 775.859ms AGGREGATION_NODE (id=47): Node Lifecycle Event Timeline: 1s287ms - Open Started: 511.316ms (511.316ms) - Open Finished: 1s285ms (774.658ms) - First Batch Requested: 1s286ms (29.082us) - First Batch Returned: 1s286ms (36.292us) - Last Batch Returned: 1s287ms (1.013ms) - Closed: 1s287ms (40.588us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.42K (1424) - RowsReturnedRate: 1.83 K/sec - TotalTime: 775.727ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 5.421ms - GetResultsTime: 445.917us - HTResizeTime: 48.788us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.42K (1424) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 110.301us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 99.147us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.42K (1424) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=46): Node Lifecycle Event Timeline: 1s285ms - Open Started: 511.317ms (511.317ms) - Open Finished: 1s278ms (767.669ms) - First Batch Requested: 1s279ms (695.471us) - First Batch Returned: 1s280ms (735.475us) - Last Batch Returned: 1s285ms (5.367ms) - Closed: 1s285ms (161.076us) - ConvertRowBatchTime: 160.896us - InactiveTotalTime: 768.268ms - PeakMemoryUsage: 344.00 KB (352256) - RowsReturned: 1.42K (1424) - RowsReturnedRate: 1.85 K/sec - TotalTime: 768.465ms Buffer pool: - AllocTime: 17.979us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 392.00 KB (401408) - CumulativeAllocations: 22 (22) - EncryptionTime: 0.000ns - PeakReservation: 344.00 KB (352256) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 344.00 KB (352256) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 5.870us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 767.666ms - TotalBytesDequeued: 246.79 KB (252713) - TotalGetBatchTime: 768.281ms - DataWaitTime: 768.268ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 17.770us ; Min: 8.109us ; Max: 29.140us ; Number of samples: 11) - DeserializeRowBatchTime: 285.007us - TotalBatchesEnqueued: 11 (11) - TotalBatchesReceived: 11 (11) - TotalBytesReceived: 138.02 KB (141336) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000023 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s290ms - Prepare Finished: 26.733ms (26.733ms) - Open Finished: 1s288ms (1s262ms) - First Batch Produced: 1s289ms (385.220us) - First Batch Sent: 1s289ms (261.887us) - ExecInternal Finished: 1s290ms (708.843us) - MemoryUsage (500.000ms): 125.34 KB, 125.34 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.47 MB (36140384) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 1.37K (1372) - TotalNetworkReceiveTime: 675.026ms - TotalNetworkSendTime: 198.581us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 91 (91) - TotalThreadsTotalWallClockTime: 1s263ms - TotalThreadsSysTime: 15.474ms - TotalThreadsUserTime: 471.254ms - TotalThreadsVoluntaryContextSwitches: 48 (48) - TotalTime: 1s273ms Fragment Instance Lifecycle Timings: - ExecTime: 1.345ms - ExecTreeExecTime: 607.628us - OpenTime: 1s262ms - ExecTreeOpenTime: 684.855ms - PrepareTime: 9.892ms - ExecTreePrepareTime: 453.049us KrpcDataStreamSender (dst_id=49): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 120.77 MB/sec ; Min: 101.26 MB/sec ; Max: 140.84 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 70.517us ; Min: 56.643us ; Max: 90.362us ; Number of samples: 6) - RpcRecvrTime: (Avg: 28.470us ; Min: 12.725us ; Max: 45.532us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 198.581us - PeakMemoryUsage: 162.09 KB (165982) - RowsSent: 1.37K (1372) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 139.352us - TotalBytesSent: 29.10 KB (29799) - TotalTime: 771.143us - UncompressedRowBatchSize: 71.01 KB (72716) UNION_NODE (id=0): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s289ms - Open Started: 604.053ms (604.053ms) - Open Finished: 1s288ms (684.853ms) - First Batch Requested: 1s288ms (11.777us) - First Batch Returned: 1s289ms (383.349us) - Last Batch Returned: 1s289ms (486.493us) - Closed: 1s289ms (91.920us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.37K (1372) - RowsReturnedRate: 2.00 K/sec - TotalTime: 685.912ms AGGREGATION_NODE (id=47): Node Lifecycle Event Timeline: 1s289ms - Open Started: 604.055ms (604.055ms) - Open Finished: 1s288ms (684.849ms) - First Batch Requested: 1s288ms (16.868us) - First Batch Returned: 1s288ms (24.274us) - Last Batch Returned: 1s289ms (798.470us) - Closed: 1s289ms (42.362us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.37K (1372) - RowsReturnedRate: 2.00 K/sec - TotalTime: 685.802ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 8.628ms - GetResultsTime: 284.289us - HTResizeTime: 56.535us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.37K (1372) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 196.431us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 183.150us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.37K (1372) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=46): Node Lifecycle Event Timeline: 1s288ms - Open Started: 604.056ms (604.056ms) - Open Finished: 1s278ms (674.822ms) - First Batch Requested: 1s279ms (905.195us) - First Batch Returned: 1s280ms (388.442us) - Last Batch Returned: 1s288ms (8.595ms) - Closed: 1s288ms (117.570us) - ConvertRowBatchTime: 212.274us - InactiveTotalTime: 675.008ms - PeakMemoryUsage: 344.00 KB (352256) - RowsReturned: 1.37K (1372) - RowsReturnedRate: 2.03 K/sec - TotalTime: 675.260ms Buffer pool: - AllocTime: 16.546us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 392.00 KB (401408) - CumulativeAllocations: 22 (22) - EncryptionTime: 0.000ns - PeakReservation: 344.00 KB (352256) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 344.00 KB (352256) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.255us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 674.818ms - TotalBytesDequeued: 238.20 KB (243914) - TotalGetBatchTime: 675.023ms - DataWaitTime: 675.008ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 20.276us ; Min: 7.510us ; Max: 33.457us ; Number of samples: 11) - DeserializeRowBatchTime: 294.338us - TotalBatchesEnqueued: 11 (11) - TotalBatchesReceived: 11 (11) - TotalBytesReceived: 133.40 KB (136600) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000024 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s289ms - Prepare Finished: 148.686ms (148.686ms) - Open Finished: 1s287ms (1s138ms) - First Batch Produced: 1s287ms (576.330us) - First Batch Sent: 1s288ms (338.842us) - ExecInternal Finished: 1s289ms (864.190us) - MemoryUsage (500.000ms): 125.34 KB, 125.34 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.45 MB (36124000) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 1.38K (1380) - TotalNetworkReceiveTime: 548.188ms - TotalNetworkSendTime: 255.339us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 71 (71) - TotalThreadsTotalWallClockTime: 1s140ms - TotalThreadsSysTime: 12.193ms - TotalThreadsUserTime: 381.774ms - TotalThreadsVoluntaryContextSwitches: 99 (99) - TotalTime: 1s140ms Fragment Instance Lifecycle Timings: - ExecTime: 1.763ms - ExecTreeExecTime: 763.462us - OpenTime: 1s138ms - ExecTreeOpenTime: 556.995ms - PrepareTime: 230.154us - ExecTreePrepareTime: 117.319us KrpcDataStreamSender (dst_id=49): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 81.95 MB/sec ; Min: 69.28 MB/sec ; Max: 106.57 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 96.817us ; Min: 64.864us ; Max: 139.025us ; Number of samples: 6) - RpcRecvrTime: (Avg: 40.054us ; Min: 15.470us ; Max: 74.090us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 255.339us - PeakMemoryUsage: 162.80 KB (166704) - RowsSent: 1.38K (1380) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 198.708us - TotalBytesSent: 29.31 KB (30010) - TotalTime: 1.052ms - UncompressedRowBatchSize: 71.43 KB (73140) UNION_NODE (id=0): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s288ms - Open Started: 730.362ms (730.362ms) - Open Finished: 1s287ms (556.993ms) - First Batch Requested: 1s287ms (15.047us) - First Batch Returned: 1s287ms (574.497us) - Last Batch Returned: 1s288ms (521.268us) - Closed: 1s288ms (125.537us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 1.38K (1380) - RowsReturnedRate: 2.47 K/sec - TotalTime: 557.873ms AGGREGATION_NODE (id=47): Node Lifecycle Event Timeline: 1s288ms - Open Started: 730.364ms (730.364ms) - Open Finished: 1s287ms (556.990ms) - First Batch Requested: 1s287ms (24.418us) - First Batch Returned: 1s287ms (36.572us) - Last Batch Returned: 1s288ms (1.018ms) - Closed: 1s288ms (31.471us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.11 MB (35766400) - RowsReturned: 1.38K (1380) - RowsReturnedRate: 2.47 K/sec - TotalTime: 557.750ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 7.675ms - GetResultsTime: 370.393us - HTResizeTime: 160.145us - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.11 MB (35762304) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 1.38K (1380) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 151.124us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 137.926us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 1.38K (1380) - Resizes: 16 (16) - Travel: 0 (0) EXCHANGE_NODE (id=46): Node Lifecycle Event Timeline: 1s287ms - Open Started: 730.365ms (730.365ms) - Open Finished: 1s278ms (547.635ms) - First Batch Requested: 1s278ms (795.249us) - First Batch Returned: 1s279ms (740.967us) - Last Batch Returned: 1s287ms (7.603ms) - Closed: 1s287ms (184.947us) - ConvertRowBatchTime: 228.961us - InactiveTotalTime: 548.167ms - PeakMemoryUsage: 328.00 KB (335872) - RowsReturned: 1.38K (1380) - RowsReturnedRate: 2.52 K/sec - TotalTime: 548.441ms Buffer pool: - AllocTime: 14.270us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 376.00 KB (385024) - CumulativeAllocations: 20 (20) - EncryptionTime: 0.000ns - PeakReservation: 328.00 KB (335872) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 328.00 KB (335872) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 447.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 547.631ms - TotalBytesDequeued: 238.47 KB (244190) - TotalGetBatchTime: 548.186ms - DataWaitTime: 548.167ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 21.768us ; Min: 11.543us ; Max: 32.717us ; Number of samples: 10) - DeserializeRowBatchTime: 254.739us - TotalBatchesEnqueued: 10 (10) - TotalBatchesReceived: 10 (10) - TotalBytesReceived: 132.96 KB (136155) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F15 [3 instances]:(Total: 1s221ms, non-child: 488.763ms, % non-child: 40.02%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.478ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.57 MB (36247260) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 1.39K (1392) - TotalNetworkReceiveTime: 713.999ms - TotalNetworkSendTime: 260.096us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 1s198ms - TotalThreadsSysTime: 5.377ms - TotalThreadsUserTime: 318.480ms - TotalThreadsVoluntaryContextSwitches: 105 (105) - TotalTime: 1s221ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 461.755ms - ExecTreeExecTime: 459.538ms - OpenTime: 736.878ms - ExecTreeOpenTime: 266.566ms - PrepareTime: 22.719ms - ExecTreePrepareTime: 4.202ms KrpcDataStreamSender (dst_id=46) [3 instances]:(Total: 2.338ms, non-child: 2.078ms, % non-child: 88.88%) - NetworkThroughput: (Avg: 166.97 MB/sec ; Min: 13.97 MB/sec ; Max: 481.43 MB/sec ; Number of samples: 32) - RpcNetworkTime: (Avg: 79.948us ; Min: 27.656us ; Max: 181.053us ; Number of samples: 41) - RpcRecvrTime: (Avg: 42.463us ; Min: 11.897us ; Max: 93.154us ; Number of samples: 41) - EosSent: 3 (3) - InactiveTotalTime: 260.096us - PeakMemoryUsage: 469.59 KB (480860) - RowsSent: 1.39K (1392) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 654.115us - TotalBytesSent: 134.79 KB (138030) - TotalTime: 2.338ms - UncompressedRowBatchSize: 241.15 KB (246939) AGGREGATION_NODE (id=6) [3 instances]:(Total: 730.302ms, non-child: 5.074ms, % non-child: 0.69%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.39K (1392) - RowsReturnedRate: 1.94 K/sec - TotalTime: 730.302ms GroupingAggregator 0 [3 instances]: - BuildTime: 0.000ns - GetResultsTime: 198.424us - HTResizeTime: 37.733us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.39K (1392) - StreamingTime: 8.214ms Buffer pool [3 instances]: - AllocTime: 116.598us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 107.358us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 19.60K (19596) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=5) [3 instances]:(Total: 725.228ms, non-child: 9.093ms, % non-child: 1.25%) - InactiveTotalTime: 104.875us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 19.60K (19596) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 867.484us - RowsReturned: 19.60K (19596) - RowsReturnedRate: 27.44 K/sec - TotalTime: 725.228ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=44) [3 instances]:(Total: 716.030ms, non-child: 2.133ms, % non-child: 0.30%) - ConvertRowBatchTime: 1.902ms - InactiveTotalTime: 713.897ms - PeakMemoryUsage: 101.33 KB (103765) - RowsReturned: 19.60K (19596) - RowsReturnedRate: 27.92 K/sec - TotalTime: 716.030ms Buffer pool [3 instances]: - AllocTime: 205.583us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1005.33 KB (1029461) - CumulativeAllocations: 64 (64) - EncryptionTime: 0.000ns - PeakReservation: 101.33 KB (103765) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 101.33 KB (103765) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 148.569us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 254.229ms - TotalBytesDequeued: 803.76 KB (823046) - TotalGetBatchTime: 713.986ms - DataWaitTime: 713.897ms Enqueue [3 instances]: - DispatchTime: (Avg: 36.401us ; Min: 7.630us ; Max: 83.266us ; Number of samples: 97) - DeserializeRowBatchTime: 784.946us - TotalBatchesEnqueued: 32 (32) - TotalBatchesReceived: 32 (32) - TotalBytesReceived: 320.65 KB (328346) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F15: Instance f04aed6e613865a1:acb29fb100000021 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s280ms - Prepare Finished: 2.276ms (2.276ms) - Open Finished: 812.880ms (810.604ms) - First Batch Produced: 1s278ms (465.641ms) - First Batch Sent: 1s278ms (699.000ns) - ExecInternal Finished: 1s280ms (2.474ms) - MemoryUsage (500.000ms): 148.86 KB, 148.86 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.57 MB (36254387) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 1.36K (1356) - TotalNetworkReceiveTime: 810.578ms - TotalNetworkSendTime: 281.444us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 57 (57) - TotalThreadsTotalWallClockTime: 1s278ms - TotalThreadsSysTime: 7.939ms - TotalThreadsUserTime: 313.402ms - TotalThreadsVoluntaryContextSwitches: 90 (90) - TotalTime: 1s279ms Fragment Instance Lifecycle Timings: - ExecTime: 468.007ms - ExecTreeExecTime: 465.856ms - OpenTime: 810.604ms - ExecTreeOpenTime: 355.831ms - PrepareTime: 629.582us - ExecTreePrepareTime: 430.782us KrpcDataStreamSender (dst_id=46): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 158.82 MB/sec ; Min: 34.06 MB/sec ; Max: 291.14 MB/sec ; Number of samples: 10) - RpcNetworkTime: (Avg: 85.311us ; Min: 29.072us ; Max: 181.053us ; Number of samples: 13) - RpcRecvrTime: (Avg: 48.890us ; Min: 11.897us ; Max: 72.606us ; Number of samples: 13) - EosSent: 3 (3) - InactiveTotalTime: 281.444us - PeakMemoryUsage: 476.55 KB (487987) - RowsSent: 1.36K (1356) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 653.833us - TotalBytesSent: 131.24 KB (134385) - TotalTime: 2.299ms - UncompressedRowBatchSize: 234.61 KB (240237) AGGREGATION_NODE (id=6): Node Lifecycle Event Timeline: 1s280ms - Open Started: 457.043ms (457.043ms) - Open Finished: 812.873ms (355.830ms) - First Batch Requested: 812.881ms (8.338us) - First Batch Returned: 1s278ms (465.640ms) - Last Batch Returned: 1s280ms (1.899ms) - Closed: 1s280ms (23.645us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.36K (1356) - RowsReturnedRate: 1.65 K/sec - TotalTime: 822.115ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 163.680us - HTResizeTime: 65.163us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.36K (1356) - StreamingTime: 7.546ms Buffer pool: - AllocTime: 56.074us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 51.194us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 18.97K (18968) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=5): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s278ms - Open Started: 457.044ms (457.044ms) - Waiting for initial build: 804.122ms (347.078ms) - Initial build available: 804.124ms (1.202us) - Open Finished: 812.675ms (8.551ms) - First Batch Requested: 812.883ms (207.352us) - First Batch Returned: 812.915ms (32.344us) - Last Batch Returned: 1s278ms (465.576ms) - Closed: 1s278ms (19.975us) - InactiveTotalTime: 83.564us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 18.97K (18968) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 835.420us - RowsReturned: 18.97K (18968) - RowsReturnedRate: 23.30 K/sec - TotalTime: 814.012ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=44): Node Lifecycle Event Timeline: 1s278ms - Open Started: 457.051ms (457.051ms) - Open Finished: 804.090ms (347.039ms) - First Batch Requested: 804.127ms (36.638us) - First Batch Returned: 812.672ms (8.545ms) - Last Batch Returned: 1s278ms (465.642ms) - Closed: 1s278ms (194.352us) - ConvertRowBatchTime: 1.875ms - InactiveTotalTime: 810.483ms - PeakMemoryUsage: 96.00 KB (98304) - RowsReturned: 18.97K (18968) - RowsReturnedRate: 23.34 K/sec - TotalTime: 812.586ms Buffer pool: - AllocTime: 282.637us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 968.00 KB (991232) - CumulativeAllocations: 62 (62) - EncryptionTime: 0.000ns - PeakReservation: 96.00 KB (98304) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 96.00 KB (98304) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 226.536us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 347.035ms - TotalBytesDequeued: 777.98 KB (796656) - TotalGetBatchTime: 810.564ms - DataWaitTime: 810.483ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 34.521us ; Min: 7.630us ; Max: 68.027us ; Number of samples: 31) - DeserializeRowBatchTime: 930.048us - TotalBatchesEnqueued: 31 (31) - TotalBatchesReceived: 31 (31) - TotalBytesReceived: 310.25 KB (317700) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000020 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s281ms - Prepare Finished: 36.860ms (36.860ms) - Open Finished: 812.530ms (775.670ms) - First Batch Produced: 1s278ms (465.731ms) - First Batch Sent: 1s278ms (1.510us) - ExecInternal Finished: 1s281ms (2.921ms) - MemoryUsage (500.000ms): 148.86 KB, 34.19 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.58 MB (36256050) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 1.41K (1411) - TotalNetworkReceiveTime: 740.135ms - TotalNetworkSendTime: 250.166us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 52 (52) - TotalThreadsTotalWallClockTime: 1s244ms - TotalThreadsSysTime: 4.056ms - TotalThreadsUserTime: 323.977ms - TotalThreadsVoluntaryContextSwitches: 112 (112) - TotalTime: 1s253ms Fragment Instance Lifecycle Timings: - ExecTime: 468.513ms - ExecTreeExecTime: 466.034ms - OpenTime: 775.666ms - ExecTreeOpenTime: 287.662ms - PrepareTime: 8.786ms - ExecTreePrepareTime: 189.130us KrpcDataStreamSender (dst_id=46): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 168.21 MB/sec ; Min: 13.97 MB/sec ; Max: 481.43 MB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 81.648us ; Min: 30.827us ; Max: 135.321us ; Number of samples: 14) - RpcRecvrTime: (Avg: 40.584us ; Min: 13.179us ; Max: 93.154us ; Number of samples: 14) - EosSent: 3 (3) - InactiveTotalTime: 250.166us - PeakMemoryUsage: 478.17 KB (489650) - RowsSent: 1.41K (1411) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 736.405us - TotalBytesSent: 136.52 KB (139799) - TotalTime: 2.583ms - UncompressedRowBatchSize: 244.30 KB (250160) AGGREGATION_NODE (id=6): Node Lifecycle Event Timeline: 1s280ms - Open Started: 524.858ms (524.858ms) - Open Finished: 812.519ms (287.660ms) - First Batch Requested: 812.532ms (12.868us) - First Batch Returned: 1s278ms (465.728ms) - Last Batch Returned: 1s280ms (2.383ms) - Closed: 1s280ms (29.208us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.41K (1411) - RowsReturnedRate: 1.87 K/sec - TotalTime: 753.881ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 241.406us - HTResizeTime: 23.407us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.41K (1411) - StreamingTime: 9.451ms Buffer pool: - AllocTime: 195.498us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 182.217us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 19.79K (19791) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=5): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s278ms - Open Started: 524.859ms (524.859ms) - Waiting for initial build: 803.873ms (279.014ms) - Initial build available: 803.874ms (726.000ns) - Open Finished: 811.937ms (8.063ms) - First Batch Requested: 812.534ms (596.769us) - First Batch Returned: 812.577ms (43.213us) - Last Batch Returned: 1s278ms (465.629ms) - Closed: 1s278ms (36.607us) - InactiveTotalTime: 135.346us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 19.79K (19791) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 858.683us - RowsReturned: 19.79K (19791) - RowsReturnedRate: 26.62 K/sec - TotalTime: 743.408ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=44): Node Lifecycle Event Timeline: 1s278ms - Open Started: 524.865ms (524.865ms) - Open Finished: 803.856ms (278.991ms) - First Batch Requested: 803.876ms (20.247us) - First Batch Returned: 811.936ms (8.059ms) - Last Batch Returned: 1s277ms (466.035ms) - Closed: 1s278ms (269.080us) - ConvertRowBatchTime: 1.873ms - InactiveTotalTime: 740.038ms - PeakMemoryUsage: 112.00 KB (114688) - RowsReturned: 19.79K (19791) - RowsReturnedRate: 26.67 K/sec - TotalTime: 742.128ms Buffer pool: - AllocTime: 175.476us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1016.00 KB (1040384) - CumulativeAllocations: 66 (66) - EncryptionTime: 0.000ns - PeakReservation: 112.00 KB (114688) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 112.00 KB (114688) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 111.970us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 51.68 KB - FirstBatchWaitTime: 278.987ms - TotalBytesDequeued: 811.74 KB (831222) - TotalGetBatchTime: 740.122ms - DataWaitTime: 740.038ms Enqueue: - BytesReceived (500.000ms): 0, 20.53 KB - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 37.543us ; Min: 11.667us ; Max: 75.289us ; Number of samples: 33) - DeserializeRowBatchTime: 816.423us - TotalBatchesEnqueued: 33 (33) - TotalBatchesReceived: 33 (33) - TotalBytesReceived: 324.09 KB (331869) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000001f (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s279ms - Prepare Finished: 206.544ms (206.544ms) - Open Finished: 830.913ms (624.369ms) - First Batch Produced: 1s277ms (446.479ms) - First Batch Sent: 1s277ms (1.309us) - ExecInternal Finished: 1s279ms (2.403ms) - MemoryUsage (500.000ms): 148.86 KB, 180.86 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.55 MB (36231343) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 1.41K (1409) - TotalNetworkReceiveTime: 591.285ms - TotalNetworkSendTime: 248.683us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 23 (23) - TotalThreadsTotalWallClockTime: 1s073ms - TotalThreadsSysTime: 4.137ms - TotalThreadsUserTime: 318.063ms - TotalThreadsVoluntaryContextSwitches: 115 (115) - TotalTime: 1s131ms Fragment Instance Lifecycle Timings: - ExecTime: 448.744ms - ExecTreeExecTime: 446.723ms - OpenTime: 624.365ms - ExecTreeOpenTime: 156.204ms - PrepareTime: 58.740ms - ExecTreePrepareTime: 11.987ms KrpcDataStreamSender (dst_id=46): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 173.13 MB/sec ; Min: 34.50 MB/sec ; Max: 391.79 MB/sec ; Number of samples: 11) - RpcNetworkTime: (Avg: 73.267us ; Min: 27.656us ; Max: 139.778us ; Number of samples: 14) - RpcRecvrTime: (Avg: 38.375us ; Min: 14.148us ; Max: 67.874us ; Number of samples: 14) - EosSent: 3 (3) - InactiveTotalTime: 248.683us - PeakMemoryUsage: 454.05 KB (464943) - RowsSent: 1.41K (1409) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 572.109us - TotalBytesSent: 136.63 KB (139907) - TotalTime: 2.133ms - UncompressedRowBatchSize: 244.55 KB (250420) AGGREGATION_NODE (id=6): Node Lifecycle Event Timeline: 1s279ms - Open Started: 674.701ms (674.701ms) - Open Finished: 830.904ms (156.202ms) - First Batch Requested: 830.915ms (11.228us) - First Batch Returned: 1s277ms (446.476ms) - Last Batch Returned: 1s279ms (1.906ms) - Closed: 1s279ms (20.284us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 34.13 MB (35782784) - RowsReturned: 1.41K (1409) - RowsReturnedRate: 2.29 K/sec - TotalTime: 614.911ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 190.187us - HTResizeTime: 24.630us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 34.10 MB (35758208) - PeakReservation: 34.00 MB (35651584) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 1.41K (1409) - StreamingTime: 7.644ms Buffer pool: - AllocTime: 98.224us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 34.00 MB (35651584) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 34.00 MB (35651584) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 34.00 MB (35651584) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 88.663us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 20.03K (20030) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=5): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s277ms - Open Started: 674.702ms (674.702ms) - Waiting for initial build: 811.394ms (136.691ms) - Initial build available: 811.395ms (1.058us) - Open Finished: 830.481ms (19.085ms) - First Batch Requested: 830.919ms (438.131us) - First Batch Returned: 830.967ms (48.192us) - Last Batch Returned: 1s277ms (446.382ms) - Closed: 1s277ms (28.662us) - InactiveTotalTime: 95.717us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 20.03K (20030) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 908.349us - RowsReturned: 20.03K (20030) - RowsReturnedRate: 32.40 K/sec - TotalTime: 618.264ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=44): Node Lifecycle Event Timeline: 1s277ms - Open Started: 674.709ms (674.709ms) - Open Finished: 811.378ms (136.669ms) - First Batch Requested: 811.398ms (19.612us) - First Batch Returned: 830.480ms (19.082ms) - Last Batch Returned: 1s277ms (446.680ms) - Closed: 1s277ms (215.669us) - ConvertRowBatchTime: 1.957ms - InactiveTotalTime: 591.169ms - PeakMemoryUsage: 96.00 KB (98304) - RowsReturned: 20.03K (20030) - RowsReturnedRate: 33.76 K/sec - TotalTime: 593.375ms Buffer pool: - AllocTime: 158.638us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.01 MB (1056768) - CumulativeAllocations: 66 (66) - EncryptionTime: 0.000ns - PeakReservation: 96.00 KB (98304) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 96.00 KB (98304) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 107.201us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 25.84 KB - FirstBatchWaitTime: 136.665ms - TotalBytesDequeued: 821.54 KB (841260) - TotalGetBatchTime: 591.272ms - DataWaitTime: 591.169ms Enqueue: - BytesReceived (500.000ms): 0, 10.22 KB - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 37.026us ; Min: 8.122us ; Max: 83.266us ; Number of samples: 33) - DeserializeRowBatchTime: 608.367us - TotalBatchesEnqueued: 33 (33) - TotalBatchesReceived: 33 (33) - TotalBytesReceived: 327.61 KB (335470) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F12 [3 instances]:(Total: 1s182ms, non-child: 286.085ms, % non-child: 24.20%) split sizes: min: 64.55 MB, max: 70.05 MB, avg: 66.48 MB, stddev: 2.53 MB completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.319ms execution rates: min:47.72 MB/sec max:50.13 MB/sec mean:48.60 MB/sec stddev:1.08 MB/sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 66.48 MB (69709641) - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 48.60 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.73 MB (2865604) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 19.60K (19596) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 270.508us - TotalStorageWaitTime: 377.851ms - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 1s179ms - TotalThreadsSysTime: 13.541ms - TotalThreadsUserTime: 248.849ms - TotalThreadsVoluntaryContextSwitches: 838 (838) - TotalTime: 1s182ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 456.061ms - ExecTreeExecTime: 447.838ms - OpenTime: 723.908ms - ExecTreeOpenTime: 435.858ms - PrepareTime: 2.252ms - ExecTreePrepareTime: 2.159ms KrpcDataStreamSender (dst_id=44) [3 instances]:(Total: 8.183ms, non-child: 7.913ms, % non-child: 96.69%) - NetworkThroughput: (Avg: 81.40 MB/sec ; Min: 29.02 MB/sec ; Max: 251.49 MB/sec ; Number of samples: 97) - RpcNetworkTime: (Avg: 133.113us ; Min: 32.610us ; Max: 345.666us ; Number of samples: 106) - RpcRecvrTime: (Avg: 62.978us ; Min: 9.632us ; Max: 197.761us ; Number of samples: 106) - EosSent: 3 (3) - InactiveTotalTime: 270.508us - PeakMemoryUsage: 401.94 KB (411588) - RowsSent: 19.60K (19596) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.750ms - TotalBytesSent: 320.65 KB (328346) - TotalTime: 8.183ms - UncompressedRowBatchSize: 803.76 KB (823046) HASH_JOIN_NODE (id=4) [3 instances]:(Total: 887.972ms, non-child: 5.970ms, % non-child: 0.67%) - InactiveTotalTime: 92.615us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 19.60K (19596) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.093ms - RowsReturned: 19.60K (19596) - RowsReturnedRate: 22.65 K/sec - TotalTime: 887.972ms Buffer pool [3 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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) [3 instances]:(Total: 881.909ms, non-child: 881.909ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 364) - ColumnarScannerIdealReservation: (Avg: 28.40 KB (29077) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 364) - FooterProcessingTime: (Avg: 2.025ms ; Min: 494.597us ; Max: 99.642ms ; Number of samples: 364) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 364) - InitialRangeIdealReservation: (Avg: 114.46 KB (117208) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 364) - PageIndexProcessingTime: (Avg: 288.931us ; Min: 42.198us ; Max: 7.406ms ; Number of samples: 364) - ParquetCompressedBytesReadPerColumn: (Avg: 179.37 KB (183670) ; Min: 136.91 KB (140199) ; Max: 262.73 KB (269033) ; Number of samples: 9) - ParquetCompressedPageSize: (Avg: 1.48 KB (1513) ; Min: 263.00 B (263) ; Max: 5.18 KB (5306) ; Number of samples: 1092) - ParquetUncompressedBytesReadPerColumn: (Avg: 198.46 KB (203218) ; Min: 154.57 KB (158278) ; Max: 263.12 KB (269430) ; Number of samples: 9) - ParquetUncompressedPageSize: (Avg: 1.63 KB (1674) ; Min: 262.00 B (262) ; Max: 5.20 KB (5320) ; Number of samples: 1092) - AverageHdfsReadThreadConcurrency: 0.67 - BytesRead: 11.03 MB (11562060) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 11.03 MB (11562060) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 11.03 MB (11562060) - CachedFileHandlesHitCount: 371 (371) - CachedFileHandlesMissCount: 235 (235) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.357ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.41 MB (1478220) - IoReadAsyncRequest: 1.46K (1456) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 95.70 KB (97993) - IoReadSyncRequest: 121 (121) - IoReadTotalBytes: 1.50 MB (1576213) - IoReadTotalRequest: 1.58K (1577) - MaterializeTupleTime: 17.422ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 364 (364) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 121 (121) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 121 (121) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2161041) - PerReadThreadRawHdfsThroughput: 56.16 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 182.10K (182103) - RowsReturned: 19.60K (19596) - RowsReturnedRate: 22.80 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 377.851ms - TotalRawHdfsOpenFileTime: 207.016ms - TotalRawHdfsReadTime: 198.482ms - TotalReadThroughput: 755.00 KB/sec - TotalTime: 881.909ms Buffer pool [3 instances]: - AllocTime: 824.473us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.93 MB (17749333) - CumulativeAllocations: 485 (485) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 347.014us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 17 (0) [3 instances]: - Files processed: 608 (608) - Files rejected: 486 (486) - Files total: 608 (608) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 182.10K (182103) - Rows rejected: 0 (0) - Rows total: 182.10K (182103) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 16 (1.00 MB) [3 instances]: - Files processed: 121 (121) - Files rejected: 0 (0) - Files total: 121 (121) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 182.10K (182103) - Rows rejected: 0 (0) - Rows total: 182.10K (182103) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 14 (1.00 MB) [3 instances]: - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 182.10K (182103) - Rows rejected: 162.51K (162507) - Rows total: 182.10K (182103) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F12: Instance f04aed6e613865a1:acb29fb10000001e (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:608/70.05 MB Fragment Instance Lifecycle Event Timeline: 1s278ms - Prepare Finished: 1.819ms (1.819ms) - Open Finished: 861.065ms (859.245ms) - First Batch Produced: 878.470ms (17.405ms) - First Batch Sent: 878.812ms (341.475us) - ExecInternal Finished: 1s278ms (399.562ms) - MemoryUsage (500.000ms): 2.07 MB, 2.08 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 70.05 MB (73456448) - CompletionTime: 1s397ms - ExchangeScanRatio: 0.03 - ExecutionRate: 50.13 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.73 MB (2864976) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 19.12K (19125) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 306.314us - TotalStorageWaitTime: 409.580ms - TotalThreadsInvoluntaryContextSwitches: 60 (60) - TotalThreadsTotalWallClockTime: 1s276ms - TotalThreadsSysTime: 12.075ms - TotalThreadsUserTime: 237.473ms - TotalThreadsVoluntaryContextSwitches: 837 (837) - TotalTime: 1s276ms Fragment Instance Lifecycle Timings: - ExecTime: 417.290ms - ExecTreeExecTime: 410.645ms - OpenTime: 859.240ms - ExecTreeOpenTime: 613.578ms - PrepareTime: 141.819us - ExecTreePrepareTime: 68.011us KrpcDataStreamSender (dst_id=44): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 84.90 MB/sec ; Min: 34.52 MB/sec ; Max: 160.44 MB/sec ; Number of samples: 32) - RpcNetworkTime: (Avg: 122.132us ; Min: 32.610us ; Max: 291.758us ; Number of samples: 35) - RpcRecvrTime: (Avg: 54.699us ; Min: 13.135us ; Max: 121.745us ; Number of samples: 35) - EosSent: 3 (3) - InactiveTotalTime: 306.314us - PeakMemoryUsage: 401.94 KB (411588) - RowsSent: 19.12K (19125) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.380ms - TotalBytesSent: 312.74 KB (320249) - TotalTime: 6.579ms - UncompressedRowBatchSize: 784.42 KB (803250) HASH_JOIN_NODE (id=4): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s277ms - Open Started: 247.476ms (247.476ms) - Waiting for initial build: 755.648ms (508.171ms) - Initial build available: 755.650ms (1.196us) - Open Finished: 861.054ms (105.404ms) - First Batch Requested: 861.066ms (12.445us) - First Batch Returned: 878.469ms (17.403ms) - Last Batch Returned: 1s277ms (399.436ms) - Closed: 1s277ms (40.757us) - InactiveTotalTime: 93.881us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 19.12K (19125) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.019ms - RowsReturned: 19.12K (19125) - RowsReturnedRate: 18.67 K/sec - TotalTime: 1s024ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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): Table Name: tpcds_parquet.store_sales Runtime filters: All filters arrived. Waited 508ms. Maximum arrival delay: 766ms. 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% 24:0% File Formats: PARQUET/SNAPPY:121 PARQUET/Unknown(Skipped):487 ExecOption: Codegen enabled: 121 out of 121, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s277ms - Open Started: 247.486ms (247.486ms) - Open Finished: 755.636ms (508.149ms) - First Batch Requested: 755.651ms (15.398us) - First Batch Returned: 861.052ms (105.401ms) - Last Batch Returned: 1s277ms (416.493ms) - Closed: 1s277ms (398.707us) - BytesReadSeries (500.000ms): 0, 0 - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - ColumnarScannerIdealReservation: (Avg: 28.10 KB (28773) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 121) - FooterProcessingTime: (Avg: 2.361ms ; Min: 494.597us ; Max: 99.642ms ; Number of samples: 121) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - InitialRangeIdealReservation: (Avg: 113.19 KB (115906) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 121) - PageIndexProcessingTime: (Avg: 317.474us ; Min: 42.198us ; Max: 7.406ms ; Number of samples: 121) - ParquetCompressedBytesReadPerColumn: (Avg: 175.32 KB (179524) ; Min: 136.91 KB (140199) ; Max: 251.44 KB (257473) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.45 KB (1483) ; Min: 282.00 B (282) ; Max: 4.99 KB (5113) ; Number of samples: 363) - ParquetUncompressedBytesReadPerColumn: (Avg: 194.16 KB (198823) ; Min: 154.57 KB (158278) ; Max: 251.85 KB (257894) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.60 KB (1643) ; Min: 285.00 B (285) ; Max: 5.01 KB (5134) ; Number of samples: 363) - AverageHdfsReadThreadConcurrency: 0.50 - BytesRead: 10.94 MB (11468101) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 10.94 MB (11468101) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.94 MB (11468101) - CachedFileHandlesHitCount: 375 (375) - CachedFileHandlesMissCount: 230 (230) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.277ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.38 MB (1451159) - IoReadAsyncRequest: 1.45K (1452) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 95.37 KB (97663) - IoReadSyncRequest: 121 (121) - IoReadTotalBytes: 1.48 MB (1548822) - IoReadTotalRequest: 1.57K (1573) - MaterializeTupleTime: 16.280ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 363 (363) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 121 (121) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 121 (121) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2160798) - PerReadThreadRawHdfsThroughput: 48.01 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 179.32K (179316) - RowsReturned: 19.12K (19125) - RowsReturnedRate: 18.70 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 409.580ms - TotalRawHdfsOpenFileTime: 211.826ms - TotalRawHdfsReadTime: 227.814ms - TotalReadThroughput: 0.00 /sec - TotalTime: 1s022ms Buffer pool: - AllocTime: 723.236us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.70 MB (17506304) - CumulativeAllocations: 484 (484) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 260.237us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 17 (0): - Files processed: 608 (608) - Files rejected: 486 (486) - Files total: 608 (608) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 179.32K (179316) - Rows rejected: 0 (0) - Rows total: 179.32K (179316) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 16 (1.00 MB): - Files processed: 122 (122) - Files rejected: 1 (1) - Files total: 122 (122) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 179.32K (179316) - Rows rejected: 0 (0) - Rows total: 179.32K (179316) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 14 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 179.32K (179316) - Rows rejected: 160.19K (160191) - Rows total: 179.32K (179316) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance f04aed6e613865a1:acb29fb10000001d (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:608/64.83 MB Fragment Instance Lifecycle Event Timeline: 1s250ms - Prepare Finished: 16.168ms (16.168ms) - Open Finished: 761.660ms (745.492ms) - First Batch Produced: 777.577ms (15.917ms) - First Batch Sent: 778.430ms (852.878us) - ExecInternal Finished: 1s250ms (472.464ms) - MemoryUsage (500.000ms): 70.66 KB, 2.28 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 64.83 MB (67983812) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.03 - ExecutionRate: 47.96 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.74 MB (2869717) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 20.30K (20295) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 259.517us - TotalStorageWaitTime: 369.818ms - TotalThreadsInvoluntaryContextSwitches: 44 (44) - TotalThreadsTotalWallClockTime: 1s234ms - TotalThreadsSysTime: 20.858ms - TotalThreadsUserTime: 270.894ms - TotalThreadsVoluntaryContextSwitches: 826 (826) - TotalTime: 1s241ms Fragment Instance Lifecycle Timings: - ExecTime: 489.145ms - ExecTreeExecTime: 479.789ms - OpenTime: 745.487ms - ExecTreeOpenTime: 448.437ms - PrepareTime: 6.394ms - ExecTreePrepareTime: 6.301ms KrpcDataStreamSender (dst_id=44): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 20.50 KB - NetworkThroughput: (Avg: 87.11 MB/sec ; Min: 41.24 MB/sec ; Max: 251.49 MB/sec ; Number of samples: 33) - RpcNetworkTime: (Avg: 124.966us ; Min: 34.668us ; Max: 243.444us ; Number of samples: 36) - RpcRecvrTime: (Avg: 57.479us ; Min: 9.632us ; Max: 121.845us ; Number of samples: 36) - EosSent: 3 (3) - InactiveTotalTime: 259.517us - PeakMemoryUsage: 401.94 KB (411588) - RowsSent: 20.30K (20295) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.894ms - TotalBytesSent: 332.22 KB (340191) - TotalTime: 9.341ms - UncompressedRowBatchSize: 832.41 KB (852390) HASH_JOIN_NODE (id=4): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s250ms - Open Started: 313.213ms (313.213ms) - Waiting for initial build: 754.936ms (441.722ms) - Initial build available: 754.937ms (898.000ns) - Open Finished: 761.649ms (6.711ms) - First Batch Requested: 761.661ms (12.847us) - First Batch Returned: 777.575ms (15.913ms) - Last Batch Returned: 1s250ms (472.667ms) - Closed: 1s250ms (41.674us) - InactiveTotalTime: 87.740us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 20.30K (20295) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.225ms - RowsReturned: 20.30K (20295) - RowsReturnedRate: 21.57 K/sec - TotalTime: 940.755ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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): Table Name: tpcds_parquet.store_sales Runtime filters: All filters arrived. Waited 442ms. Maximum arrival delay: 767ms. 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% 24:0% File Formats: PARQUET/SNAPPY:122 PARQUET/Unknown(Skipped):486 ExecOption: Codegen enabled: 122 out of 122, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s250ms - Open Started: 313.221ms (313.221ms) - Open Finished: 754.848ms (441.626ms) - First Batch Requested: 754.939ms (90.592us) - First Batch Returned: 761.647ms (6.708ms) - Last Batch Returned: 1s249ms (488.287ms) - Closed: 1s250ms (347.665us) - BytesReadSeries (500.000ms): 0, 1.16 MB - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 122) - ColumnarScannerIdealReservation: (Avg: 28.85 KB (29544) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 122) - FooterProcessingTime: (Avg: 1.904ms ; Min: 537.361us ; Max: 39.093ms ; Number of samples: 122) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 122) - InitialRangeIdealReservation: (Avg: 114.88 KB (117642) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 122) - PageIndexProcessingTime: (Avg: 296.777us ; Min: 54.704us ; Max: 1.589ms ; Number of samples: 122) - ParquetCompressedBytesReadPerColumn: (Avg: 184.44 KB (188869) ; Min: 143.89 KB (147342) ; Max: 262.73 KB (269033) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.51 KB (1548) ; Min: 290.00 B (290) ; Max: 4.90 KB (5016) ; Number of samples: 366) - ParquetUncompressedBytesReadPerColumn: (Avg: 204.16 KB (209055) ; Min: 163.52 KB (167440) ; Max: 263.12 KB (269430) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.67 KB (1713) ; Min: 291.00 B (291) ; Max: 4.91 KB (5029) ; Number of samples: 366) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 11.19 MB (11732392) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 11.19 MB (11732392) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 11.19 MB (11732392) - CachedFileHandlesHitCount: 371 (371) - CachedFileHandlesMissCount: 239 (239) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.457ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.45 MB (1518028) - IoReadAsyncRequest: 1.46K (1464) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 96.24 KB (98552) - IoReadSyncRequest: 122 (122) - IoReadTotalBytes: 1.54 MB (1616580) - IoReadTotalRequest: 1.59K (1586) - MaterializeTupleTime: 19.926ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 366 (366) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 122 (122) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 122 (122) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2160553) - PerReadThreadRawHdfsThroughput: 60.37 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 186.83K (186832) - RowsReturned: 20.30K (20295) - RowsReturnedRate: 21.91 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 369.818ms - TotalRawHdfsOpenFileTime: 220.217ms - TotalRawHdfsReadTime: 185.337ms - TotalReadThroughput: 1.16 MB/sec - TotalTime: 926.221ms Buffer pool: - AllocTime: 1.036ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.12 MB (17956864) - CumulativeAllocations: 488 (488) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 552.673us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 17 (0): - Files processed: 608 (608) - Files rejected: 486 (486) - Files total: 608 (608) - RowGroups processed: 122 (122) - RowGroups rejected: 0 (0) - RowGroups total: 122 (122) - Rows processed: 186.83K (186832) - Rows rejected: 0 (0) - Rows total: 186.83K (186832) - Splits processed: 122 (122) - Splits rejected: 0 (0) - Splits total: 122 (122) Filter 16 (1.00 MB): - Files processed: 122 (122) - Files rejected: 0 (0) - Files total: 122 (122) - RowGroups processed: 122 (122) - RowGroups rejected: 0 (0) - RowGroups total: 122 (122) - Rows processed: 186.83K (186832) - Rows rejected: 0 (0) - Rows total: 186.83K (186832) - Splits processed: 122 (122) - Splits rejected: 0 (0) - Splits total: 122 (122) Filter 14 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 122 (122) - RowGroups rejected: 0 (0) - RowGroups total: 122 (122) - Rows processed: 186.83K (186832) - Rows rejected: 166.54K (166537) - Rows total: 186.83K (186832) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance f04aed6e613865a1:acb29fb10000001c (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:608/64.55 MB Fragment Instance Lifecycle Event Timeline: 1s225ms - Prepare Finished: 196.654ms (196.654ms) - Open Finished: 763.657ms (567.003ms) - First Batch Produced: 788.033ms (24.375ms) - First Batch Sent: 788.203ms (170.497us) - ExecInternal Finished: 1s225ms (437.286ms) - MemoryUsage (500.000ms): 70.66 KB, 2.22 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 64.55 MB (67688665) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.03 - ExecutionRate: 47.72 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.73 MB (2862120) - PeakReservation: 2.00 MB (2097152) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 19.37K (19369) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 245.692us - TotalStorageWaitTime: 354.155ms - TotalThreadsInvoluntaryContextSwitches: 29 (29) - TotalThreadsTotalWallClockTime: 1s028ms - TotalThreadsSysTime: 7.690ms - TotalThreadsUserTime: 238.182ms - TotalThreadsVoluntaryContextSwitches: 853 (853) - TotalTime: 1s028ms Fragment Instance Lifecycle Timings: - ExecTime: 461.749ms - ExecTreeExecTime: 453.080ms - OpenTime: 566.999ms - ExecTreeOpenTime: 245.558ms - PrepareTime: 221.599us - ExecTreePrepareTime: 109.506us KrpcDataStreamSender (dst_id=44): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 30.74 KB - NetworkThroughput: (Avg: 72.00 MB/sec ; Min: 29.02 MB/sec ; Max: 181.06 MB/sec ; Number of samples: 32) - RpcNetworkTime: (Avg: 152.473us ; Min: 47.404us ; Max: 345.666us ; Number of samples: 35) - RpcRecvrTime: (Avg: 76.912us ; Min: 11.390us ; Max: 197.761us ; Number of samples: 35) - EosSent: 3 (3) - InactiveTotalTime: 245.692us - PeakMemoryUsage: 401.94 KB (411588) - RowsSent: 19.37K (19369) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.976ms - TotalBytesSent: 316.99 KB (324599) - TotalTime: 8.631ms - UncompressedRowBatchSize: 794.43 KB (813498) HASH_JOIN_NODE (id=4): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s225ms - Open Started: 518.089ms (518.089ms) - Waiting for initial build: 754.015ms (235.926ms) - Initial build available: 754.016ms (1.080us) - Open Finished: 763.645ms (9.629ms) - First Batch Requested: 763.659ms (13.100us) - First Batch Returned: 788.032ms (24.373ms) - Last Batch Returned: 1s225ms (437.000ms) - Closed: 1s225ms (28.619us) - InactiveTotalTime: 96.225us - PeakMemoryUsage: 97.12 KB (99456) - ProbeRows: 19.37K (19369) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.035ms - RowsReturned: 19.37K (19369) - RowsReturnedRate: 27.72 K/sec - TotalTime: 698.824ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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): Table Name: tpcds_parquet.store_sales Runtime filters: All filters arrived. Waited 236ms. Maximum arrival delay: 765ms. 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% 24:0% File Formats: PARQUET/SNAPPY:121 PARQUET/Unknown(Skipped):487 ExecOption: Codegen enabled: 121 out of 121, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s225ms - Open Started: 518.095ms (518.095ms) - Open Finished: 753.979ms (235.883ms) - First Batch Requested: 754.019ms (39.836us) - First Batch Returned: 763.644ms (9.625ms) - Last Batch Returned: 1s224ms (461.065ms) - Closed: 1s225ms (349.108us) - BytesReadSeries (500.000ms): 0, 1.05 MB - ColumnarScannerActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - ColumnarScannerIdealReservation: (Avg: 28.23 KB (28908) ; Min: 24.00 KB (24576) ; Max: 48.00 KB (49152) ; Number of samples: 121) - FooterProcessingTime: (Avg: 1.811ms ; Min: 603.105us ; Max: 43.487ms ; Number of samples: 121) - InitialRangeActualReservation: (Avg: 2.00 MB (2097152) ; Min: 2.00 MB (2097152) ; Max: 2.00 MB (2097152) ; Number of samples: 121) - InitialRangeIdealReservation: (Avg: 115.31 KB (118073) ; Min: 64.00 KB (65536) ; Max: 128.00 KB (131072) ; Number of samples: 121) - PageIndexProcessingTime: (Avg: 252.478us ; Min: 60.233us ; Max: 2.185ms ; Number of samples: 121) - ParquetCompressedBytesReadPerColumn: (Avg: 178.34 KB (182618) ; Min: 138.36 KB (141681) ; Max: 252.55 KB (258614) ; Number of samples: 3) - ParquetCompressedPageSize: (Avg: 1.47 KB (1509) ; Min: 263.00 B (263) ; Max: 5.18 KB (5306) ; Number of samples: 363) - ParquetUncompressedBytesReadPerColumn: (Avg: 197.05 KB (201775) ; Min: 159.63 KB (163460) ; Max: 252.99 KB (259065) ; Number of samples: 3) - ParquetUncompressedPageSize: (Avg: 1.63 KB (1667) ; Min: 262.00 B (262) ; Max: 5.20 KB (5320) ; Number of samples: 363) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 10.95 MB (11485688) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 10.95 MB (11485688) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 10.95 MB (11485688) - CachedFileHandlesHitCount: 369 (369) - CachedFileHandlesMissCount: 236 (236) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.339ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 1.40 MB (1465473) - IoReadAsyncRequest: 1.45K (1452) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 95.47 KB (97765) - IoReadSyncRequest: 121 (121) - IoReadTotalBytes: 1.49 MB (1563238) - IoReadTotalRequest: 1.57K (1573) - MaterializeTupleTime: 16.060ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 363 (363) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 121 (121) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 121 (121) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.06 MB (2161772) - PerReadThreadRawHdfsThroughput: 60.09 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 180.16K (180162) - RowsReturned: 19.37K (19369) - RowsReturnedRate: 27.79 K/sec - ScanRangesComplete: 608 (608) - ScannerIoWaitTime: 354.155ms - TotalRawHdfsOpenFileTime: 189.006ms - TotalRawHdfsReadTime: 182.294ms - TotalReadThroughput: 1.05 MB/sec - TotalTime: 696.937ms Buffer pool: - AllocTime: 713.279us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 16.96 MB (17784832) - CumulativeAllocations: 484 (484) - EncryptionTime: 0.000ns - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 128.00 KB (131072) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 228.132us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 17 (0): - Files processed: 608 (608) - Files rejected: 487 (487) - Files total: 608 (608) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 180.16K (180162) - Rows rejected: 0 (0) - Rows total: 180.16K (180162) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 16 (1.00 MB): - Files processed: 121 (121) - Files rejected: 0 (0) - Files total: 121 (121) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 180.16K (180162) - Rows rejected: 0 (0) - Rows total: 180.16K (180162) - Splits processed: 121 (121) - Splits rejected: 0 (0) - Splits total: 121 (121) Filter 14 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 121 (121) - RowGroups rejected: 0 (0) - RowGroups total: 121 (121) - Rows processed: 180.16K (180162) - Rows rejected: 160.79K (160793) - Rows total: 180.16K (180162) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F30 [3 instances]:(Total: 1s216ms, non-child: 232.139ms, % non-child: 19.09%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.514ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.76 MB (9184384) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 3.75K (3750) - TotalNetworkReceiveTime: 454.547ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 22 (22) - TotalThreadsTotalWallClockTime: 1s202ms - TotalThreadsSysTime: 3.247ms - TotalThreadsUserTime: 90.506ms - TotalThreadsVoluntaryContextSwitches: 73 (73) - TotalTime: 1s216ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 543.814ms - ExecTreeExecTime: 15.855ms - OpenTime: 658.384ms - ExecTreeOpenTime: 439.618ms - PrepareTime: 4.180ms - ExecTreePrepareTime: 93.433us Hash Join Builder (join_node_id=5) [3 instances]:(Total: 528.544ms, non-child: 2.313ms, % non-child: 0.44%) - BuildRows: 3.75K (3750) - BuildRowsPartitionTime: 1.081ms - HashTablesBuildTime: 452.400us - InactiveTotalTime: 526.231ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 528.544ms Buffer pool [3 instances]: - AllocTime: 51.497us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 44.761us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 23.35K (23347) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=45) [3 instances]:(Total: 455.470ms, non-child: 993.556us, % non-child: 0.22%) - ConvertRowBatchTime: 848.868us - InactiveTotalTime: 454.477ms - PeakMemoryUsage: 248.00 KB (253952) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 8.92 K/sec - TotalTime: 455.470ms Buffer pool [3 instances]: - AllocTime: 92.605us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 824.00 KB (843776) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 248.00 KB (253952) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 248.00 KB (253952) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 61.181us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 439.609ms - TotalBytesDequeued: 587.73 KB (601838) - TotalGetBatchTime: 454.538ms - DataWaitTime: 454.477ms Enqueue [3 instances]: - DispatchTime: (Avg: 54.388us ; Min: 4.923us ; Max: 140.684us ; Number of samples: 63) - DeserializeRowBatchTime: 961.107us - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 349.57 KB (357960) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F30: Instance f04aed6e613865a1:acb29fb10000002a (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s278ms - Prepare Finished: 9.790ms (9.790ms) - Open Finished: 734.429ms (724.638ms) - First Batch Produced: 738.168ms (3.738ms) - First Batch Sent: 738.356ms (187.873us) - ExecInternal Finished: 1s278ms (539.879ms) - MemoryUsage (500.000ms): 17.12 KB, 8.52 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.75 MB (9176192) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 3.72K (3719) - TotalNetworkReceiveTime: 496.116ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 37 (37) - TotalThreadsTotalWallClockTime: 1s268ms - TotalThreadsSysTime: 3.815ms - TotalThreadsUserTime: 86.451ms - TotalThreadsVoluntaryContextSwitches: 86 (86) - TotalTime: 1s268ms Fragment Instance Lifecycle Timings: - ExecTime: 543.790ms - ExecTreeExecTime: 16.153ms - OpenTime: 724.636ms - ExecTreeOpenTime: 480.565ms - PrepareTime: 157.199us - ExecTreePrepareTime: 86.379us Hash Join Builder (join_node_id=5): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.72K (3719) - BuildRowsPartitionTime: 648.852us - HashTablesBuildTime: 176.234us - InactiveTotalTime: 526.712ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 528.155ms Buffer pool: - AllocTime: 26.960us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 23.531us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 23.51K (23510) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=45): Node Lifecycle Event Timeline: 751.264ms - Open Started: 253.439ms (253.439ms) - Open Finished: 734.001ms (480.561ms) - First Batch Requested: 734.430ms (429.039us) - First Batch Returned: 738.167ms (3.736ms) - Last Batch Returned: 751.119ms (12.951ms) - Closed: 751.264ms (144.748us) - ConvertRowBatchTime: 548.256us - InactiveTotalTime: 496.067ms - PeakMemoryUsage: 240.00 KB (245760) - RowsReturned: 3.72K (3719) - RowsReturnedRate: 7.49 K/sec - TotalTime: 496.715ms Buffer pool: - AllocTime: 175.515us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 816.00 KB (835584) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 240.00 KB (245760) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 240.00 KB (245760) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 126.510us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 480.554ms - TotalBytesDequeued: 583.15 KB (597149) - TotalGetBatchTime: 496.109ms - DataWaitTime: 496.067ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 73.890us ; Min: 27.471us ; Max: 97.871us ; Number of samples: 21) - DeserializeRowBatchTime: 1.662ms - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 346.94 KB (355270) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000002b (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s278ms - Prepare Finished: 11.212ms (11.212ms) - Open Finished: 734.350ms (723.137ms) - First Batch Produced: 738.355ms (4.004ms) - First Batch Sent: 738.542ms (187.458us) - ExecInternal Finished: 1s278ms (539.979ms) - MemoryUsage (500.000ms): 17.12 KB, 8.52 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.74 MB (9168000) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 3.71K (3713) - TotalNetworkReceiveTime: 570.046ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 1s267ms - TotalThreadsSysTime: 5.926ms - TotalThreadsUserTime: 86.762ms - TotalThreadsVoluntaryContextSwitches: 54 (54) - TotalTime: 1s267ms Fragment Instance Lifecycle Timings: - ExecTime: 544.150ms - ExecTreeExecTime: 16.528ms - OpenTime: 723.137ms - ExecTreeOpenTime: 554.201ms - PrepareTime: 352.245us - ExecTreePrepareTime: 142.636us Hash Join Builder (join_node_id=5): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.71K (3713) - BuildRowsPartitionTime: 634.767us - HashTablesBuildTime: 185.474us - InactiveTotalTime: 526.710ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 528.066ms Buffer pool: - AllocTime: 20.806us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 17.771us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 22.68K (22681) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=45): Node Lifecycle Event Timeline: 751.544ms - Open Started: 179.748ms (179.748ms) - Open Finished: 733.948ms (554.200ms) - First Batch Requested: 734.351ms (403.433us) - First Batch Returned: 738.354ms (4.003ms) - Last Batch Returned: 751.392ms (13.037ms) - Closed: 751.544ms (152.541us) - ConvertRowBatchTime: 634.842us - InactiveTotalTime: 570.009ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 3.71K (3713) - RowsReturnedRate: 6.50 K/sec - TotalTime: 570.727ms Buffer pool: - AllocTime: 45.893us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 816.00 KB (835584) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 27.523us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 554.194ms - TotalBytesDequeued: 580.41 KB (594336) - TotalGetBatchTime: 570.039ms - DataWaitTime: 570.009ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 35.002us ; Min: 4.923us ; Max: 140.684us ; Number of samples: 21) - DeserializeRowBatchTime: 490.463us - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 345.46 KB (353749) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000029 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s277ms - Prepare Finished: 206.480ms (206.480ms) - Open Finished: 733.875ms (527.395ms) - First Batch Produced: 737.264ms (3.388ms) - First Batch Sent: 737.889ms (624.533us) - ExecInternal Finished: 1s277ms (539.517ms) - MemoryUsage (500.000ms): 17.12 KB, 8.52 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.78 MB (9208960) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 3.82K (3820) - TotalNetworkReceiveTime: 297.479ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 15 (15) - TotalThreadsTotalWallClockTime: 1s070ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 98.306ms - TotalThreadsVoluntaryContextSwitches: 81 (81) - TotalTime: 1s112ms Fragment Instance Lifecycle Timings: - ExecTime: 543.500ms - ExecTreeExecTime: 14.885ms - OpenTime: 527.378ms - ExecTreeOpenTime: 284.088ms - PrepareTime: 12.031ms - ExecTreePrepareTime: 51.285us Hash Join Builder (join_node_id=5): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.82K (3820) - BuildRowsPartitionTime: 1.962ms - HashTablesBuildTime: 995.494us - InactiveTotalTime: 525.271ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 529.413ms Buffer pool: - AllocTime: 106.725us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 92.982us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 23.85K (23850) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=45): Node Lifecycle Event Timeline: 750.810ms - Open Started: 448.961ms (448.961ms) - Open Finished: 733.048ms (284.086ms) - First Batch Requested: 733.879ms (830.620us) - First Batch Returned: 737.263ms (3.384ms) - Last Batch Returned: 750.352ms (13.089ms) - Closed: 750.810ms (457.159us) - ConvertRowBatchTime: 1.363ms - InactiveTotalTime: 297.354ms - PeakMemoryUsage: 272.00 KB (278528) - RowsReturned: 3.82K (3820) - RowsReturnedRate: 12.78 K/sec - TotalTime: 298.969ms Buffer pool: - AllocTime: 56.409us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 840.00 KB (860160) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 272.00 KB (278528) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 272.00 KB (278528) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 29.510us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 284.080ms - TotalBytesDequeued: 599.64 KB (614030) - TotalGetBatchTime: 297.466ms - DataWaitTime: 297.354ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 54.272us ; Min: 10.996us ; Max: 117.093us ; Number of samples: 21) - DeserializeRowBatchTime: 729.885us - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 356.31 KB (364863) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F14:(Total: 531.004ms, non-child: 233.418ms, % non-child: 43.96%) split sizes: min: 5.49 MB, max: 5.49 MB, avg: 5.49 MB, stddev: 0 completion times: min:1s352ms max:1s352ms mean: 1s352ms stddev:0.000ns execution rates: min:4.06 MB/sec max:4.06 MB/sec mean:4.06 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 14.23 MB (14920783) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 11.25K (11252) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 864.515us - TotalStorageWaitTime: 1.397ms - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 526.664ms - TotalThreadsSysTime: 4.011ms - TotalThreadsUserTime: 91.910ms - TotalThreadsVoluntaryContextSwitches: 95 (95) - TotalTime: 531.004ms Fragment Instance Lifecycle Timings: - ExecTime: 30.817ms - ExecTreeExecTime: 20.566ms - OpenTime: 495.856ms - ExecTreeOpenTime: 266.935ms - PrepareTime: 4.312ms - ExecTreePrepareTime: 55.428us KrpcDataStreamSender (dst_id=45):(Total: 9.992ms, non-child: 9.127ms, % non-child: 91.35%) - NetworkThroughput: (Avg: 121.22 MB/sec ; Min: 35.49 MB/sec ; Max: 494.94 MB/sec ; Number of samples: 63) - RpcNetworkTime: (Avg: 179.107us ; Min: 33.693us ; Max: 472.384us ; Number of samples: 66) - RpcRecvrTime: (Avg: 103.504us ; Min: 8.048us ; Max: 218.535us ; Number of samples: 66) - EosSent: 3 (3) - InactiveTotalTime: 864.515us - PeakMemoryUsage: 755.86 KB (774000) - RowsSent: 11.25K (11252) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.121ms - TotalBytesSent: 1.02 MB (1073882) - TotalTime: 9.992ms - UncompressedRowBatchSize: 1.72 MB (1805515) HDFS_SCAN_NODE (id=1):(Total: 287.593ms, non-child: 287.593ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 393.413us ; Min: 393.413us ; Max: 393.413us ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.952ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 7.505ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 649.34 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 11.25K (11252) - RowsReturnedRate: 39.12 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.397ms - TotalRawHdfsOpenFileTime: 14.678us - TotalRawHdfsReadTime: 5.986ms - TotalReadThroughput: 0.00 /sec - TotalTime: 287.593ms Buffer pool: - AllocTime: 74.967us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 57.879us - 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: 100.00K (100000) - Rows rejected: 88.75K (88748) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F14: Instance f04aed6e613865a1:acb29fb100000028 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.49 MB Fragment Instance Lifecycle Event Timeline: 750.599ms - Prepare Finished: 223.838ms (223.838ms) - Open Finished: 719.705ms (495.866ms) - First Batch Produced: 732.155ms (12.449ms) - First Batch Sent: 732.934ms (779.313us) - ExecInternal Finished: 750.599ms (17.664ms) - MemoryUsage (500.000ms): 12.31 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.26 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 14.23 MB (14920783) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 11.25K (11252) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 864.515us - TotalStorageWaitTime: 1.397ms - TotalThreadsInvoluntaryContextSwitches: 12 (12) - TotalThreadsTotalWallClockTime: 526.664ms - TotalThreadsSysTime: 4.011ms - TotalThreadsUserTime: 91.910ms - TotalThreadsVoluntaryContextSwitches: 95 (95) - TotalTime: 531.004ms Fragment Instance Lifecycle Timings: - ExecTime: 30.817ms - ExecTreeExecTime: 20.566ms - OpenTime: 495.856ms - ExecTreeOpenTime: 266.935ms - PrepareTime: 4.312ms - ExecTreePrepareTime: 55.428us KrpcDataStreamSender (dst_id=45): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 121.22 MB/sec ; Min: 35.49 MB/sec ; Max: 494.94 MB/sec ; Number of samples: 63) - RpcNetworkTime: (Avg: 179.107us ; Min: 33.693us ; Max: 472.384us ; Number of samples: 66) - RpcRecvrTime: (Avg: 103.504us ; Min: 8.048us ; Max: 218.535us ; Number of samples: 66) - EosSent: 3 (3) - InactiveTotalTime: 864.515us - PeakMemoryUsage: 755.86 KB (774000) - RowsSent: 11.25K (11252) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.121ms - TotalBytesSent: 1.02 MB (1073882) - TotalTime: 9.992ms - UncompressedRowBatchSize: 1.72 MB (1805515) HDFS_SCAN_NODE (id=1): Table Name: tpcds_parquet.customer Runtime filters: All filters arrived. Waited 267ms. Maximum arrival delay: 730ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 749.774ms - Open Started: 452.747ms (452.747ms) - Open Finished: 719.680ms (266.932ms) - First Batch Requested: 719.708ms (28.055us) - First Batch Returned: 732.154ms (12.446ms) - Last Batch Returned: 749.746ms (17.591ms) - Closed: 749.774ms (28.000us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 393.413us ; Min: 393.413us ; Max: 393.413us ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.952ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 7.505ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 649.34 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 11.25K (11252) - RowsReturnedRate: 39.12 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.397ms - TotalRawHdfsOpenFileTime: 14.678us - TotalRawHdfsReadTime: 5.986ms - TotalReadThroughput: 0.00 /sec - TotalTime: 287.593ms Buffer pool: - AllocTime: 74.967us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 57.879us - 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: 100.00K (100000) - Rows rejected: 88.75K (88748) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F31 [3 instances]:(Total: 1s159ms, non-child: 221.259ms, % non-child: 19.08%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.407ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 178.296ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 1s158ms - TotalThreadsSysTime: 4.477ms - TotalThreadsUserTime: 87.437ms - TotalThreadsVoluntaryContextSwitches: 62 (62) - TotalTime: 1s159ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 758.146ms - ExecTreeExecTime: 486.362us - OpenTime: 400.649ms - ExecTreeOpenTime: 177.853ms - PrepareTime: 79.265us - ExecTreePrepareTime: 33.592us Hash Join Builder (join_node_id=4) [3 instances]:(Total: 759.742ms, non-child: 2.791ms, % non-child: 0.37%) - BuildRows: 365 (365) - BuildRowsPartitionTime: 388.166us - HashTablesBuildTime: 195.760us - InactiveTotalTime: 756.950ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 759.742ms Buffer pool [3 instances]: - AllocTime: 51.197us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 46.496us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 19.96K (19961) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=43) [3 instances]:(Total: 178.338ms, non-child: 50.050us, % non-child: 0.03%) - ConvertRowBatchTime: 36.100us - InactiveTotalTime: 178.288ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 16.81 K/sec - TotalTime: 178.338ms Buffer pool [3 instances]: - AllocTime: 3.750us - 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.260us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 177.848ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 178.295ms - DataWaitTime: 178.288ms Enqueue [3 instances]: - DispatchTime: (Avg: 49.793us ; Min: 21.541us ; Max: 68.590us ; Number of samples: 3) - DeserializeRowBatchTime: 11.353us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F31: Instance f04aed6e613865a1:acb29fb10000002f (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s277ms - Prepare Finished: 10.946ms (10.946ms) - Open Finished: 490.889ms (479.943ms) - First Batch Produced: 492.249ms (1.359ms) - First Batch Sent: 492.389ms (140.168us) - ExecInternal Finished: 1s277ms (785.550ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 296.019ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 19 (19) - TotalThreadsTotalWallClockTime: 1s266ms - TotalThreadsSysTime: 3.599ms - TotalThreadsUserTime: 89.959ms - TotalThreadsVoluntaryContextSwitches: 43 (43) - TotalTime: 1s267ms Fragment Instance Lifecycle Timings: - ExecTime: 787.031ms - ExecTreeExecTime: 1.358ms - OpenTime: 479.939ms - ExecTreeOpenTime: 294.699ms - PrepareTime: 89.361us - ExecTreePrepareTime: 37.749us Hash Join Builder (join_node_id=4): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 2 of 2 Runtime Filters Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 137.864us - HashTablesBuildTime: 104.817us - InactiveTotalTime: 785.298ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 786.270ms Buffer pool: - AllocTime: 55.897us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 51.468us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 19.49K (19490) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=43): Node Lifecycle Event Timeline: 492.427ms - Open Started: 195.633ms (195.633ms) - Open Finished: 490.331ms (294.698ms) - First Batch Requested: 490.891ms (559.774us) - First Batch Returned: 492.247ms (1.356ms) - Last Batch Returned: 492.247ms (209.000ns) - Closed: 492.427ms (179.682us) - ConvertRowBatchTime: 30.456us - InactiveTotalTime: 296.014ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 1.23 K/sec - TotalTime: 296.055ms Buffer pool: - AllocTime: 5.214us - 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.365us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 294.693ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 296.018ms - DataWaitTime: 296.014ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 21.541us ; Min: 21.541us ; Max: 21.541us ; Number of samples: 1) - DeserializeRowBatchTime: 12.990us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000002e (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s250ms - Prepare Finished: 3.304ms (3.304ms) - Open Finished: 490.796ms (487.491ms) - First Batch Produced: 490.849ms (52.819us) - First Batch Sent: 490.940ms (90.987us) - ExecInternal Finished: 1s250ms (759.351ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 231.252ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 1s246ms - TotalThreadsSysTime: 9.833ms - TotalThreadsUserTime: 81.904ms - TotalThreadsVoluntaryContextSwitches: 81 (81) - TotalTime: 1s247ms Fragment Instance Lifecycle Timings: - ExecTime: 759.465ms - ExecTreeExecTime: 51.541us - OpenTime: 487.488ms - ExecTreeOpenTime: 231.244ms - PrepareTime: 56.311us - ExecTreePrepareTime: 28.276us Hash Join Builder (join_node_id=4): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 2 of 2 Runtime Filters Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 89.014us - HashTablesBuildTime: 146.590us - InactiveTotalTime: 759.053ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 759.993ms Buffer pool: - AllocTime: 45.889us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.360us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 20.66K (20660) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=43): Node Lifecycle Event Timeline: 490.978ms - Open Started: 259.005ms (259.005ms) - Open Finished: 490.248ms (231.243ms) - First Batch Requested: 490.798ms (549.516us) - First Batch Returned: 490.848ms (50.439us) - Last Batch Returned: 490.848ms (131.000ns) - Closed: 490.978ms (130.157us) - ConvertRowBatchTime: 38.214us - InactiveTotalTime: 231.240ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 1.58 K/sec - TotalTime: 231.295ms Buffer pool: - AllocTime: 917.000ns - 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 - FirstBatchWaitTime: 231.240ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 231.251ms - DataWaitTime: 231.240ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 68.590us ; Min: 68.590us ; Max: 68.590us ; Number of samples: 1) - DeserializeRowBatchTime: 8.277us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000002d (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s225ms - Prepare Finished: 262.574ms (262.574ms) - Open Finished: 497.105ms (234.531ms) - First Batch Produced: 497.171ms (65.738us) - First Batch Sent: 498.111ms (939.894us) - ExecInternal Finished: 1s225ms (726.976ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 7.617ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 27 (27) - TotalThreadsTotalWallClockTime: 962.457ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 90.448ms - TotalThreadsVoluntaryContextSwitches: 62 (62) - TotalTime: 963.921ms Fragment Instance Lifecycle Timings: - ExecTime: 727.941ms - ExecTreeExecTime: 49.511us - OpenTime: 234.522ms - ExecTreeOpenTime: 7.616ms - PrepareTime: 92.123us - ExecTreePrepareTime: 34.751us Hash Join Builder (join_node_id=4): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 2 of 2 Runtime Filters Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 937.620us - HashTablesBuildTime: 335.875us - InactiveTotalTime: 726.499ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 732.962ms Buffer pool: - AllocTime: 51.807us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 45.660us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 19.73K (19734) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=43): Node Lifecycle Event Timeline: 498.147ms - Open Started: 484.441ms (484.441ms) - Open Finished: 492.055ms (7.614ms) - First Batch Requested: 497.109ms (5.053ms) - First Batch Returned: 497.157ms (48.113us) - Last Batch Returned: 497.157ms (128.000ns) - Closed: 498.147ms (989.719us) - ConvertRowBatchTime: 39.632us - InactiveTotalTime: 7.610ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 47.62 K/sec - TotalTime: 7.663ms Buffer pool: - AllocTime: 5.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: 4.762us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 7.610ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 7.616ms - DataWaitTime: 7.610ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 59.249us ; Min: 59.249us ; Max: 59.249us ; Number of samples: 1) - DeserializeRowBatchTime: 12.792us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F13:(Total: 241.013ms, non-child: 140.598ms, % non-child: 58.34%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s352ms max:1s352ms mean: 1s352ms stddev:0.000ns execution rates: min:1.59 MB/sec max:1.59 MB/sec mean:1.59 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 895.94 KB (917444) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.997ms - TotalStorageWaitTime: 69.444ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 229.104ms - TotalThreadsSysTime: 3.801ms - TotalThreadsUserTime: 34.063ms - TotalThreadsVoluntaryContextSwitches: 47 (47) - TotalTime: 241.013ms Fragment Instance Lifecycle Timings: - ExecTime: 100.314ms - ExecTreeExecTime: 98.084ms - OpenTime: 128.794ms - ExecTreeOpenTime: 74.119us - PrepareTime: 213.668us - ExecTreePrepareTime: 32.137us KrpcDataStreamSender (dst_id=43):(Total: 2.208ms, non-child: 210.107us, % non-child: 9.52%) - NetworkThroughput: (Avg: 13.71 MB/sec ; Min: 6.36 MB/sec ; Max: 23.69 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 415.525us ; Min: 44.619us ; Max: 1.559ms ; Number of samples: 6) - RpcRecvrTime: (Avg: 46.345us ; Min: 14.283us ; Max: 84.032us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 1.997ms - PeakMemoryUsage: 49.10 KB (50280) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.927us - TotalBytesSent: 8.59 KB (8793) - TotalTime: 2.208ms - UncompressedRowBatchSize: 18.18 KB (18615) HDFS_SCAN_NODE (id=3):(Total: 98.207ms, non-child: 98.207ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 66.725ms ; Min: 66.725ms ; Max: 66.725ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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: 24.262ms ; Min: 24.262ms ; Max: 24.262ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 64.650us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 457.545us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 8.83 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 3.72 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 69.444ms - TotalRawHdfsOpenFileTime: 17.611ms - TotalRawHdfsReadTime: 51.599ms - TotalReadThroughput: 0.00 /sec - TotalTime: 98.207ms Buffer pool: - AllocTime: 2.849ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.844ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F13: Instance f04aed6e613865a1:acb29fb10000002c (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 491.463ms - Prepare Finished: 262.328ms (262.328ms) - Open Finished: 391.124ms (128.796ms) - First Batch Produced: 489.079ms (97.954ms) - First Batch Sent: 489.239ms (160.252us) - ExecInternal Finished: 491.463ms (2.223ms) - MemoryUsage (500.000ms): 50.66 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.02 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 895.94 KB (917444) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.997ms - TotalStorageWaitTime: 69.444ms - TotalThreadsInvoluntaryContextSwitches: 8 (8) - TotalThreadsTotalWallClockTime: 229.104ms - TotalThreadsSysTime: 3.801ms - TotalThreadsUserTime: 34.063ms - TotalThreadsVoluntaryContextSwitches: 47 (47) - TotalTime: 241.013ms Fragment Instance Lifecycle Timings: - ExecTime: 100.314ms - ExecTreeExecTime: 98.084ms - OpenTime: 128.794ms - ExecTreeOpenTime: 74.119us - PrepareTime: 213.668us - ExecTreePrepareTime: 32.137us KrpcDataStreamSender (dst_id=43): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 13.71 MB/sec ; Min: 6.36 MB/sec ; Max: 23.69 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 415.525us ; Min: 44.619us ; Max: 1.559ms ; Number of samples: 6) - RpcRecvrTime: (Avg: 46.345us ; Min: 14.283us ; Max: 84.032us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 1.997ms - PeakMemoryUsage: 49.10 KB (50280) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.927us - TotalBytesSent: 8.59 KB (8793) - TotalTime: 2.208ms - UncompressedRowBatchSize: 18.18 KB (18615) HDFS_SCAN_NODE (id=3): Table Name: tpcds_parquet.date_dim 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 489.419ms - Open Started: 391.044ms (391.044ms) - Open Finished: 391.117ms (72.779us) - First Batch Requested: 391.125ms (8.156us) - First Batch Returned: 489.078ms (97.952ms) - Last Batch Returned: 489.371ms (293.184us) - Closed: 489.419ms (48.133us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 66.725ms ; Min: 66.725ms ; Max: 66.725ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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: 24.262ms ; Min: 24.262ms ; Max: 24.262ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 64.650us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 457.545us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 8.83 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 3.72 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 69.444ms - TotalRawHdfsOpenFileTime: 17.611ms - TotalRawHdfsReadTime: 51.599ms - TotalReadThroughput: 0.00 /sec - TotalTime: 98.207ms Buffer pool: - AllocTime: 2.849ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 2.844ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F32 [3 instances]:(Total: 1s231ms, non-child: 177.967ms, % non-child: 14.45%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.375ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.07 MB (2169301) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 1.33K (1326) - TotalNetworkReceiveTime: 801.517ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 20 (20) - TotalThreadsTotalWallClockTime: 1s229ms - TotalThreadsSysTime: 1.357ms - TotalThreadsUserTime: 94.421ms - TotalThreadsVoluntaryContextSwitches: 41 (41) - TotalTime: 1s231ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 252.120ms - ExecTreeExecTime: 284.645us - OpenTime: 977.575ms - ExecTreeOpenTime: 801.346ms - PrepareTime: 114.400us - ExecTreePrepareTime: 47.115us Hash Join Builder (join_node_id=28) [3 instances]:(Total: 252.399ms, non-child: 1.035ms, % non-child: 0.41%) - BuildRows: 1.33K (1326) - BuildRowsPartitionTime: 224.951us - HashTablesBuildTime: 150.031us - InactiveTotalTime: 251.363ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2057344) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 252.399ms Buffer pool [3 instances]: - AllocTime: 37.105us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 33.228us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 2.94K (2944) - HashCollisions: 0 (0) - Probes: 2.76K (2758) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=42) [3 instances]:(Total: 801.629ms, non-child: 118.763us, % non-child: 0.01%) - ConvertRowBatchTime: 102.493us - InactiveTotalTime: 801.510ms - PeakMemoryUsage: 109.33 KB (111957) - RowsReturned: 1.33K (1326) - RowsReturnedRate: 1.66 K/sec - TotalTime: 801.629ms Buffer pool [3 instances]: - AllocTime: 5.355us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 109.33 KB (111957) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 109.33 KB (111957) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.536us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 801.340ms - TotalBytesDequeued: 68.63 KB (70278) - TotalGetBatchTime: 801.515ms - DataWaitTime: 801.510ms Enqueue [3 instances]: - DispatchTime: (Avg: 15.034us ; Min: 6.400us ; Max: 24.628us ; Number of samples: 9) - DeserializeRowBatchTime: 48.167us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 27.88 KB (28546) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F32: Instance f04aed6e613865a1:acb29fb100000038 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s332ms - Prepare Finished: 1.449ms (1.449ms) - Open Finished: 1s081ms (1s080ms) - First Batch Produced: 1s082ms (233.799us) - First Batch Sent: 1s082ms (199.206us) - ExecInternal Finished: 1s332ms (250.418ms) - MemoryUsage (500.000ms): 25.12 KB, 25.12 KB, 1.96 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.06 MB (2163840) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 1.33K (1326) - TotalNetworkReceiveTime: 823.926ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 1s331ms - TotalThreadsSysTime: 4.070ms - TotalThreadsUserTime: 118.055ms - TotalThreadsVoluntaryContextSwitches: 81 (81) - TotalTime: 1s331ms Fragment Instance Lifecycle Timings: - ExecTime: 250.808ms - ExecTreeExecTime: 327.774us - OpenTime: 1s080ms - ExecTreeOpenTime: 823.726ms - PrepareTime: 83.945us - ExecTreePrepareTime: 38.915us Hash Join Builder (join_node_id=28): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 1.33K (1326) - BuildRowsPartitionTime: 240.596us - HashTablesBuildTime: 156.832us - InactiveTotalTime: 249.958ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2057344) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 250.992ms Buffer pool: - AllocTime: 35.772us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 31.379us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.94K (2944) - HashCollisions: 0 (0) - Probes: 2.81K (2808) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=42): Node Lifecycle Event Timeline: 1s082ms - Open Started: 257.719ms (257.719ms) - Open Finished: 1s081ms (823.725ms) - First Batch Requested: 1s081ms (472.263us) - First Batch Returned: 1s082ms (232.057us) - Last Batch Returned: 1s082ms (295.019us) - Closed: 1s082ms (65.777us) - ConvertRowBatchTime: 113.860us - InactiveTotalTime: 823.920ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 1.33K (1326) - RowsReturnedRate: 1.61 K/sec - TotalTime: 824.052ms Buffer pool: - AllocTime: 3.666us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - 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: 823.721ms - TotalBytesDequeued: 68.63 KB (70278) - TotalGetBatchTime: 823.925ms - DataWaitTime: 823.920ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 14.965us ; Min: 13.145us ; Max: 16.084us ; Number of samples: 3) - DeserializeRowBatchTime: 41.291us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 27.88 KB (28546) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000037 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s334ms - Prepare Finished: 28.653ms (28.653ms) - Open Finished: 1s082ms (1s053ms) - First Batch Produced: 1s082ms (259.380us) - First Batch Sent: 1s082ms (200.234us) - ExecInternal Finished: 1s334ms (252.324ms) - MemoryUsage (500.000ms): 25.12 KB, 25.12 KB, 1.96 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.06 MB (2163840) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 1.33K (1326) - TotalNetworkReceiveTime: 850.120ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 35 (35) - TotalThreadsTotalWallClockTime: 1s306ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 136.153ms - TotalThreadsVoluntaryContextSwitches: 17 (17) - TotalTime: 1s312ms Fragment Instance Lifecycle Timings: - ExecTime: 252.751ms - ExecTreeExecTime: 365.547us - OpenTime: 1s053ms - ExecTreeOpenTime: 849.865ms - PrepareTime: 147.275us - ExecTreePrepareTime: 59.734us Hash Join Builder (join_node_id=28): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 1.33K (1326) - BuildRowsPartitionTime: 240.885us - HashTablesBuildTime: 163.825us - InactiveTotalTime: 251.900ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2057344) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 252.848ms Buffer pool: - AllocTime: 45.986us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 42.518us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.94K (2944) - HashCollisions: 0 (0) - Probes: 2.76K (2757) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=42): Node Lifecycle Event Timeline: 1s082ms - Open Started: 231.861ms (231.861ms) - Open Finished: 1s081ms (849.864ms) - First Batch Requested: 1s082ms (437.594us) - First Batch Returned: 1s082ms (256.880us) - Last Batch Returned: 1s082ms (309.323us) - Closed: 1s082ms (59.715us) - ConvertRowBatchTime: 100.358us - InactiveTotalTime: 850.113ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 1.33K (1326) - RowsReturnedRate: 1.56 K/sec - TotalTime: 850.229ms Buffer pool: - AllocTime: 7.912us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 4.608us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 849.860ms - TotalBytesDequeued: 68.63 KB (70278) - TotalGetBatchTime: 850.119ms - DataWaitTime: 850.113ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 15.092us ; Min: 6.400us ; Max: 21.427us ; Number of samples: 3) - DeserializeRowBatchTime: 50.963us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 27.88 KB (28546) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000039 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s334ms - Prepare Finished: 282.560ms (282.560ms) - Open Finished: 1s081ms (798.764ms) - First Batch Produced: 1s081ms (78.334us) - First Batch Sent: 1s081ms (149.487us) - ExecInternal Finished: 1s334ms (252.584ms) - MemoryUsage (500.000ms): 25.12 KB, 25.12 KB, 1.96 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 2.08 MB (2180224) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 1.33K (1326) - TotalNetworkReceiveTime: 730.504ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 9 (9) - TotalThreadsTotalWallClockTime: 1s051ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 29.056ms - TotalThreadsVoluntaryContextSwitches: 25 (25) - TotalTime: 1s051ms Fragment Instance Lifecycle Timings: - ExecTime: 252.802ms - ExecTreeExecTime: 160.614us - OpenTime: 798.760ms - ExecTreeOpenTime: 730.446ms - PrepareTime: 111.982us - ExecTreePrepareTime: 42.697us Hash Join Builder (join_node_id=28): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 1.33K (1326) - BuildRowsPartitionTime: 193.372us - HashTablesBuildTime: 129.437us - InactiveTotalTime: 252.231ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.96 MB (2057344) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 253.355ms Buffer pool: - AllocTime: 29.559us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 25.787us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 2.94K (2944) - HashCollisions: 0 (0) - Probes: 2.71K (2709) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=42): Node Lifecycle Event Timeline: 1s081ms - Open Started: 350.200ms (350.200ms) - Open Finished: 1s080ms (730.445ms) - First Batch Requested: 1s081ms (681.058us) - First Batch Returned: 1s081ms (76.836us) - Last Batch Returned: 1s081ms (232.727us) - Closed: 1s081ms (64.617us) - ConvertRowBatchTime: 93.262us - InactiveTotalTime: 730.498ms - PeakMemoryUsage: 120.00 KB (122880) - RowsReturned: 1.33K (1326) - RowsReturnedRate: 1.81 K/sec - TotalTime: 730.605ms Buffer pool: - AllocTime: 4.487us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - 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 (500.000ms): 0, 0 - FirstBatchWaitTime: 730.438ms - TotalBytesDequeued: 68.63 KB (70278) - TotalGetBatchTime: 730.503ms - DataWaitTime: 730.498ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 15.046us ; Min: 7.622us ; Max: 24.628us ; Number of samples: 3) - DeserializeRowBatchTime: 52.249us - TotalBatchesEnqueued: 3 (3) - TotalBatchesReceived: 3 (3) - TotalBytesReceived: 27.88 KB (28546) - TotalEarlySenders: 0 (0) - TotalEosReceived: 3 (3) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F11 [3 instances]:(Total: 993.061ms, non-child: 509.688ms, % non-child: 51.32%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.332ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.23 MB (18066101) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 442 (442) - TotalNetworkReceiveTime: 481.352ms - TotalNetworkSendTime: 270.006us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 38 (38) - TotalThreadsTotalWallClockTime: 992.865ms - TotalThreadsSysTime: 5.373ms - TotalThreadsUserTime: 390.595ms - TotalThreadsVoluntaryContextSwitches: 58 (58) - TotalTime: 993.061ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 890.424us - ExecTreeExecTime: 508.057us - OpenTime: 991.979ms - ExecTreeOpenTime: 482.369ms - PrepareTime: 168.942us - ExecTreePrepareTime: 97.018us KrpcDataStreamSender (dst_id=42) [3 instances]:(Total: 400.379us, non-child: 130.372us, % non-child: 32.56%) - NetworkThroughput: (Avg: 114.03 MB/sec ; Min: 30.66 MB/sec ; Max: 178.75 MB/sec ; Number of samples: 9) - RpcNetworkTime: (Avg: 73.045us ; Min: 21.677us ; Max: 288.374us ; Number of samples: 18) - RpcRecvrTime: (Avg: 23.254us ; Min: 7.716us ; Max: 54.784us ; Number of samples: 18) - EosSent: 3 (3) - InactiveTotalTime: 270.006us - PeakMemoryUsage: 52.16 KB (53411) - RowsSent: 442 (442) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 60.402us - TotalBytesSent: 27.88 KB (28546) - TotalTime: 400.379us - UncompressedRowBatchSize: 68.63 KB (70278) UNION_NODE (id=14) [3 instances]:(Total: 482.972ms, non-child: 113.073us, % non-child: 0.02%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 442 (442) - RowsReturnedRate: 965.00 /sec - TotalTime: 482.972ms AGGREGATION_NODE (id=41) [3 instances]:(Total: 482.859ms, non-child: 1.437ms, % non-child: 0.30%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 442 (442) - RowsReturnedRate: 965.00 /sec - TotalTime: 482.859ms GroupingAggregator 0 [3 instances]: - BuildTime: 349.551us - GetResultsTime: 228.739us - HTResizeTime: 2.625us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 442 (442) - SpilledPartitions: 0 (0) Buffer pool [3 instances]: - AllocTime: 67.024us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 59.298us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - Probes: 442 (442) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=40) [3 instances]:(Total: 481.421ms, non-child: 82.561us, % non-child: 0.02%) - ConvertRowBatchTime: 55.089us - InactiveTotalTime: 481.339ms - PeakMemoryUsage: 101.33 KB (103765) - RowsReturned: 442 (442) - RowsReturnedRate: 969.00 /sec - TotalTime: 481.421ms Buffer pool [3 instances]: - AllocTime: 11.082us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 125.33 KB (128341) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 101.33 KB (103765) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 101.33 KB (103765) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 6.175us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 479.426ms - TotalBytesDequeued: 76.69 KB (78534) - TotalGetBatchTime: 481.350ms - DataWaitTime: 481.339ms Enqueue [3 instances]: - DispatchTime: (Avg: 23.271us ; Min: 14.963us ; Max: 32.930us ; Number of samples: 12) - DeserializeRowBatchTime: 82.514us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 43.26 KB (44300) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F11: Instance f04aed6e613865a1:acb29fb100000034 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s082ms - Prepare Finished: 354.893us (354.893us) - Open Finished: 1s081ms (1s081ms) - First Batch Produced: 1s082ms (517.538us) - First Batch Sent: 1s082ms (116.183us) - ExecInternal Finished: 1s082ms (288.429us) - MemoryUsage (500.000ms): 125.34 KB, 125.34 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.23 MB (18068832) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 447 (447) - TotalNetworkReceiveTime: 590.175ms - TotalNetworkSendTime: 259.892us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 41 (41) - TotalThreadsTotalWallClockTime: 1s082ms - TotalThreadsSysTime: 4.054ms - TotalThreadsUserTime: 411.386ms - TotalThreadsVoluntaryContextSwitches: 60 (60) - TotalTime: 1s082ms Fragment Instance Lifecycle Timings: - ExecTime: 912.718us - ExecTreeExecTime: 516.172us - OpenTime: 1s081ms - ExecTreeOpenTime: 591.551ms - PrepareTime: 164.636us - ExecTreePrepareTime: 80.505us KrpcDataStreamSender (dst_id=42): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 92.96 MB/sec ; Min: 80.19 MB/sec ; Max: 102.63 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 75.555us ; Min: 35.941us ; Max: 114.143us ; Number of samples: 6) - RpcRecvrTime: (Avg: 28.891us ; Min: 12.771us ; Max: 54.784us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 259.892us - PeakMemoryUsage: 52.60 KB (53862) - RowsSent: 447 (447) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 77.801us - TotalBytesSent: 28.12 KB (28794) - TotalTime: 411.659us - UncompressedRowBatchSize: 69.41 KB (71073) UNION_NODE (id=14): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s082ms - Open Started: 489.966ms (489.966ms) - Open Finished: 1s081ms (591.550ms) - First Batch Requested: 1s081ms (12.713us) - First Batch Returned: 1s082ms (514.746us) - Last Batch Returned: 1s082ms (158.000ns) - Closed: 1s082ms (120.801us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 447 (447) - RowsReturnedRate: 754.00 /sec - TotalTime: 592.146ms AGGREGATION_NODE (id=41): Node Lifecycle Event Timeline: 1s082ms - Open Started: 489.969ms (489.969ms) - Open Finished: 1s081ms (591.545ms) - First Batch Requested: 1s081ms (22.461us) - First Batch Returned: 1s081ms (22.325us) - Last Batch Returned: 1s082ms (449.645us) - Closed: 1s082ms (33.466us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 447 (447) - RowsReturnedRate: 754.00 /sec - TotalTime: 592.058ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 415.016us - GetResultsTime: 247.705us - HTResizeTime: 2.689us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 447 (447) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 59.438us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 50.679us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - Probes: 447 (447) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=40): Node Lifecycle Event Timeline: 1s081ms - Open Started: 489.970ms (489.970ms) - Open Finished: 1s078ms (588.528ms) - First Batch Requested: 1s079ms (796.829us) - First Batch Returned: 1s081ms (1.741ms) - Last Batch Returned: 1s081ms (271.000ns) - Closed: 1s081ms (453.041us) - ConvertRowBatchTime: 77.824us - InactiveTotalTime: 590.154ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 447 (447) - RowsReturnedRate: 757.00 /sec - TotalTime: 590.271ms Buffer pool: - AllocTime: 23.148us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 18.526us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 588.523ms - TotalBytesDequeued: 77.61 KB (79477) - TotalGetBatchTime: 590.173ms - DataWaitTime: 590.154ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 24.641us ; Min: 17.617us ; Max: 29.600us ; Number of samples: 4) - DeserializeRowBatchTime: 93.492us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 43.65 KB (44701) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000035 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s081ms - Prepare Finished: 1.513ms (1.513ms) - Open Finished: 1s081ms (1s079ms) - First Batch Produced: 1s081ms (329.662us) - First Batch Sent: 1s081ms (48.161us) - ExecInternal Finished: 1s081ms (200.847us) - MemoryUsage (500.000ms): 125.34 KB, 125.34 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.22 MB (18060640) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 450 (450) - TotalNetworkReceiveTime: 521.079ms - TotalNetworkSendTime: 179.288us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 45 (45) - TotalThreadsTotalWallClockTime: 1s080ms - TotalThreadsSysTime: 12.067ms - TotalThreadsUserTime: 398.164ms - TotalThreadsVoluntaryContextSwitches: 60 (60) - TotalTime: 1s080ms Fragment Instance Lifecycle Timings: - ExecTime: 569.874us - ExecTreeExecTime: 329.086us - OpenTime: 1s079ms - ExecTreeOpenTime: 521.709ms - PrepareTime: 174.302us - ExecTreePrepareTime: 111.476us KrpcDataStreamSender (dst_id=42): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 163.63 MB/sec ; Min: 136.14 MB/sec ; Max: 178.75 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 48.592us ; Min: 21.677us ; Max: 67.902us ; Number of samples: 6) - RpcRecvrTime: (Avg: 21.197us ; Min: 7.716us ; Max: 35.750us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 179.288us - PeakMemoryUsage: 52.86 KB (54133) - RowsSent: 450 (450) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 30.853us - TotalBytesSent: 28.35 KB (29034) - TotalTime: 261.601us - UncompressedRowBatchSize: 69.87 KB (71550) UNION_NODE (id=14): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s081ms - Open Started: 559.292ms (559.292ms) - Open Finished: 1s081ms (521.708ms) - First Batch Requested: 1s081ms (9.684us) - First Batch Returned: 1s081ms (328.225us) - Last Batch Returned: 1s081ms (96.000ns) - Closed: 1s081ms (50.259us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 450 (450) - RowsReturnedRate: 861.00 /sec - TotalTime: 522.148ms AGGREGATION_NODE (id=41): Node Lifecycle Event Timeline: 1s081ms - Open Started: 559.295ms (559.295ms) - Open Finished: 1s080ms (521.704ms) - First Batch Requested: 1s081ms (14.512us) - First Batch Returned: 1s081ms (16.771us) - Last Batch Returned: 1s081ms (282.668us) - Closed: 1s081ms (24.284us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 450 (450) - RowsReturnedRate: 861.00 /sec - TotalTime: 522.093ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 179.258us - GetResultsTime: 167.517us - HTResizeTime: 2.312us - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 450 (450) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 26.767us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 22.893us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - Probes: 450 (450) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=40): Node Lifecycle Event Timeline: 1s080ms - Open Started: 559.296ms (559.296ms) - Open Finished: 1s078ms (518.974ms) - First Batch Requested: 1s078ms (337.170us) - First Batch Returned: 1s080ms (2.147ms) - Last Batch Returned: 1s080ms (118.000ns) - Closed: 1s080ms (228.077us) - ConvertRowBatchTime: 33.944us - InactiveTotalTime: 521.071ms - PeakMemoryUsage: 96.00 KB (98304) - RowsReturned: 450 (450) - RowsReturnedRate: 863.00 /sec - TotalTime: 521.123ms Buffer pool: - AllocTime: 4.954us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 8 (8) - 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 (500.000ms): 0, 0 - FirstBatchWaitTime: 518.971ms - TotalBytesDequeued: 77.99 KB (79859) - TotalGetBatchTime: 521.077ms - DataWaitTime: 521.071ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 18.200us ; Min: 14.963us ; Max: 23.513us ; Number of samples: 4) - DeserializeRowBatchTime: 67.062us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 44.12 KB (45182) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000036 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s081ms - Prepare Finished: 265.202ms (265.202ms) - Open Finished: 1s080ms (815.284ms) - First Batch Produced: 1s081ms (680.231us) - First Batch Sent: 1s081ms (114.516us) - ExecInternal Finished: 1s081ms (400.208us) - MemoryUsage (500.000ms): 125.34 KB, 125.34 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.23 MB (18068832) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 429 (429) - TotalNetworkReceiveTime: 332.802ms - TotalNetworkSendTime: 370.840us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 29 (29) - TotalThreadsTotalWallClockTime: 816.463ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 362.236ms - TotalThreadsVoluntaryContextSwitches: 56 (56) - TotalTime: 816.657ms Fragment Instance Lifecycle Timings: - ExecTime: 1.188ms - ExecTreeExecTime: 678.915us - OpenTime: 815.279ms - ExecTreeOpenTime: 333.847ms - PrepareTime: 167.889us - ExecTreePrepareTime: 99.075us KrpcDataStreamSender (dst_id=42): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 85.52 MB/sec ; Min: 30.66 MB/sec ; Max: 127.07 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 94.988us ; Min: 27.729us ; Max: 288.374us ; Number of samples: 6) - RpcRecvrTime: (Avg: 19.675us ; Min: 10.453us ; Max: 31.523us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 370.840us - PeakMemoryUsage: 51.01 KB (52239) - RowsSent: 429 (429) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 72.552us - TotalBytesSent: 27.16 KB (27810) - TotalTime: 527.878us - UncompressedRowBatchSize: 66.61 KB (68211) UNION_NODE (id=14): ExecOption: Codegen Enabled Node Lifecycle Event Timeline: 1s081ms - Open Started: 746.630ms (746.630ms) - Open Finished: 1s080ms (333.845ms) - First Batch Requested: 1s080ms (12.835us) - First Batch Returned: 1s081ms (677.712us) - Last Batch Returned: 1s081ms (152.000ns) - Closed: 1s081ms (119.530us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.00 KB (8192) - RowsReturned: 429 (429) - RowsReturnedRate: 1.28 K/sec - TotalTime: 334.623ms AGGREGATION_NODE (id=41): Node Lifecycle Event Timeline: 1s081ms - Open Started: 746.632ms (746.632ms) - Open Finished: 1s080ms (333.841ms) - First Batch Requested: 1s080ms (22.869us) - First Batch Returned: 1s080ms (39.121us) - Last Batch Returned: 1s081ms (479.355us) - Closed: 1s081ms (149.559us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.11 MB (17940608) - RowsReturned: 429 (429) - RowsReturnedRate: 1.28 K/sec - TotalTime: 334.426ms GroupingAggregator 0: ExecOption: Codegen Enabled - BuildTime: 454.381us - GetResultsTime: 270.996us - HTResizeTime: 2.874us - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.11 MB (17936512) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - RowsRepartitioned: 0 (0) - RowsReturned: 429 (429) - SpilledPartitions: 0 (0) Buffer pool: - AllocTime: 114.868us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 104.322us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - Probes: 429 (429) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=40): Node Lifecycle Event Timeline: 1s080ms - Open Started: 746.633ms (746.633ms) - Open Finished: 1s077ms (330.789ms) - First Batch Requested: 1s077ms (459.041us) - First Batch Returned: 1s079ms (2.079ms) - Last Batch Returned: 1s079ms (315.000ns) - Closed: 1s080ms (488.802us) - ConvertRowBatchTime: 53.501us - InactiveTotalTime: 332.791ms - PeakMemoryUsage: 104.00 KB (106496) - RowsReturned: 429 (429) - RowsReturnedRate: 1.29 K/sec - TotalTime: 332.870ms Buffer pool: - AllocTime: 5.144us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 128.00 KB (131072) - CumulativeAllocations: 8 (8) - EncryptionTime: 0.000ns - PeakReservation: 104.00 KB (106496) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 104.00 KB (106496) - 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: 330.785ms - TotalBytesDequeued: 74.48 KB (76266) - TotalGetBatchTime: 332.800ms - DataWaitTime: 332.791ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 26.972us ; Min: 21.993us ; Max: 32.930us ; Number of samples: 4) - DeserializeRowBatchTime: 86.988us - TotalBatchesEnqueued: 4 (4) - TotalBatchesReceived: 4 (4) - TotalBytesReceived: 42.01 KB (43018) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F08 [2 instances]:(Total: 940.483ms, non-child: 491.650ms, % non-child: 52.28%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s352ms mean: 1s352ms stddev:581.549us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.42 MB (19314672) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 663 (663) - TotalNetworkReceiveTime: 374.453ms - TotalNetworkSendTime: 343.599us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 72 (72) - TotalThreadsTotalWallClockTime: 940.225ms - TotalThreadsSysTime: 7.961ms - TotalThreadsUserTime: 371.481ms - TotalThreadsVoluntaryContextSwitches: 65 (65) - TotalTime: 940.483ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 29.158ms - ExecTreeExecTime: 27.503ms - OpenTime: 911.071ms - ExecTreeOpenTime: 419.547ms - PrepareTime: 232.300us - ExecTreePrepareTime: 153.079us KrpcDataStreamSender (dst_id=40) [2 instances]:(Total: 1.634ms, non-child: 1.290ms, % non-child: 78.97%) - NetworkThroughput: (Avg: 114.45 MB/sec ; Min: 42.58 MB/sec ; Max: 208.21 MB/sec ; Number of samples: 12) - RpcNetworkTime: (Avg: 89.593us ; Min: 32.844us ; Max: 188.686us ; Number of samples: 18) - RpcRecvrTime: (Avg: 37.969us ; Min: 11.807us ; Max: 65.489us ; Number of samples: 18) - EosSent: 3 (3) - InactiveTotalTime: 343.599us - PeakMemoryUsage: 247.72 KB (253665) - RowsSent: 663 (663) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 389.349us - TotalBytesSent: 64.89 KB (66450) - TotalTime: 1.634ms - UncompressedRowBatchSize: 115.04 KB (117801) AGGREGATION_NODE (id=20) [2 instances]:(Total: 447.199ms, non-child: 3.742ms, % non-child: 0.84%) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.13 MB (17956992) - RowsReturned: 663 (663) - RowsReturnedRate: 1.54 K/sec - TotalTime: 447.199ms GroupingAggregator 0 [2 instances]: - BuildTime: 0.000ns - GetResultsTime: 201.109us - HTResizeTime: 65.845us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.10 MB (17932416) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 663 (663) - StreamingTime: 3.126ms Buffer pool [2 instances]: - AllocTime: 748.708us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 743.382us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 8.40K (8400) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=19) [2 instances]:(Total: 443.456ms, non-child: 584.892us, % non-child: 0.13%) - InactiveTotalTime: 145.843us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 8.40K (8400) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 459.859us - RowsReturned: 8.40K (8400) - RowsReturnedRate: 19.74 K/sec - TotalTime: 443.456ms Buffer pool [2 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=18) [2 instances]:(Total: 442.726ms, non-child: 2.650ms, % non-child: 0.60%) - InactiveTotalTime: 56.088ms - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 54.14K (54141) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.321ms - RowsReturned: 8.40K (8400) - RowsReturnedRate: 19.78 K/sec - TotalTime: 442.726ms Buffer pool [2 instances]: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=37) [2 instances]:(Total: 383.987ms, non-child: 9.660ms, % non-child: 2.52%) - ConvertRowBatchTime: 9.426ms - InactiveTotalTime: 374.327ms - PeakMemoryUsage: 1.23 MB (1286144) - RowsReturned: 54.14K (54141) - RowsReturnedRate: 147.15 K/sec - TotalTime: 383.987ms Buffer pool [2 instances]: - AllocTime: 485.128us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.34 MB (1400832) - CumulativeAllocations: 115 (115) - EncryptionTime: 0.000ns - PeakReservation: 1.23 MB (1286144) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1286144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 349.496us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 361.075ms - TotalBytesDequeued: 1.29 MB (1353525) - TotalGetBatchTime: 374.443ms - DataWaitTime: 374.327ms Enqueue [2 instances]: - DispatchTime: (Avg: 51.668us ; Min: 6.327us ; Max: 443.232us ; Number of samples: 115) - DeserializeRowBatchTime: 2.077ms - TotalBatchesEnqueued: 57 (57) - TotalBatchesReceived: 57 (57) - TotalBytesReceived: 740.92 KB (758704) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F08: Instance f04aed6e613865a1:acb29fb100000033 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s078ms - Prepare Finished: 1.458ms (1.458ms) - Open Finished: 1s049ms (1s048ms) - First Batch Produced: 1s077ms (27.738ms) - First Batch Sent: 1s077ms (1.116us) - ExecInternal Finished: 1s078ms (1.418ms) - MemoryUsage (500.000ms): 173.98 KB, 173.98 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.44 MB (19331056) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 622 (622) - TotalNetworkReceiveTime: 461.094ms - TotalNetworkSendTime: 473.787us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 116 (116) - TotalThreadsTotalWallClockTime: 1s077ms - TotalThreadsSysTime: 4.222ms - TotalThreadsUserTime: 403.906ms - TotalThreadsVoluntaryContextSwitches: 76 (76) - TotalTime: 1s077ms Fragment Instance Lifecycle Timings: - ExecTime: 29.132ms - ExecTreeExecTime: 27.890ms - OpenTime: 1s048ms - ExecTreeOpenTime: 497.347ms - PrepareTime: 195.111us - ExecTreePrepareTime: 141.967us KrpcDataStreamSender (dst_id=40): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 82.77 MB/sec ; Min: 42.58 MB/sec ; Max: 149.10 MB/sec ; Number of samples: 6) - RpcNetworkTime: (Avg: 102.811us ; Min: 32.844us ; Max: 188.686us ; Number of samples: 9) - RpcRecvrTime: (Avg: 37.360us ; Min: 11.807us ; Max: 54.702us ; Number of samples: 9) - EosSent: 3 (3) - InactiveTotalTime: 473.787us - PeakMemoryUsage: 225.08 KB (230484) - RowsSent: 622 (622) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 221.065us - TotalBytesSent: 60.95 KB (62411) - TotalTime: 1.224ms - UncompressedRowBatchSize: 107.89 KB (110484) AGGREGATION_NODE (id=20): Node Lifecycle Event Timeline: 1s078ms - Open Started: 552.453ms (552.453ms) - Open Finished: 1s049ms (497.345ms) - First Batch Requested: 1s049ms (9.854us) - First Batch Returned: 1s077ms (27.736ms) - Last Batch Returned: 1s078ms (785.107us) - Closed: 1s078ms (33.500us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.13 MB (17956992) - RowsReturned: 622 (622) - RowsReturnedRate: 1.18 K/sec - TotalTime: 525.376ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 118.249us - HTResizeTime: 66.292us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.10 MB (17932416) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 622 (622) - StreamingTime: 2.094ms Buffer pool: - AllocTime: 1.092ms - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 1.089ms - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 8.00K (7997) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=19): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s077ms - Open Started: 552.455ms (552.455ms) - Waiting for initial build: 1s048ms (496.453ms) - Initial build available: 1s048ms (544.000ns) - Open Finished: 1s049ms (693.026us) - First Batch Requested: 1s049ms (209.192us) - First Batch Returned: 1s049ms (35.100us) - Last Batch Returned: 1s077ms (27.651ms) - Closed: 1s077ms (34.844us) - InactiveTotalTime: 116.237us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 8.00K (7997) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 224.792us - RowsReturned: 8.00K (7997) - RowsReturnedRate: 15.29 K/sec - TotalTime: 522.857ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=18): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s077ms - Open Started: 552.459ms (552.459ms) - Waiting for initial build: 992.296ms (439.836ms) - Initial build available: 1s048ms (56.499ms) - Open Finished: 1s048ms (86.804us) - First Batch Requested: 1s048ms (27.383us) - First Batch Returned: 1s049ms (690.996us) - Last Batch Returned: 1s077ms (27.773ms) - Closed: 1s077ms (156.131us) - InactiveTotalTime: 56.611ms - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 54.77K (54771) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 918.038us - RowsReturned: 8.00K (7997) - RowsReturnedRate: 15.31 K/sec - TotalTime: 522.422ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=37): Node Lifecycle Event Timeline: 1s077ms - Open Started: 552.461ms (552.461ms) - Open Finished: 992.241ms (439.780ms) - First Batch Requested: 1s048ms (56.558ms) - First Batch Returned: 1s048ms (82.713us) - Last Batch Returned: 1s077ms (28.205ms) - Closed: 1s077ms (441.001us) - ConvertRowBatchTime: 3.509ms - InactiveTotalTime: 461.041ms - PeakMemoryUsage: 1.24 MB (1302528) - RowsReturned: 54.77K (54771) - RowsReturnedRate: 117.87 K/sec - TotalTime: 464.662ms Buffer pool: - AllocTime: 418.989us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.35 MB (1417216) - CumulativeAllocations: 116 (116) - EncryptionTime: 0.000ns - PeakReservation: 1.24 MB (1302528) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.24 MB (1302528) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 292.032us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 439.774ms - TotalBytesDequeued: 1.31 MB (1369275) - TotalGetBatchTime: 461.089ms - DataWaitTime: 461.041ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 43.622us ; Min: 8.577us ; Max: 330.672us ; Number of samples: 58) - DeserializeRowBatchTime: 1.785ms - TotalBatchesEnqueued: 58 (58) - TotalBatchesReceived: 58 (58) - TotalBytesReceived: 749.48 KB (767472) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000032 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s080ms - Prepare Finished: 277.029ms (277.029ms) - Open Finished: 1s050ms (773.798ms) - First Batch Produced: 1s077ms (26.710ms) - First Batch Sent: 1s077ms (1.481us) - ExecInternal Finished: 1s080ms (2.485ms) - MemoryUsage (500.000ms): 173.98 KB, 173.98 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 18.40 MB (19298288) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 704 (704) - TotalNetworkReceiveTime: 287.811ms - TotalNetworkSendTime: 213.412us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 29 (29) - TotalThreadsTotalWallClockTime: 802.976ms - TotalThreadsSysTime: 11.700ms - TotalThreadsUserTime: 339.056ms - TotalThreadsVoluntaryContextSwitches: 55 (55) - TotalTime: 803.279ms Fragment Instance Lifecycle Timings: - ExecTime: 29.184ms - ExecTreeExecTime: 27.116ms - OpenTime: 773.795ms - ExecTreeOpenTime: 341.747ms - PrepareTime: 269.490us - ExecTreePrepareTime: 164.192us KrpcDataStreamSender (dst_id=40): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 146.13 MB/sec ; Min: 98.56 MB/sec ; Max: 208.21 MB/sec ; Number of samples: 6) - RpcNetworkTime: (Avg: 76.375us ; Min: 64.468us ; Max: 106.403us ; Number of samples: 9) - RpcRecvrTime: (Avg: 38.577us ; Min: 13.758us ; Max: 65.489us ; Number of samples: 9) - EosSent: 3 (3) - InactiveTotalTime: 213.412us - PeakMemoryUsage: 270.36 KB (276846) - RowsSent: 704 (704) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 557.634us - TotalBytesSent: 68.84 KB (70490) - TotalTime: 2.044ms - UncompressedRowBatchSize: 122.19 KB (125118) AGGREGATION_NODE (id=20): Node Lifecycle Event Timeline: 1s079ms - Open Started: 709.073ms (709.073ms) - Open Finished: 1s050ms (341.746ms) - First Batch Requested: 1s050ms (9.193us) - First Batch Returned: 1s077ms (26.708ms) - Last Batch Returned: 1s079ms (1.956ms) - Closed: 1s079ms (32.989us) - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.13 MB (17956992) - RowsReturned: 704 (704) - RowsReturnedRate: 1.91 K/sec - TotalTime: 369.022ms GroupingAggregator 0: ExecOption: Streaming Preaggregation, Codegen Enabled - BuildTime: 0.000ns - GetResultsTime: 283.969us - HTResizeTime: 65.397us - LargestPartitionPercent: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.10 MB (17932416) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 704 (704) - StreamingTime: 4.157ms Buffer pool: - AllocTime: 405.269us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 397.158us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - Probes: 8.80K (8804) - Resizes: 16 (16) - Travel: 0 (0) HASH_JOIN_NODE (id=19): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s077ms - Open Started: 709.074ms (709.074ms) - Waiting for initial build: 1s047ms (338.294ms) - Initial build available: 1s047ms (2.167us) - Open Finished: 1s050ms (3.183ms) - First Batch Requested: 1s050ms (277.209us) - First Batch Returned: 1s050ms (37.223us) - Last Batch Returned: 1s077ms (26.586ms) - Closed: 1s077ms (59.135us) - InactiveTotalTime: 175.449us - PeakMemoryUsage: 33.12 KB (33920) - ProbeRows: 8.80K (8804) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 694.926us - RowsReturned: 8.80K (8804) - RowsReturnedRate: 24.18 K/sec - TotalTime: 364.055ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 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=18): ExecOption: Probe Side Codegen Enabled Node Lifecycle Event Timeline: 1s077ms - Open Started: 709.078ms (709.078ms) - Waiting for initial build: 991.538ms (282.459ms) - Initial build available: 1s046ms (55.387ms) - Open Finished: 1s047ms (389.048us) - First Batch Requested: 1s047ms (61.433us) - First Batch Returned: 1s050ms (3.178ms) - Last Batch Returned: 1s077ms (26.714ms) - Closed: 1s077ms (243.882us) - InactiveTotalTime: 55.564ms - PeakMemoryUsage: 25.12 KB (25728) - ProbeRows: 53.51K (53511) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.725ms - RowsReturned: 8.80K (8804) - RowsReturnedRate: 24.25 K/sec - TotalTime: 363.029ms Buffer pool: - AllocTime: 0.000ns - CompressionTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - EncryptionTime: 0.000ns - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=37): Node Lifecycle Event Timeline: 1s077ms - Open Started: 709.079ms (709.079ms) - Open Finished: 991.465ms (282.385ms) - First Batch Requested: 1s046ms (55.468ms) - First Batch Returned: 1s047ms (379.312us) - Last Batch Returned: 1s076ms (29.511ms) - Closed: 1s077ms (683.864us) - ConvertRowBatchTime: 15.343ms - InactiveTotalTime: 287.613ms - PeakMemoryUsage: 1.21 MB (1269760) - RowsReturned: 53.51K (53511) - RowsReturnedRate: 176.42 K/sec - TotalTime: 303.313ms Buffer pool: - AllocTime: 551.268us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.32 MB (1384448) - CumulativeAllocations: 114 (114) - EncryptionTime: 0.000ns - PeakReservation: 1.21 MB (1269760) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.21 MB (1269760) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 406.961us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 282.376ms - TotalBytesDequeued: 1.28 MB (1337775) - TotalGetBatchTime: 287.797ms - DataWaitTime: 287.613ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 59.856us ; Min: 6.327us ; Max: 443.232us ; Number of samples: 57) - DeserializeRowBatchTime: 2.369ms - TotalBatchesEnqueued: 57 (57) - TotalBatchesReceived: 57 (57) - TotalBytesReceived: 732.36 KB (749937) - TotalEarlySenders: 0 (0) - TotalEosReceived: 2 (2) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F06 [2 instances]:(Total: 908.491ms, non-child: 247.317ms, % non-child: 27.22%) split sizes: min: 4.68 MB, max: 40.42 MB, avg: 22.55 MB, stddev: 17.87 MB completion times: min:1s351ms max:1s352ms mean: 1s352ms stddev:841.978us execution rates: min:3.46 MB/sec max:29.87 MB/sec mean:16.67 MB/sec stddev:13.21 MB/sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 22.55 MB (23642721) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 16.67 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 9.29 MB (9740882) - PeakReservation: 8.38 MB (8781824) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 54.14K (54141) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.945ms - TotalStorageWaitTime: 3.926ms - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 902.628ms - TotalThreadsSysTime: 14.044ms - TotalThreadsUserTime: 137.328ms - TotalThreadsVoluntaryContextSwitches: 76 (76) - TotalTime: 908.491ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 51.161ms - ExecTreeExecTime: 33.884ms - OpenTime: 851.471ms - ExecTreeOpenTime: 608.955ms - PrepareTime: 1.206ms - ExecTreePrepareTime: 45.970us KrpcDataStreamSender (dst_id=37) [2 instances]:(Total: 18.268ms, non-child: 16.323ms, % non-child: 89.35%) - NetworkThroughput: (Avg: 82.07 MB/sec ; Min: 4.57 MB/sec ; Max: 452.40 MB/sec ; Number of samples: 115) - RpcNetworkTime: (Avg: 296.135us ; Min: 28.469us ; Max: 2.812ms ; Number of samples: 119) - RpcRecvrTime: (Avg: 90.260us ; Min: 11.095us ; Max: 490.660us ; Number of samples: 119) - EosSent: 2 (2) - InactiveTotalTime: 1.945ms - PeakMemoryUsage: 271.21 KB (277718) - RowsSent: 54.14K (54141) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 3.611ms - TotalBytesSent: 740.92 KB (758704) - TotalTime: 18.268ms - UncompressedRowBatchSize: 1.29 MB (1353525) HDFS_SCAN_NODE (id=16) [2 instances]:(Total: 642.905ms, non-child: 642.905ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 8.38 MB (8781824) ; Min: 8.00 MB (8388608) ; Max: 8.75 MB (9175040) ; Number of samples: 2) - ColumnarScannerIdealReservation: (Avg: 4.92 MB (5160960) ; Min: 1.09 MB (1146880) ; Max: 8.75 MB (9175040) ; Number of samples: 2) - FooterProcessingTime: (Avg: 208.836us ; Min: 185.565us ; Max: 232.107us ; Number of samples: 2) - InitialRangeActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; 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: 704.32 KB (721225) ; Min: 15.23 KB (15596) ; Max: 2.43 MB (2545823) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 44.72 KB (45792) ; Min: 1.73 KB (1771) ; Max: 67.32 KB (68934) ; Number of samples: 126) - ParquetUncompressedBytesReadPerColumn: (Avg: 723.52 KB (740883) ; Min: 15.22 KB (15588) ; Max: 2.43 MB (2545556) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 45.94 KB (47040) ; Min: 1.74 KB (1783) ; Max: 67.31 KB (68929) ; Number of samples: 126) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.25 MB (3405773) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.25 MB (3405773) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.25 MB (3405773) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 752.197us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.15 MB (3303373) - IoReadAsyncRequest: 134 (134) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.15 MB (3303373) - IoReadTotalRequest: 134 (134) - MaterializeTupleTime: 27.045ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 63 (63) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.98 MB (9411370) - PerReadThreadRawHdfsThroughput: 374.18 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 359.69K (359692) - RowsReturned: 54.14K (54141) - RowsReturnedRate: 96.67 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 3.926ms - TotalRawHdfsOpenFileTime: 18.033us - TotalRawHdfsReadTime: 7.415ms - TotalReadThroughput: 0.00 /sec - TotalTime: 642.905ms Buffer pool [2 instances]: - AllocTime: 41.565us - 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: 36.150us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Filter 10 (1.00 MB) [2 instances]: - 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: 286.18K (286182) - Rows total: 359.69K (359692) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 12 (1.00 MB) [2 instances]: - 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: 21.88K (21879) - Rows rejected: 19.37K (19368) - Rows total: 73.51K (73509) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F06: Instance f04aed6e613865a1:acb29fb100000031 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/4.68 MB Fragment Instance Lifecycle Event Timeline: 1s003ms - Prepare Finished: 1.287ms (1.287ms) - Open Finished: 988.020ms (986.732ms) - First Batch Produced: 991.090ms (3.070ms) - First Batch Sent: 991.242ms (151.969us) - ExecInternal Finished: 1s003ms (11.850ms) - MemoryUsage (500.000ms): 8.02 MB, 8.02 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 4.68 MB (4904507) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.23 - ExecutionRate: 3.46 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.82 MB (9251719) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 13.23K (13228) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 674.034us - TotalStorageWaitTime: 1.671ms - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1s001ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 114.467ms - TotalThreadsVoluntaryContextSwitches: 94 (94) - TotalTime: 1s001ms Fragment Instance Lifecycle Timings: - ExecTime: 14.922ms - ExecTreeExecTime: 8.591ms - OpenTime: 986.727ms - ExecTreeOpenTime: 735.793ms - PrepareTime: 91.021us - ExecTreePrepareTime: 35.621us KrpcDataStreamSender (dst_id=37): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 35.90 MB/sec ; Min: 5.97 MB/sec ; Max: 53.22 MB/sec ; Number of samples: 15) - RpcNetworkTime: (Avg: 316.822us ; Min: 161.851us ; Max: 489.640us ; Number of samples: 17) - RpcRecvrTime: (Avg: 124.727us ; Min: 25.633us ; Max: 367.742us ; Number of samples: 17) - EosSent: 2 (2) - InactiveTotalTime: 674.034us - PeakMemoryUsage: 279.20 KB (285904) - RowsSent: 13.23K (13228) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.415ms - TotalBytesSent: 180.89 KB (185229) - TotalTime: 6.399ms - UncompressedRowBatchSize: 322.95 KB (330700) HDFS_SCAN_NODE (id=16): Table Name: tpcds_parquet.web_sales Runtime filters: Not all filters arrived (arrived: [10], missing [12]), waited for 736ms. Arrival delay: 1s000ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s002ms - Open Started: 252.217ms (252.217ms) - Open Finished: 988.009ms (735.791ms) - First Batch Requested: 988.021ms (12.555us) - First Batch Returned: 991.089ms (3.067ms) - Last Batch Returned: 1s002ms (10.996ms) - Closed: 1s002ms (58.720us) - BytesReadSeries (500.000ms): 0, 0 - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 1.09 MB (1146880) ; Min: 1.09 MB (1146880) ; Max: 1.09 MB (1146880) ; Number of samples: 1) - FooterProcessingTime: (Avg: 185.565us ; Min: 185.565us ; Max: 185.565us ; 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: 84.11 KB (86132) ; Min: 15.23 KB (15596) ; Max: 159.36 KB (163181) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 30.59 KB (31320) ; Min: 3.65 KB (3737) ; Max: 67.32 KB (68934) ; Number of samples: 11) - ParquetUncompressedBytesReadPerColumn: (Avg: 84.10 KB (86118) ; Min: 15.22 KB (15588) ; Max: 159.33 KB (163159) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 30.58 KB (31315) ; Min: 3.65 KB (3733) ; Max: 67.31 KB (68929) ; Number of samples: 11) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 775.23 KB (793834) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 775.23 KB (793834) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 775.23 KB (793834) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 141.941us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 675.23 KB (691434) - IoReadAsyncRequest: 30 (30) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 675.23 KB (691434) - IoReadTotalRequest: 30 (30) - MaterializeTupleTime: 5.396ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 11 (11) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 8.51 MB (8922169) - PerReadThreadRawHdfsThroughput: 272.08 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 61.94K (61940) - RowsReturned: 13.23K (13228) - RowsReturnedRate: 17.77 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 1.671ms - TotalRawHdfsOpenFileTime: 18.343us - TotalRawHdfsReadTime: 2.782ms - TotalReadThroughput: 0.00 /sec - TotalTime: 744.442ms Buffer pool: - AllocTime: 7.496us - 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: 4.980us - 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: 61.94K (61940) - Rows rejected: 48.71K (48712) - Rows total: 61.94K (61940) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) 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: 0 (0) - Rows rejected: 0 (0) - Rows total: 13.23K (13228) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Instance f04aed6e613865a1:acb29fb100000030 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/40.42 MB Fragment Instance Lifecycle Event Timeline: 1s076ms - Prepare Finished: 272.709ms (272.709ms) - Open Finished: 988.928ms (716.218ms) - First Batch Produced: 998.472ms (9.544ms) - First Batch Sent: 998.784ms (312.383us) - ExecInternal Finished: 1s076ms (77.570ms) - MemoryUsage (500.000ms): 23.05 KB, 8.02 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 40.42 MB (42380935) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.22 - ExecutionRate: 29.87 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 9.76 MB (10230045) - PeakReservation: 8.75 MB (9175040) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 95.05K (95054) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.217ms - TotalStorageWaitTime: 6.181ms - TotalThreadsInvoluntaryContextSwitches: 27 (27) - TotalThreadsTotalWallClockTime: 803.612ms - TotalThreadsSysTime: 28.089ms - TotalThreadsUserTime: 160.190ms - TotalThreadsVoluntaryContextSwitches: 59 (59) - TotalTime: 815.231ms Fragment Instance Lifecycle Timings: - ExecTime: 87.401ms - ExecTreeExecTime: 59.176ms - OpenTime: 716.216ms - ExecTreeOpenTime: 482.118ms - PrepareTime: 2.322ms - ExecTreePrepareTime: 56.319us KrpcDataStreamSender (dst_id=37): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 89.00 MB/sec ; Min: 4.57 MB/sec ; Max: 452.40 MB/sec ; Number of samples: 100) - RpcNetworkTime: (Avg: 292.687us ; Min: 28.469us ; Max: 2.812ms ; Number of samples: 102) - RpcRecvrTime: (Avg: 84.515us ; Min: 11.095us ; Max: 490.660us ; Number of samples: 102) - EosSent: 2 (2) - InactiveTotalTime: 3.217ms - PeakMemoryUsage: 263.22 KB (269533) - RowsSent: 95.05K (95054) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.808ms - TotalBytesSent: 1.27 MB (1332180) - TotalTime: 30.138ms - UncompressedRowBatchSize: 2.27 MB (2376350) HDFS_SCAN_NODE (id=16): Table Name: tpcds_parquet.web_sales Runtime filters: Not all filters arrived (arrived: [10], missing [12]), waited for 482ms. Arrival delay: 1s000ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s076ms - Open Started: 506.796ms (506.796ms) - Open Finished: 988.912ms (482.116ms) - First Batch Requested: 988.928ms (16.312us) - First Batch Returned: 998.470ms (9.541ms) - Last Batch Returned: 1s075ms (77.524ms) - Closed: 1s076ms (52.121us) - BytesReadSeries (500.000ms): 0, 0 - ColumnarScannerActualReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 8.75 MB (9175040) ; Min: 8.75 MB (9175040) ; Max: 8.75 MB (9175040) ; Number of samples: 1) - FooterProcessingTime: (Avg: 232.107us ; Min: 232.107us ; Max: 232.107us ; 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.29 MB (1356319) ; Min: 161.78 KB (165666) ; Max: 2.43 MB (2545823) ; Number of samples: 4) - ParquetCompressedPageSize: (Avg: 46.07 KB (47176) ; Min: 1.73 KB (1771) ; Max: 67.31 KB (68923) ; Number of samples: 115) - ParquetUncompressedBytesReadPerColumn: (Avg: 1.33 MB (1395649) ; Min: 161.74 KB (165624) ; Max: 2.43 MB (2545556) ; Number of samples: 4) - ParquetUncompressedPageSize: (Avg: 47.41 KB (48544) ; Min: 1.74 KB (1783) ; Max: 67.30 KB (68914) ; Number of samples: 115) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 5.74 MB (6017712) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 5.74 MB (6017712) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 5.74 MB (6017712) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 1.362ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 5.64 MB (5915312) - IoReadAsyncRequest: 238 (238) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 5.64 MB (5915312) - IoReadTotalRequest: 238 (238) - MaterializeTupleTime: 48.694ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 115 (115) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.44 MB (9900571) - PerReadThreadRawHdfsThroughput: 476.28 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 657.44K (657444) - RowsReturned: 95.05K (95054) - RowsReturnedRate: 175.58 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 6.181ms - TotalRawHdfsOpenFileTime: 17.723us - TotalRawHdfsReadTime: 12.049ms - TotalReadThroughput: 0.00 /sec - TotalTime: 541.367ms Buffer pool: - AllocTime: 75.635us - 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: 67.320us - 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: 657.44K (657444) - Rows rejected: 523.65K (523653) - Rows total: 657.44K (657444) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) 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: 43.76K (43759) - Rows rejected: 38.74K (38737) - Rows total: 133.79K (133791) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F33 [2 instances]:(Total: 946.328ms, non-child: 230.644ms, % non-child: 24.37%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s353ms mean: 1s352ms stddev:571.514us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 129.333ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 30 (30) - TotalThreadsTotalWallClockTime: 941.575ms - TotalThreadsSysTime: 8.689ms - TotalThreadsUserTime: 86.884ms - TotalThreadsVoluntaryContextSwitches: 64 (64) - TotalTime: 946.328ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 585.718ms - ExecTreeExecTime: 36.653us - OpenTime: 355.863ms - ExecTreeOpenTime: 129.334ms - PrepareTime: 61.449us - ExecTreePrepareTime: 28.458us Hash Join Builder (join_node_id=19) [2 instances]:(Total: 586.313ms, non-child: 988.112us, % non-child: 0.17%) - BuildRows: 365 (365) - BuildRowsPartitionTime: 166.996us - HashTablesBuildTime: 89.983us - InactiveTotalTime: 585.325ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 586.313ms Buffer pool [2 instances]: - AllocTime: 110.273us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 106.686us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 8.77K (8765) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=39) [2 instances]:(Total: 129.369ms, non-child: 39.908us, % non-child: 0.03%) - ConvertRowBatchTime: 32.067us - InactiveTotalTime: 129.330ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 7.74 K/sec - TotalTime: 129.369ms Buffer pool [2 instances]: - AllocTime: 5.137us - 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.699us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 129.330ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 129.332ms - DataWaitTime: 129.330ms Enqueue [2 instances]: - DispatchTime: (Avg: 34.935us ; Min: 30.843us ; Max: 39.027us ; Number of samples: 2) - DeserializeRowBatchTime: 15.162us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F33: Instance f04aed6e613865a1:acb29fb10000003c (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s077ms - Prepare Finished: 1.178ms (1.178ms) - Open Finished: 492.195ms (491.016ms) - First Batch Produced: 492.237ms (41.248us) - First Batch Sent: 492.322ms (85.047us) - ExecInternal Finished: 1s077ms (585.208ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 232.472ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 22 (22) - TotalThreadsTotalWallClockTime: 1s076ms - TotalThreadsSysTime: 13.013ms - TotalThreadsUserTime: 82.239ms - TotalThreadsVoluntaryContextSwitches: 81 (81) - TotalTime: 1s076ms Fragment Instance Lifecycle Timings: - ExecTime: 585.314ms - ExecTreeExecTime: 40.204us - OpenTime: 491.012ms - ExecTreeOpenTime: 232.472ms - PrepareTime: 44.491us - ExecTreePrepareTime: 17.262us Hash Join Builder (join_node_id=19): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 84.154us - HashTablesBuildTime: 92.000us - InactiveTotalTime: 585.007ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 585.899ms Buffer pool: - AllocTime: 31.820us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 29.065us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 8.36K (8362) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=39): Node Lifecycle Event Timeline: 492.337ms - Open Started: 259.184ms (259.184ms) - Open Finished: 491.656ms (232.471ms) - First Batch Requested: 492.197ms (541.296us) - First Batch Returned: 492.236ms (39.141us) - Last Batch Returned: 492.236ms (100.000ns) - Closed: 492.337ms (101.032us) - ConvertRowBatchTime: 35.639us - InactiveTotalTime: 232.468ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 1.57 K/sec - TotalTime: 232.511ms Buffer pool: - AllocTime: 1.368us - 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: 232.468ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 232.471ms - DataWaitTime: 232.468ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 30.843us ; Min: 30.843us ; Max: 30.843us ; Number of samples: 1) - DeserializeRowBatchTime: 10.503us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000003b (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s077ms - Prepare Finished: 270.632ms (270.632ms) - Open Finished: 491.355ms (220.722ms) - First Batch Produced: 491.389ms (33.992us) - First Batch Sent: 491.639ms (250.949us) - ExecInternal Finished: 1s077ms (585.852ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s353ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 26.195ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 39 (39) - TotalThreadsTotalWallClockTime: 806.828ms - TotalThreadsSysTime: 4.366ms - TotalThreadsUserTime: 91.530ms - TotalThreadsVoluntaryContextSwitches: 47 (47) - TotalTime: 816.276ms Fragment Instance Lifecycle Timings: - ExecTime: 586.122ms - ExecTreeExecTime: 33.103us - OpenTime: 220.715ms - ExecTreeOpenTime: 26.196ms - PrepareTime: 78.407us - ExecTreePrepareTime: 39.655us Hash Join Builder (join_node_id=19): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 249.839us - HashTablesBuildTime: 87.967us - InactiveTotalTime: 585.643ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 586.727ms Buffer pool: - AllocTime: 188.726us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 184.307us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 9.17K (9169) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=39): Node Lifecycle Event Timeline: 491.656ms - Open Started: 464.653ms (464.653ms) - Open Finished: 490.848ms (26.194ms) - First Batch Requested: 491.356ms (507.978us) - First Batch Returned: 491.388ms (32.070us) - Last Batch Returned: 491.388ms (99.000ns) - Closed: 491.656ms (268.051us) - ConvertRowBatchTime: 28.495us - InactiveTotalTime: 26.191ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 13.92 K/sec - TotalTime: 26.227ms Buffer pool: - AllocTime: 8.907us - 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.398us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 26.191ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 26.193ms - DataWaitTime: 26.191ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 39.027us ; Min: 39.027us ; Max: 39.027us ; Number of samples: 1) - DeserializeRowBatchTime: 19.821us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F09:(Total: 208.954ms, non-child: 113.617ms, % non-child: 54.37%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s352ms max:1s352ms mean: 1s352ms stddev:0.000ns execution rates: min:1.59 MB/sec max:1.59 MB/sec mean:1.59 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 881.72 KB (902884) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 493.499us - TotalStorageWaitTime: 69.560ms - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 208.826ms - TotalThreadsSysTime: 8.023ms - TotalThreadsUserTime: 17.750ms - TotalThreadsVoluntaryContextSwitches: 37 (37) - TotalTime: 208.954ms Fragment Instance Lifecycle Timings: - ExecTime: 95.244ms - ExecTreeExecTime: 94.620ms - OpenTime: 113.585ms - ExecTreeOpenTime: 72.567us - PrepareTime: 108.072us - ExecTreePrepareTime: 23.929us KrpcDataStreamSender (dst_id=39):(Total: 608.411us, non-child: 114.912us, % non-child: 18.89%) - NetworkThroughput: (Avg: 6.36 MB/sec ; Min: 6.33 MB/sec ; Max: 6.38 MB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 304.797us ; Min: 150.301us ; Max: 441.434us ; Number of samples: 4) - RpcRecvrTime: (Avg: 45.001us ; Min: 8.579us ; Max: 66.512us ; Number of samples: 4) - EosSent: 2 (2) - InactiveTotalTime: 493.499us - PeakMemoryUsage: 34.88 KB (35720) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.854us - TotalBytesSent: 5.72 KB (5862) - TotalTime: 608.411us - UncompressedRowBatchSize: 12.12 KB (12410) HDFS_SCAN_NODE (id=17):(Total: 94.728ms, non-child: 94.728ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 64.812ms ; Min: 64.812ms ; Max: 64.812ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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: 23.908ms ; Min: 23.908ms ; Max: 23.908ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 56.547us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 321.915us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 8.62 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 3.85 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 69.560ms - TotalRawHdfsOpenFileTime: 16.329ms - TotalRawHdfsReadTime: 52.845ms - TotalReadThroughput: 0.00 /sec - TotalTime: 94.728ms Buffer pool: - AllocTime: 20.871us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.742us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F09: Instance f04aed6e613865a1:acb29fb10000003a (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 491.452ms - Prepare Finished: 282.600ms (282.600ms) - Open Finished: 396.187ms (113.587ms) - First Batch Produced: 490.670ms (94.482ms) - First Batch Sent: 490.730ms (59.931us) - ExecInternal Finished: 491.452ms (722.709us) - MemoryUsage (500.000ms): 36.44 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.01 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 881.72 KB (902884) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 493.499us - TotalStorageWaitTime: 69.560ms - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 208.826ms - TotalThreadsSysTime: 8.023ms - TotalThreadsUserTime: 17.750ms - TotalThreadsVoluntaryContextSwitches: 37 (37) - TotalTime: 208.954ms Fragment Instance Lifecycle Timings: - ExecTime: 95.244ms - ExecTreeExecTime: 94.620ms - OpenTime: 113.585ms - ExecTreeOpenTime: 72.567us - PrepareTime: 108.072us - ExecTreePrepareTime: 23.929us KrpcDataStreamSender (dst_id=39): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 6.36 MB/sec ; Min: 6.33 MB/sec ; Max: 6.38 MB/sec ; Number of samples: 2) - RpcNetworkTime: (Avg: 304.797us ; Min: 150.301us ; Max: 441.434us ; Number of samples: 4) - RpcRecvrTime: (Avg: 45.001us ; Min: 8.579us ; Max: 66.512us ; Number of samples: 4) - EosSent: 2 (2) - InactiveTotalTime: 493.499us - PeakMemoryUsage: 34.88 KB (35720) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 21.854us - TotalBytesSent: 5.72 KB (5862) - TotalTime: 608.411us - UncompressedRowBatchSize: 12.12 KB (12410) HDFS_SCAN_NODE (id=17): Table Name: tpcds_parquet.date_dim 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 490.915ms - Open Started: 396.109ms (396.109ms) - Open Finished: 396.181ms (71.327us) - First Batch Requested: 396.189ms (7.796us) - First Batch Returned: 490.669ms (94.480ms) - Last Batch Returned: 490.870ms (201.643us) - Closed: 490.915ms (44.315us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 64.812ms ; Min: 64.812ms ; Max: 64.812ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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: 23.908ms ; Min: 23.908ms ; Max: 23.908ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 56.547us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 321.915us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 8.62 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 3.85 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 69.560ms - TotalRawHdfsOpenFileTime: 16.329ms - TotalRawHdfsReadTime: 52.845ms - TotalReadThroughput: 0.00 /sec - TotalTime: 94.728ms Buffer pool: - AllocTime: 20.871us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 15.742us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Averaged Fragment F34 [2 instances]:(Total: 925.993ms, non-child: 210.065ms, % non-child: 22.69%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s352ms mean: 1s351ms stddev:711.949us execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 2 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.28 MB (18121856) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 377.21 MB (395536992) - RowsProduced: 5.63K (5626) - TotalNetworkReceiveTime: 679.716ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 925.781ms - TotalThreadsSysTime: 4.144ms - TotalThreadsUserTime: 94.344ms - TotalThreadsVoluntaryContextSwitches: 81 (81) - TotalTime: 925.993ms Fragment Instance Lifecycle Timings [2 instances]: - ExecTime: 68.930ms - ExecTreeExecTime: 35.991ms - OpenTime: 856.860ms - ExecTreeOpenTime: 645.385ms - PrepareTime: 105.219us - ExecTreePrepareTime: 65.838us Hash Join Builder (join_node_id=18) [2 instances]:(Total: 34.565ms, non-child: 4.924ms, % non-child: 14.25%) - BuildRows: 5.63K (5626) - BuildRowsPartitionTime: 2.391ms - HashTablesBuildTime: 664.217us - InactiveTotalTime: 29.641ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.02 MB (17843328) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 34.565ms Buffer pool [2 instances]: - AllocTime: 126.746us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 114.300us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [2 instances]: - HashBuckets: 13.82K (13824) - HashCollisions: 0 (0) - Probes: 59.76K (59762) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=38) [2 instances]:(Total: 681.362ms, non-child: 1.842ms, % non-child: 0.27%) - ConvertRowBatchTime: 1.487ms - InactiveTotalTime: 679.520ms - PeakMemoryUsage: 272.00 KB (278528) - RowsReturned: 5.63K (5626) - RowsReturnedRate: 8.46 K/sec - TotalTime: 681.362ms Buffer pool [2 instances]: - AllocTime: 120.294us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.20 MB (1257472) - CumulativeAllocations: 62 (62) - EncryptionTime: 0.000ns - PeakReservation: 272.00 KB (278528) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 272.00 KB (278528) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 56.157us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [2 instances]: - FirstBatchWaitTime: 645.368ms - TotalBytesDequeued: 881.60 KB (902757) - TotalGetBatchTime: 679.696ms - DataWaitTime: 679.520ms Enqueue [2 instances]: - DispatchTime: (Avg: 47.512us ; Min: 7.125us ; Max: 821.551us ; Number of samples: 62) - DeserializeRowBatchTime: 1.615ms - TotalBatchesEnqueued: 31 (31) - TotalBatchesReceived: 31 (31) - TotalBytesReceived: 523.35 KB (535908) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F34: Instance f04aed6e613865a1:acb29fb10000003f (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s077ms - Prepare Finished: 924.669us (924.669us) - Open Finished: 1s009ms (1s008ms) - First Batch Produced: 1s016ms (6.840ms) - First Batch Sent: 1s016ms (399.075us) - ExecInternal Finished: 1s077ms (60.772ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.28 MB (18121856) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 5.57K (5571) - TotalNetworkReceiveTime: 781.297ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 1s076ms - TotalThreadsSysTime: 4.702ms - TotalThreadsUserTime: 100.258ms - TotalThreadsVoluntaryContextSwitches: 103 (103) - TotalTime: 1s076ms Fragment Instance Lifecycle Timings: - ExecTime: 67.994ms - ExecTreeExecTime: 35.542ms - OpenTime: 1s008ms - ExecTreeOpenTime: 747.497ms - PrepareTime: 42.120us - ExecTreePrepareTime: 19.745us Hash Join Builder (join_node_id=18): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 5.57K (5571) - BuildRowsPartitionTime: 2.407ms - HashTablesBuildTime: 981.900us - InactiveTotalTime: 28.722ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.02 MB (17843328) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 34.353ms Buffer pool: - AllocTime: 54.680us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 46.824us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 12.29K (12288) - HashCollisions: 0 (0) - Probes: 60.34K (60342) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=38): Node Lifecycle Event Timeline: 1s047ms - Open Started: 260.081ms (260.081ms) - Open Finished: 1s007ms (747.494ms) - First Batch Requested: 1s009ms (1.953ms) - First Batch Returned: 1s016ms (6.834ms) - Last Batch Returned: 1s047ms (30.842ms) - Closed: 1s047ms (395.916us) - ConvertRowBatchTime: 1.571ms - InactiveTotalTime: 781.065ms - PeakMemoryUsage: 272.00 KB (278528) - RowsReturned: 5.57K (5571) - RowsReturnedRate: 7.11 K/sec - TotalTime: 783.033ms Buffer pool: - AllocTime: 98.295us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.19 MB (1245184) - CumulativeAllocations: 62 (62) - EncryptionTime: 0.000ns - PeakReservation: 272.00 KB (278528) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 272.00 KB (278528) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 31.428us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 747.487ms - TotalBytesDequeued: 872.57 KB (893512) - TotalGetBatchTime: 781.277ms - DataWaitTime: 781.065ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 33.885us ; Min: 7.125us ; Max: 66.141us ; Number of samples: 31) - DeserializeRowBatchTime: 1.549ms - TotalBatchesEnqueued: 31 (31) - TotalBatchesReceived: 31 (31) - TotalBytesReceived: 518.09 KB (530526) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb10000003e (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s077ms - Prepare Finished: 302.474ms (302.474ms) - Open Finished: 1s007ms (705.142ms) - First Batch Produced: 1s015ms (7.391ms) - First Batch Sent: 1s015ms (979.691us) - ExecInternal Finished: 1s077ms (61.509ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 17.28 MB (18121856) - PeakReservation: 17.00 MB (17825792) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 5.68K (5681) - TotalNetworkReceiveTime: 578.135ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 18 (18) - TotalThreadsTotalWallClockTime: 774.993ms - TotalThreadsSysTime: 3.587ms - TotalThreadsUserTime: 88.430ms - TotalThreadsVoluntaryContextSwitches: 59 (59) - TotalTime: 775.191ms Fragment Instance Lifecycle Timings: - ExecTime: 69.867ms - ExecTreeExecTime: 36.439ms - OpenTime: 705.134ms - ExecTreeOpenTime: 543.273ms - PrepareTime: 168.318us - ExecTreePrepareTime: 111.931us Hash Join Builder (join_node_id=18): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 5.68K (5681) - BuildRowsPartitionTime: 2.375ms - HashTablesBuildTime: 346.535us - InactiveTotalTime: 30.561ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.02 MB (17843328) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 34.778ms Buffer pool: - AllocTime: 198.812us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 17.00 MB (17825792) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 17.00 MB (17825792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 17.00 MB (17825792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 181.776us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 15.36K (15360) - HashCollisions: 0 (0) - Probes: 59.18K (59183) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=38): Node Lifecycle Event Timeline: 1s046ms - Open Started: 463.083ms (463.083ms) - Open Finished: 1s006ms (543.256ms) - First Batch Requested: 1s007ms (1.279ms) - First Batch Returned: 1s015ms (7.386ms) - Last Batch Returned: 1s046ms (31.324ms) - Closed: 1s046ms (168.058us) - ConvertRowBatchTime: 1.403ms - InactiveTotalTime: 577.975ms - PeakMemoryUsage: 272.00 KB (278528) - RowsReturned: 5.68K (5681) - RowsReturnedRate: 9.80 K/sec - TotalTime: 579.692ms Buffer pool: - AllocTime: 142.294us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.21 MB (1269760) - CumulativeAllocations: 62 (62) - EncryptionTime: 0.000ns - PeakReservation: 272.00 KB (278528) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 272.00 KB (278528) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 80.887us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 543.249ms - TotalBytesDequeued: 890.63 KB (912003) - TotalGetBatchTime: 578.115ms - DataWaitTime: 577.975ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 61.140us ; Min: 11.336us ; Max: 821.551us ; Number of samples: 31) - DeserializeRowBatchTime: 1.680ms - TotalBatchesEnqueued: 31 (31) - TotalBatchesReceived: 31 (31) - TotalBytesReceived: 528.60 KB (541291) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F07:(Total: 740.269ms, non-child: 214.485ms, % non-child: 28.97%) split sizes: min: 5.49 MB, max: 5.49 MB, avg: 5.49 MB, stddev: 0 completion times: min:1s351ms max:1s351ms mean: 1s351ms stddev:0.000ns execution rates: min:4.06 MB/sec max:4.06 MB/sec mean:4.06 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 14.01 MB (14693633) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 11.25K (11252) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.570ms - TotalStorageWaitTime: 4.076ms - TotalThreadsInvoluntaryContextSwitches: 13 (13) - TotalThreadsTotalWallClockTime: 740.094ms - TotalThreadsSysTime: 22.403ms - TotalThreadsUserTime: 145.328ms - TotalThreadsVoluntaryContextSwitches: 64 (64) - TotalTime: 740.269ms Fragment Instance Lifecycle Timings: - ExecTime: 57.704ms - ExecTreeExecTime: 33.607ms - OpenTime: 682.394ms - ExecTreeOpenTime: 468.796ms - PrepareTime: 138.122us - ExecTreePrepareTime: 58.010us KrpcDataStreamSender (dst_id=38):(Total: 23.285ms, non-child: 19.714ms, % non-child: 84.67%) - NetworkThroughput: (Avg: 108.01 MB/sec ; Min: 5.29 MB/sec ; Max: 463.63 MB/sec ; Number of samples: 62) - RpcNetworkTime: (Avg: 280.930us ; Min: 36.398us ; Max: 3.197ms ; Number of samples: 64) - RpcRecvrTime: (Avg: 105.020us ; Min: 12.610us ; Max: 909.967us ; Number of samples: 64) - EosSent: 2 (2) - InactiveTotalTime: 3.570ms - PeakMemoryUsage: 534.03 KB (546850) - RowsSent: 11.25K (11252) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.635ms - TotalBytesSent: 1.02 MB (1071817) - TotalTime: 23.285ms - UncompressedRowBatchSize: 1.72 MB (1805515) HDFS_SCAN_NODE (id=15):(Total: 502.498ms, non-child: 502.498ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 129.672us ; Min: 129.672us ; Max: 129.672us ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 3.644ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 17.461ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 296.15 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 11.25K (11252) - RowsReturnedRate: 22.39 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.076ms - TotalRawHdfsOpenFileTime: 40.027us - TotalRawHdfsReadTime: 13.125ms - TotalReadThroughput: 0.00 /sec - TotalTime: 502.498ms Buffer pool: - AllocTime: 82.785us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 70.368us - 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: 100.00K (100000) - Rows rejected: 88.75K (88748) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (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: 11.25K (11252) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F07: Instance f04aed6e613865a1:acb29fb10000003d (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.49 MB Fragment Instance Lifecycle Event Timeline: 1s046ms - Prepare Finished: 306.334ms (306.334ms) - Open Finished: 988.732ms (682.397ms) - First Batch Produced: 1s005ms (16.587ms) - First Batch Sent: 1s007ms (2.466ms) - ExecInternal Finished: 1s046ms (38.666ms) - MemoryUsage (500.000ms): 10.88 KB, 8.01 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.26 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 14.01 MB (14693633) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 11.25K (11252) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.570ms - TotalStorageWaitTime: 4.076ms - TotalThreadsInvoluntaryContextSwitches: 13 (13) - TotalThreadsTotalWallClockTime: 740.094ms - TotalThreadsSysTime: 22.403ms - TotalThreadsUserTime: 145.328ms - TotalThreadsVoluntaryContextSwitches: 64 (64) - TotalTime: 740.269ms Fragment Instance Lifecycle Timings: - ExecTime: 57.704ms - ExecTreeExecTime: 33.607ms - OpenTime: 682.394ms - ExecTreeOpenTime: 468.796ms - PrepareTime: 138.122us - ExecTreePrepareTime: 58.010us KrpcDataStreamSender (dst_id=38): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 108.01 MB/sec ; Min: 5.29 MB/sec ; Max: 463.63 MB/sec ; Number of samples: 62) - RpcNetworkTime: (Avg: 280.930us ; Min: 36.398us ; Max: 3.197ms ; Number of samples: 64) - RpcRecvrTime: (Avg: 105.020us ; Min: 12.610us ; Max: 909.967us ; Number of samples: 64) - EosSent: 2 (2) - InactiveTotalTime: 3.570ms - PeakMemoryUsage: 534.03 KB (546850) - RowsSent: 11.25K (11252) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.635ms - TotalBytesSent: 1.02 MB (1071817) - TotalTime: 23.285ms - UncompressedRowBatchSize: 1.72 MB (1805515) HDFS_SCAN_NODE (id=15): Table Name: tpcds_parquet.customer Runtime filters: Not all filters arrived (arrived: [0], missing [2]), waited for 469ms. Arrival delay: 1s000ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s045ms - Open Started: 519.927ms (519.927ms) - Open Finished: 988.723ms (468.795ms) - First Batch Requested: 988.732ms (9.902us) - First Batch Returned: 1s005ms (16.584ms) - Last Batch Returned: 1s045ms (40.566ms) - Closed: 1s045ms (107.244us) - BytesReadSeries (500.000ms): 0, 0 - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 129.672us ; Min: 129.672us ; Max: 129.672us ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 3.644ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 17.461ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 296.15 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 11.25K (11252) - RowsReturnedRate: 22.39 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.076ms - TotalRawHdfsOpenFileTime: 40.027us - TotalRawHdfsReadTime: 13.125ms - TotalReadThroughput: 0.00 /sec - TotalTime: 502.498ms Buffer pool: - AllocTime: 82.785us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 70.368us - 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: 100.00K (100000) - Rows rejected: 88.75K (88748) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (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: 11.25K (11252) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F35 [3 instances]:(Total: 1s224ms, non-child: 213.724ms, % non-child: 17.45%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s366ms stddev:21.777ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s366ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.74 MB (9168000) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 3.75K (3750) - TotalNetworkReceiveTime: 726.264ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 19 (19) - TotalThreadsTotalWallClockTime: 1s224ms - TotalThreadsSysTime: 8.692ms - TotalThreadsUserTime: 92.182ms - TotalThreadsVoluntaryContextSwitches: 100 (100) - TotalTime: 1s224ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 317.721ms - ExecTreeExecTime: 34.824ms - OpenTime: 906.808ms - ExecTreeOpenTime: 692.344ms - PrepareTime: 105.596us - ExecTreePrepareTime: 28.409us Hash Join Builder (join_node_id=12) [3 instances]:(Total: 283.763ms, non-child: 2.643ms, % non-child: 0.93%) - BuildRows: 3.75K (3750) - BuildRowsPartitionTime: 1.380ms - HashTablesBuildTime: 268.286us - InactiveTotalTime: 281.120ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 283.763ms Buffer pool [3 instances]: - AllocTime: 100.432us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 90.351us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 36.02K (36022) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=34) [3 instances]:(Total: 727.164ms, non-child: 1.001ms, % non-child: 0.14%) - ConvertRowBatchTime: 801.291us - InactiveTotalTime: 726.162ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 3.75K (3750) - RowsReturnedRate: 5.38 K/sec - TotalTime: 727.164ms Buffer pool [3 instances]: - AllocTime: 105.954us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 824.00 KB (843776) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 69.236us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 692.336ms - TotalBytesDequeued: 587.73 KB (601838) - TotalGetBatchTime: 726.253ms - DataWaitTime: 726.162ms Enqueue [3 instances]: - DispatchTime: (Avg: 34.927us ; Min: 6.766us ; Max: 101.303us ; Number of samples: 63) - DeserializeRowBatchTime: 1.053ms - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 349.40 KB (357790) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F35: Instance f04aed6e613865a1:acb29fb100000043 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s327ms - Prepare Finished: 319.903us (319.903us) - Open Finished: 1s009ms (1s009ms) - First Batch Produced: 1s020ms (11.110ms) - First Batch Sent: 1s021ms (882.578us) - ExecInternal Finished: 1s327ms (305.643ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 8.52 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.74 MB (9168000) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 3.71K (3713) - TotalNetworkReceiveTime: 857.841ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1s326ms - TotalThreadsSysTime: 13.036ms - TotalThreadsUserTime: 91.255ms - TotalThreadsVoluntaryContextSwitches: 107 (107) - TotalTime: 1s327ms Fragment Instance Lifecycle Timings: - ExecTime: 317.602ms - ExecTreeExecTime: 34.200ms - OpenTime: 1s009ms - ExecTreeOpenTime: 824.890ms - PrepareTime: 60.887us - ExecTreePrepareTime: 18.252us Hash Join Builder (join_node_id=12): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.71K (3713) - BuildRowsPartitionTime: 1.856ms - HashTablesBuildTime: 317.575us - InactiveTotalTime: 281.098ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 284.368ms Buffer pool: - AllocTime: 148.417us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 132.870us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 35.53K (35529) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=34): Node Lifecycle Event Timeline: 1s045ms - Open Started: 183.851ms (183.851ms) - Open Finished: 1s008ms (824.888ms) - First Batch Requested: 1s009ms (990.131us) - First Batch Returned: 1s020ms (11.104ms) - Last Batch Returned: 1s045ms (24.844ms) - Closed: 1s045ms (162.672us) - ConvertRowBatchTime: 1.110ms - InactiveTotalTime: 857.708ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 3.71K (3713) - RowsReturnedRate: 4.32 K/sec - TotalTime: 859.086ms Buffer pool: - AllocTime: 170.129us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 816.00 KB (835584) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 135.325us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 824.883ms - TotalBytesDequeued: 580.41 KB (594336) - TotalGetBatchTime: 857.826ms - DataWaitTime: 857.708ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 34.558us ; Min: 12.919us ; Max: 69.344us ; Number of samples: 21) - DeserializeRowBatchTime: 1.207ms - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 345.22 KB (353510) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000042 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s327ms - Prepare Finished: 393.581us (393.581us) - Open Finished: 1s009ms (1s009ms) - First Batch Produced: 1s020ms (10.795ms) - First Batch Sent: 1s020ms (486.290us) - ExecInternal Finished: 1s327ms (306.367ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 8.52 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.74 MB (9168000) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 3.72K (3719) - TotalNetworkReceiveTime: 782.845ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 17 (17) - TotalThreadsTotalWallClockTime: 1s326ms - TotalThreadsSysTime: 4.598ms - TotalThreadsUserTime: 100.913ms - TotalThreadsVoluntaryContextSwitches: 112 (112) - TotalTime: 1s326ms Fragment Instance Lifecycle Timings: - ExecTime: 317.637ms - ExecTreeExecTime: 34.833ms - OpenTime: 1s009ms - ExecTreeOpenTime: 748.826ms - PrepareTime: 151.264us - ExecTreePrepareTime: 25.086us Hash Join Builder (join_node_id=12): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.72K (3719) - BuildRowsPartitionTime: 1.146ms - HashTablesBuildTime: 246.177us - InactiveTotalTime: 281.280ms - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 283.583ms Buffer pool: - AllocTime: 81.567us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 74.545us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 36.58K (36584) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=34): Node Lifecycle Event Timeline: 1s045ms - Open Started: 259.908ms (259.908ms) - Open Finished: 1s008ms (748.824ms) - First Batch Requested: 1s009ms (763.245us) - First Batch Returned: 1s020ms (10.791ms) - Last Batch Returned: 1s045ms (25.079ms) - Closed: 1s045ms (160.513us) - ConvertRowBatchTime: 725.254us - InactiveTotalTime: 782.767ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 3.72K (3719) - RowsReturnedRate: 4.75 K/sec - TotalTime: 783.656ms Buffer pool: - AllocTime: 87.408us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 816.00 KB (835584) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 49.663us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 748.819ms - TotalBytesDequeued: 583.15 KB (597149) - TotalGetBatchTime: 782.834ms - DataWaitTime: 782.767ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 31.985us ; Min: 6.766us ; Max: 63.873us ; Number of samples: 21) - DeserializeRowBatchTime: 1.027ms - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 346.57 KB (354884) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000041 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s326ms - Prepare Finished: 306.282ms (306.282ms) - Open Finished: 1s008ms (701.946ms) - First Batch Produced: 1s019ms (11.015ms) - First Batch Sent: 1s019ms (466.567us) - ExecInternal Finished: 1s326ms (306.455ms) - MemoryUsage (500.000ms): 17.12 KB, 17.12 KB, 8.52 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 8.74 MB (9168000) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 3.82K (3820) - TotalNetworkReceiveTime: 538.108ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 30 (30) - TotalThreadsTotalWallClockTime: 1s019ms - TotalThreadsSysTime: 8.443ms - TotalThreadsUserTime: 84.379ms - TotalThreadsVoluntaryContextSwitches: 81 (81) - TotalTime: 1s019ms Fragment Instance Lifecycle Timings: - ExecTime: 317.925ms - ExecTreeExecTime: 35.438ms - OpenTime: 701.939ms - ExecTreeOpenTime: 503.315ms - PrepareTime: 104.639us - ExecTreePrepareTime: 41.889us Hash Join Builder (join_node_id=12): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRows: 3.82K (3820) - BuildRowsPartitionTime: 1.137ms - HashTablesBuildTime: 241.106us - InactiveTotalTime: 280.982ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.52 MB (8930432) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 283.338ms Buffer pool: - AllocTime: 71.313us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - EncryptionTime: 0.000ns - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 63.639us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 8.19K (8192) - HashCollisions: 0 (0) - Probes: 35.95K (35953) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=34): Node Lifecycle Event Timeline: 1s044ms - Open Started: 504.074ms (504.074ms) - Open Finished: 1s007ms (503.313ms) - First Batch Requested: 1s008ms (845.324us) - First Batch Returned: 1s019ms (11.011ms) - Last Batch Returned: 1s044ms (25.384ms) - Closed: 1s044ms (218.275us) - ConvertRowBatchTime: 568.423us - InactiveTotalTime: 538.012ms - PeakMemoryUsage: 232.00 KB (237568) - RowsReturned: 3.82K (3820) - RowsReturnedRate: 7.09 K/sec - TotalTime: 538.750ms Buffer pool: - AllocTime: 60.327us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 840.00 KB (860160) - CumulativeAllocations: 42 (42) - EncryptionTime: 0.000ns - PeakReservation: 232.00 KB (237568) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 232.00 KB (237568) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 22.722us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0, 0 - FirstBatchWaitTime: 503.306ms - TotalBytesDequeued: 599.64 KB (614030) - TotalGetBatchTime: 538.098ms - DataWaitTime: 538.012ms Enqueue: - BytesReceived (500.000ms): 0, 0 - DeferredQueueSize (500.000ms): 0, 0 - DispatchTime: (Avg: 38.237us ; Min: 10.785us ; Max: 101.303us ; Number of samples: 21) - DeserializeRowBatchTime: 925.827us - TotalBatchesEnqueued: 21 (21) - TotalBatchesReceived: 21 (21) - TotalBytesReceived: 356.42 KB (364978) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F02:(Total: 1s044ms, non-child: 305.615ms, % non-child: 29.27%) split sizes: min: 5.49 MB, max: 5.49 MB, avg: 5.49 MB, stddev: 0 completion times: min:1s351ms max:1s351ms mean: 1s351ms stddev:0.000ns execution rates: min:4.06 MB/sec max:4.06 MB/sec mean:4.06 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 14.23 MB (14920783) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 11.25K (11252) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 468.294us - TotalStorageWaitTime: 4.975ms - TotalThreadsInvoluntaryContextSwitches: 31 (31) - TotalThreadsTotalWallClockTime: 1s043ms - TotalThreadsSysTime: 12.595ms - TotalThreadsUserTime: 167.934ms - TotalThreadsVoluntaryContextSwitches: 119 (119) - TotalTime: 1s044ms Fragment Instance Lifecycle Timings: - ExecTime: 55.509ms - ExecTreeExecTime: 34.543ms - OpenTime: 988.274ms - ExecTreeOpenTime: 683.134ms - PrepareTime: 348.916us - ExecTreePrepareTime: 177.744us KrpcDataStreamSender (dst_id=34):(Total: 20.563ms, non-child: 20.095ms, % non-child: 97.72%) - NetworkThroughput: (Avg: 113.15 MB/sec ; Min: 6.19 MB/sec ; Max: 439.26 MB/sec ; Number of samples: 63) - RpcNetworkTime: (Avg: 291.521us ; Min: 26.014us ; Max: 2.685ms ; Number of samples: 66) - RpcRecvrTime: (Avg: 89.125us ; Min: 10.854us ; Max: 246.767us ; Number of samples: 66) - EosSent: 3 (3) - InactiveTotalTime: 468.294us - PeakMemoryUsage: 755.86 KB (774000) - RowsSent: 11.25K (11252) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.884ms - TotalBytesSent: 1.02 MB (1073372) - TotalTime: 20.563ms - UncompressedRowBatchSize: 1.72 MB (1805515) HDFS_SCAN_NODE (id=8):(Total: 718.000ms, non-child: 718.000ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 179.588us ; Min: 179.588us ; Max: 179.588us ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 3.672ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 17.493ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 301.31 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 11.25K (11252) - RowsReturnedRate: 15.67 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.975ms - TotalRawHdfsOpenFileTime: 35.912us - TotalRawHdfsReadTime: 12.901ms - TotalReadThroughput: 0.00 /sec - TotalTime: 718.000ms Buffer pool: - AllocTime: 248.017us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 240.651us - 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: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) 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: 100.00K (100000) - Rows rejected: 88.75K (88748) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (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: 11.25K (11252) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Fragment F02: Instance f04aed6e613865a1:acb29fb100000040 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/5.49 MB Fragment Instance Lifecycle Event Timeline: 1s044ms - Prepare Finished: 873.368us (873.368us) - Open Finished: 989.150ms (988.276ms) - First Batch Produced: 1s005ms (16.717ms) - First Batch Sent: 1s008ms (2.406ms) - ExecInternal Finished: 1s044ms (36.500ms) - MemoryUsage (500.000ms): 8.01 MB, 8.01 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 5.49 MB (5753004) - CompletionTime: 1s351ms - ExchangeScanRatio: 0.26 - ExecutionRate: 4.06 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 14.23 MB (14920783) - PeakReservation: 8.00 MB (8388608) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 11.25K (11252) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 468.294us - TotalStorageWaitTime: 4.975ms - TotalThreadsInvoluntaryContextSwitches: 31 (31) - TotalThreadsTotalWallClockTime: 1s043ms - TotalThreadsSysTime: 12.595ms - TotalThreadsUserTime: 167.934ms - TotalThreadsVoluntaryContextSwitches: 119 (119) - TotalTime: 1s044ms Fragment Instance Lifecycle Timings: - ExecTime: 55.509ms - ExecTreeExecTime: 34.543ms - OpenTime: 988.274ms - ExecTreeOpenTime: 683.134ms - PrepareTime: 348.916us - ExecTreePrepareTime: 177.744us KrpcDataStreamSender (dst_id=34): ExecOption: Hash Partitioned Sender Codegen Enabled - BytesSent (500.000ms): 0, 0 - NetworkThroughput: (Avg: 113.15 MB/sec ; Min: 6.19 MB/sec ; Max: 439.26 MB/sec ; Number of samples: 63) - RpcNetworkTime: (Avg: 291.521us ; Min: 26.014us ; Max: 2.685ms ; Number of samples: 66) - RpcRecvrTime: (Avg: 89.125us ; Min: 10.854us ; Max: 246.767us ; Number of samples: 66) - EosSent: 3 (3) - InactiveTotalTime: 468.294us - PeakMemoryUsage: 755.86 KB (774000) - RowsSent: 11.25K (11252) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.884ms - TotalBytesSent: 1.02 MB (1073372) - TotalTime: 20.563ms - UncompressedRowBatchSize: 1.72 MB (1805515) HDFS_SCAN_NODE (id=8): Table Name: tpcds_parquet.customer Runtime filters: Not all filters arrived (arrived: [0], missing [4, 2]), waited for 683ms. Arrival delay: 1s000ms. 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 1s044ms - Open Started: 306.007ms (306.007ms) - Open Finished: 989.139ms (683.132ms) - First Batch Requested: 989.151ms (11.832us) - First Batch Returned: 1s005ms (16.714ms) - Last Batch Returned: 1s044ms (38.256ms) - Closed: 1s044ms (30.545us) - BytesReadSeries (500.000ms): 0, 0 - ColumnarScannerActualReservation: (Avg: 8.00 MB (8388608) ; Min: 8.00 MB (8388608) ; Max: 8.00 MB (8388608) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 6.16 MB (6463488) ; Min: 6.16 MB (6463488) ; Max: 6.16 MB (6463488) ; Number of samples: 1) - FooterProcessingTime: (Avg: 179.588us ; Min: 179.588us ; Max: 179.588us ; 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: 315.83 KB (323406) ; Min: 10.00 B (10) ; Max: 1.38 MB (1448596) ; Number of samples: 8) - ParquetCompressedPageSize: (Avg: 37.71 KB (38615) ; Min: 10.00 B (10) ; Max: 68.09 KB (69725) ; Number of samples: 67) - ParquetUncompressedBytesReadPerColumn: (Avg: 478.22 KB (489699) ; Min: 8.00 B (8) ; Max: 1.78 MB (1866352) ; Number of samples: 8) - ParquetUncompressedPageSize: (Avg: 57.10 KB (58471) ; Min: 8.00 B (8) ; Max: 69.93 KB (71606) ; Number of samples: 67) - AverageHdfsReadThreadConcurrency: 0.00 - BytesRead: 3.89 MB (4075972) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 3.89 MB (4075972) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 3.89 MB (4075972) - CachedFileHandlesHitCount: 9 (9) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 3.672ms - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 3.79 MB (3973572) - IoReadAsyncRequest: 150 (150) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 0 - IoReadSyncRequest: 0 (0) - IoReadTotalBytes: 3.79 MB (3973572) - IoReadTotalRequest: 150 (150) - MaterializeTupleTime: 17.493ms - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 8 (8) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 67 (67) - NumPagesSkippedByLateMaterialization: 0 (0) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.29 MB (12891669) - PerReadThreadRawHdfsThroughput: 301.31 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 100.00K (100000) - RowsReturned: 11.25K (11252) - RowsReturnedRate: 15.67 K/sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 4.975ms - TotalRawHdfsOpenFileTime: 35.912us - TotalRawHdfsReadTime: 12.901ms - TotalReadThroughput: 0.00 /sec - TotalTime: 718.000ms Buffer pool: - AllocTime: 248.017us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 6.29 MB (6594560) - CumulativeAllocations: 9 (9) - EncryptionTime: 0.000ns - PeakReservation: 8.00 MB (8388608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.16 MB (6463488) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 240.651us - 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: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) 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: 100.00K (100000) - Rows rejected: 88.75K (88748) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Filter 2 (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: 11.25K (11252) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Averaged Fragment F36 [3 instances]:(Total: 1s315ms, non-child: 279.768ms, % non-child: 21.27%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:1s351ms max:1s397ms mean: 1s367ms stddev:21.373ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s367ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 331.56 MB (347663546) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 205.478ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 16 (16) - TotalThreadsTotalWallClockTime: 1s315ms - TotalThreadsSysTime: 9.370ms - TotalThreadsUserTime: 88.371ms - TotalThreadsVoluntaryContextSwitches: 82 (82) - TotalTime: 1s315ms Fragment Instance Lifecycle Timings [3 instances]: - ExecTime: 831.025ms - ExecTreeExecTime: 1.318ms - OpenTime: 484.353ms - ExecTreeOpenTime: 204.199ms - PrepareTime: 148.993us - ExecTreePrepareTime: 76.317us Hash Join Builder (join_node_id=11) [3 instances]:(Total: 830.322ms, non-child: 1.331ms, % non-child: 0.16%) - BuildRows: 365 (365) - BuildRowsPartitionTime: 142.829us - HashTablesBuildTime: 459.598us - InactiveTotalTime: 828.991ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 830.322ms Buffer pool [3 instances]: - AllocTime: 65.887us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 61.353us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table [3 instances]: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 32.96K (32963) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=32) [3 instances]:(Total: 205.516ms, non-child: 45.638us, % non-child: 0.02%) - ConvertRowBatchTime: 31.891us - InactiveTotalTime: 205.470ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 2.52 K/sec - TotalTime: 205.516ms Buffer pool [3 instances]: - AllocTime: 4.317us - 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.764us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue [3 instances]: - FirstBatchWaitTime: 204.193ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 205.477ms - DataWaitTime: 205.470ms Enqueue [3 instances]: - DispatchTime: (Avg: 40.469us ; Min: 35.069us ; Max: 45.224us ; Number of samples: 3) - DeserializeRowBatchTime: 15.977us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Fragment F36: Instance f04aed6e613865a1:acb29fb100000047 (host=rsuminto-22746:27000): Last report received time: 2023-04-28 08:29:45.127 Fragment Instance Lifecycle Event Timeline: 1s324ms - Prepare Finished: 1.111ms (1.111ms) - Open Finished: 490.748ms (489.637ms) - First Batch Produced: 492.282ms (1.533ms) - First Batch Sent: 492.408ms (125.712us) - ExecInternal Finished: 1s324ms (831.723ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s397ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 240.25 MB (251916656) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 307.718ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1s322ms - TotalThreadsSysTime: 8.214ms - TotalThreadsUserTime: 78.002ms - TotalThreadsVoluntaryContextSwitches: 78 (78) - TotalTime: 1s323ms Fragment Instance Lifecycle Timings: - ExecTime: 833.357ms - ExecTreeExecTime: 1.532ms - OpenTime: 489.632ms - ExecTreeOpenTime: 306.222ms - PrepareTime: 80.901us - ExecTreePrepareTime: 25.365us Hash Join Builder (join_node_id=11): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 2 of 2 Runtime Filters Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 124.452us - HashTablesBuildTime: 93.597us - InactiveTotalTime: 831.493ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 832.421ms Buffer pool: - AllocTime: 43.013us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 39.235us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 34.87K (34869) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=32): Node Lifecycle Event Timeline: 492.434ms - Open Started: 183.994ms (183.994ms) - Open Finished: 490.216ms (306.221ms) - First Batch Requested: 490.750ms (534.484us) - First Batch Returned: 492.281ms (1.530ms) - Last Batch Returned: 492.281ms (209.000ns) - Closed: 492.434ms (153.264us) - ConvertRowBatchTime: 29.439us - InactiveTotalTime: 307.712ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 1.19 K/sec - TotalTime: 307.753ms Buffer pool: - AllocTime: 7.977us - 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.990us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 306.217ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 307.717ms - DataWaitTime: 307.712ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 45.224us ; Min: 45.224us ; Max: 45.224us ; Number of samples: 1) - DeserializeRowBatchTime: 23.095us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000045 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Fragment Instance Lifecycle Event Timeline: 1s314ms - Prepare Finished: 629.722us (629.722us) - Open Finished: 490.165ms (489.535ms) - First Batch Produced: 491.282ms (1.117ms) - First Batch Sent: 491.460ms (177.840us) - ExecInternal Finished: 1s314ms (822.694ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB - ThreadUsage (500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 76.153ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 29 (29) - TotalThreadsTotalWallClockTime: 1s313ms - TotalThreadsSysTime: 7.539ms - TotalThreadsUserTime: 108.954ms - TotalThreadsVoluntaryContextSwitches: 86 (86) - TotalTime: 1s313ms Fragment Instance Lifecycle Timings: - ExecTime: 823.964ms - ExecTreeExecTime: 1.115ms - OpenTime: 489.533ms - ExecTreeOpenTime: 75.083ms - PrepareTime: 292.838us - ExecTreePrepareTime: 179.259us Hash Join Builder (join_node_id=11): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 2 of 2 Runtime Filters Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 176.392us - HashTablesBuildTime: 1.186ms - InactiveTotalTime: 821.359ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 823.513ms Buffer pool: - AllocTime: 102.231us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 96.370us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 31.28K (31279) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=32): Node Lifecycle Event Timeline: 491.488ms - Open Started: 414.493ms (414.493ms) - Open Finished: 489.574ms (75.081ms) - First Batch Requested: 490.167ms (592.095us) - First Batch Returned: 491.281ms (1.114ms) - Last Batch Returned: 491.281ms (200.000ns) - Closed: 491.488ms (206.427us) - ConvertRowBatchTime: 38.377us - InactiveTotalTime: 76.140ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.79 K/sec - TotalTime: 76.197ms Buffer pool: - AllocTime: 1.999us - 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: 880.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 75.076ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 76.152ms - DataWaitTime: 76.140ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 35.069us ; Min: 35.069us ; Max: 35.069us ; Number of samples: 1) - DeserializeRowBatchTime: 10.896us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Instance f04aed6e613865a1:acb29fb100000046 (host=rsuminto-22746:27002): Last report received time: 2023-04-28 08:29:45.081 Fragment Instance Lifecycle Event Timeline: 1s326ms - Prepare Finished: 16.857ms (16.857ms) - Open Finished: 490.757ms (473.899ms) - First Batch Produced: 492.065ms (1.307ms) - First Batch Sent: 492.194ms (129.178us) - ExecInternal Finished: 1s326ms (834.392ms) - MemoryUsage (500.000ms): 17.12 KB, 1.95 MB, 1.95 MB - ThreadUsage (500.000ms): 1, 1, 1 - AverageThreadTokens: 1.00 - BytesAssigned: 0 - CompletionTime: 1s351ms - ExchangeScanRatio: 0.00 - ExecutionRate: 0.00 /sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 1.97 MB (2065536) - PeakReservation: 1.94 MB (2031616) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 356.95 MB (374289984) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 232.563ms - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 10 (10) - TotalThreadsTotalWallClockTime: 1s309ms - TotalThreadsSysTime: 12.358ms - TotalThreadsUserTime: 78.158ms - TotalThreadsVoluntaryContextSwitches: 82 (82) - TotalTime: 1s309ms Fragment Instance Lifecycle Timings: - ExecTime: 835.753ms - ExecTreeExecTime: 1.306ms - OpenTime: 473.894ms - ExecTreeOpenTime: 231.291ms - PrepareTime: 73.240us - ExecTreePrepareTime: 24.327us Hash Join Builder (join_node_id=11): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 2 of 2 Runtime Filters Published - BuildRows: 365 (365) - BuildRowsPartitionTime: 127.644us - HashTablesBuildTime: 98.476us - InactiveTotalTime: 834.120ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumHashTableBuildsSkipped: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.95 MB (2049152) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) - TotalTime: 835.033ms Buffer pool: - AllocTime: 52.417us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 1.12 MB (1179648) - CumulativeAllocations: 18 (18) - EncryptionTime: 0.000ns - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.12 MB (1179648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 48.455us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Table: - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - Probes: 32.74K (32741) - Resizes: 0 (0) - Travel: 0 (0) EXCHANGE_NODE (id=32): Node Lifecycle Event Timeline: 492.217ms - Open Started: 258.922ms (258.922ms) - Open Finished: 490.212ms (231.290ms) - First Batch Requested: 490.758ms (546.022us) - First Batch Returned: 492.063ms (1.305ms) - Last Batch Returned: 492.063ms (181.000ns) - Closed: 492.217ms (153.281us) - ConvertRowBatchTime: 27.858us - InactiveTotalTime: 232.558ms - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 1.57 K/sec - TotalTime: 232.596ms Buffer pool: - AllocTime: 2.976us - 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.424us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Dequeue: - BytesDequeued (500.000ms): 0 - FirstBatchWaitTime: 231.286ms - TotalBytesDequeued: 6.06 KB (6205) - TotalGetBatchTime: 232.562ms - DataWaitTime: 232.558ms Enqueue: - BytesReceived (500.000ms): 0 - DeferredQueueSize (500.000ms): 0 - DispatchTime: (Avg: 41.114us ; Min: 41.114us ; Max: 41.114us ; Number of samples: 1) - DeserializeRowBatchTime: 13.940us - TotalBatchesEnqueued: 1 (1) - TotalBatchesReceived: 1 (1) - TotalBytesReceived: 2.86 KB (2931) - TotalEarlySenders: 0 (0) - TotalEosReceived: 1 (1) - TotalHasDeferredRPCsTime: 0.000ns - TotalRPCsDeferred: 0 (0) Averaged Fragment F01:(Total: 491.331ms, non-child: 115.005ms, % non-child: 23.41%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s352ms max:1s352ms mean: 1s352ms stddev:0.000ns execution rates: min:1.59 MB/sec max:1.59 MB/sec mean:1.59 MB/sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.00 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 895.94 KB (917444) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.453ms - TotalStorageWaitTime: 369.492ms - TotalThreadsInvoluntaryContextSwitches: 23 (23) - TotalThreadsTotalWallClockTime: 491.208ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 54.198ms - TotalThreadsVoluntaryContextSwitches: 73 (73) - TotalTime: 491.331ms Fragment Instance Lifecycle Timings: - ExecTime: 376.859ms - ExecTreeExecTime: 372.663ms - OpenTime: 114.351ms - ExecTreeOpenTime: 76.340us - PrepareTime: 105.395us - ExecTreePrepareTime: 16.710us KrpcDataStreamSender (dst_id=32):(Total: 3.562ms, non-child: 108.893us, % non-child: 3.06%) - NetworkThroughput: (Avg: 1.32 MB/sec ; Min: 1.19 MB/sec ; Max: 1.47 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.277ms ; Min: 341.852us ; Max: 2.354ms ; Number of samples: 6) - RpcRecvrTime: (Avg: 50.895us ; Min: 25.615us ; Max: 82.092us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 3.453ms - PeakMemoryUsage: 49.10 KB (50280) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.004us - TotalBytesSent: 8.59 KB (8793) - TotalTime: 3.562ms - UncompressedRowBatchSize: 18.18 KB (18615) HDFS_SCAN_NODE (id=10):(Total: 372.763ms, non-child: 372.763ms, % non-child: 100.00%) - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 344.645ms ; Min: 344.645ms ; Max: 344.645ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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.447ms ; Min: 1.447ms ; Max: 1.447ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 62.966us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 349.419us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 1.92 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 979.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 369.492ms - TotalRawHdfsOpenFileTime: 105.844ms - TotalRawHdfsReadTime: 237.251ms - TotalReadThroughput: 0.00 /sec - TotalTime: 372.763ms Buffer pool: - AllocTime: 17.532us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.009us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment F01: Instance f04aed6e613865a1:acb29fb100000044 (host=rsuminto-22746:27001): Last report received time: 2023-04-28 08:29:45.083 Hdfs split stats (<volume id>:<# splits>/<split lengths>): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 491.459ms - Prepare Finished: 228.613us (228.613us) - Open Finished: 114.582ms (114.353ms) - First Batch Produced: 487.171ms (372.589ms) - First Batch Sent: 487.233ms (61.299us) - ExecInternal Finished: 491.459ms (4.226ms) - MemoryUsage (500.000ms): 574.66 KB - ThreadUsage (500.000ms): 1 - AverageThreadTokens: 1.00 - BytesAssigned: 2.15 MB (2258978) - CompletionTime: 1s352ms - ExchangeScanRatio: 0.02 - ExecutionRate: 1.59 MB/sec - InactiveTotalTime: 0.000ns - PeakMemoryUsage: 895.94 KB (917444) - PeakReservation: 520.00 KB (532480) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 397.48 MB (416784000) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.453ms - TotalStorageWaitTime: 369.492ms - TotalThreadsInvoluntaryContextSwitches: 23 (23) - TotalThreadsTotalWallClockTime: 491.208ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 54.198ms - TotalThreadsVoluntaryContextSwitches: 73 (73) - TotalTime: 491.331ms Fragment Instance Lifecycle Timings: - ExecTime: 376.859ms - ExecTreeExecTime: 372.663ms - OpenTime: 114.351ms - ExecTreeOpenTime: 76.340us - PrepareTime: 105.395us - ExecTreePrepareTime: 16.710us KrpcDataStreamSender (dst_id=32): ExecOption: Unpartitioned Sender Codegen Disabled: not needed - BytesSent (500.000ms): 0 - NetworkThroughput: (Avg: 1.32 MB/sec ; Min: 1.19 MB/sec ; Max: 1.47 MB/sec ; Number of samples: 3) - RpcNetworkTime: (Avg: 1.277ms ; Min: 341.852us ; Max: 2.354ms ; Number of samples: 6) - RpcRecvrTime: (Avg: 50.895us ; Min: 25.615us ; Max: 82.092us ; Number of samples: 6) - EosSent: 3 (3) - InactiveTotalTime: 3.453ms - PeakMemoryUsage: 49.10 KB (50280) - RowsSent: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.004us - TotalBytesSent: 8.59 KB (8793) - TotalTime: 3.562ms - UncompressedRowBatchSize: 18.18 KB (18615) HDFS_SCAN_NODE (id=10): Table Name: tpcds_parquet.date_dim 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% 24:0% File Formats: PARQUET/SNAPPY:1 ExecOption: Codegen enabled: 1 out of 1, PARQUET Codegen Enabled Node Lifecycle Event Timeline: 487.964ms - Open Started: 114.501ms (114.501ms) - Open Finished: 114.576ms (74.925us) - First Batch Requested: 114.583ms (7.198us) - First Batch Returned: 487.170ms (372.587ms) - Last Batch Returned: 487.309ms (138.798us) - Closed: 487.964ms (655.133us) - BytesReadSeries (500.000ms): 0 - ColumnarScannerActualReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - ColumnarScannerIdealReservation: (Avg: 520.00 KB (532480) ; Min: 520.00 KB (532480) ; Max: 520.00 KB (532480) ; Number of samples: 1) - FooterProcessingTime: (Avg: 344.645ms ; Min: 344.645ms ; Max: 344.645ms ; Number of samples: 1) - InitialRangeActualReservation: (Avg: 512.00 KB (524288) ; Min: 512.00 KB (524288) ; Max: 512.00 KB (524288) ; 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.447ms ; Min: 1.447ms ; Max: 1.447ms ; Number of samples: 1) - ParquetCompressedBytesReadPerColumn: (Avg: 103.40 KB (105882) ; Min: 551.00 B (551) ; Max: 206.26 KB (211213) ; Number of samples: 2) - ParquetCompressedPageSize: (Avg: 41.36 KB (42352) ; Min: 551.00 B (551) ; Max: 64.14 KB (65683) ; Number of samples: 5) - ParquetUncompressedBytesReadPerColumn: (Avg: 103.38 KB (105866) ; Min: 546.00 B (546) ; Max: 206.24 KB (211186) ; Number of samples: 2) - ParquetUncompressedPageSize: (Avg: 41.35 KB (42346) ; Min: 546.00 B (546) ; Max: 64.14 KB (65675) ; Number of samples: 5) - AverageHdfsReadThreadConcurrency: 1.00 - BytesRead: 466.46 KB (477654) - BytesReadDataNodeCache: 0 - BytesReadEncrypted: 0 - BytesReadErasureCoded: 0 - BytesReadLocal: 466.46 KB (477654) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 466.46 KB (477654) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 1 (1) - CollectionItemsRead: 0 (0) - DataCacheHitBytes: 0 - DataCacheHitCount: 0 (0) - DataCacheMissBytes: 0 - DataCacheMissCount: 0 (0) - DataCachePartialHitCount: 0 (0) - DecompressionTime: 62.966us - InactiveTotalTime: 0.000ns - IoReadAsyncBytes: 364.00 KB (372732) - IoReadAsyncRequest: 14 (14) - IoReadSkippedBytes: 0 - IoReadSyncBytes: 2.46 KB (2522) - IoReadSyncRequest: 1 (1) - IoReadTotalBytes: 366.46 KB (375254) - IoReadTotalRequest: 15 (15) - MaterializeTupleTime: 349.419us - MaxCompressedTextFileLength: 0 - NumBloomFilteredRowGroups: 0 (0) - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumFileMetadataRead: 0 (0) - NumPages: 7 (7) - NumPagesSkippedByLateMaterialization: 3 (3) - NumRowGroups: 1 (1) - NumRowGroupsSkippedByUnusefulFilters: 0 (0) - NumRowGroupsWithPageIndex: 1 (1) - NumRuntimeFilteredPages: 0 (0) - NumRuntimeFilteredRowGroups: 0 (0) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredPages: 2 (2) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 845.29 KB (865572) - PerReadThreadRawHdfsThroughput: 1.92 MB/sec - RemoteScanRanges: 0 (0) - RowsRead: 65.10K (65100) - RowsReturned: 365 (365) - RowsReturnedRate: 979.00 /sec - ScanRangesComplete: 1 (1) - ScannerIoWaitTime: 369.492ms - TotalRawHdfsOpenFileTime: 105.844ms - TotalRawHdfsReadTime: 237.251ms - TotalReadThroughput: 0.00 /sec - TotalTime: 372.763ms Buffer pool: - AllocTime: 17.532us - CompressionTime: 0.000ns - CumulativeAllocationBytes: 648.00 KB (663552) - CumulativeAllocations: 3 (3) - EncryptionTime: 0.000ns - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - SystemAllocTime: 12.009us - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns